Removed backup config files
This commit is contained in:
parent
33813b52ed
commit
7737a0f409
1
.gitignore
vendored
1
.gitignore
vendored
@ -190,3 +190,4 @@ dynmap.db
|
|||||||
*.json
|
*.json
|
||||||
crash-reports
|
crash-reports
|
||||||
config/awesomedungeon*
|
config/awesomedungeon*
|
||||||
|
**/*.bak
|
14
config/Mekanism/generator-storage.toml
Normal file
14
config/Mekanism/generator-storage.toml
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
|
||||||
|
#Generator Energy Storage Config. This config is synced from server to client.
|
||||||
|
[storage]
|
||||||
|
#Base energy storage (Joules).
|
||||||
|
heatGenerator = "160000"
|
||||||
|
#Base energy storage (Joules).
|
||||||
|
bioGenerator = "160000"
|
||||||
|
#Base energy storage (Joules).
|
||||||
|
solarGenerator = "96000"
|
||||||
|
#Base energy storage (Joules).
|
||||||
|
advancedSolarGenerator = "200000"
|
||||||
|
#Base energy storage (Joules).
|
||||||
|
windGenerator = "200000"
|
||||||
|
|
14
config/Mekanism/generators-gear.toml
Normal file
14
config/Mekanism/generators-gear.toml
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
|
||||||
|
#Mekanism Generators Gear Config. This config is synced from server to client.
|
||||||
|
[generators-gear]
|
||||||
|
|
||||||
|
#MekaSuit Settings
|
||||||
|
[generators-gear.mekasuit]
|
||||||
|
#Geothermal charging rate (Joules) of pants per tick, per degree above ambient, per upgrade installed. This value scales down based on how much of the MekaSuit Pants is submerged. Fire is treated as having a temperature of ~200K above ambient, lava has a temperature of 1,000K above ambient.
|
||||||
|
geothermalChargingRate = "10.5000"
|
||||||
|
|
||||||
|
[generators-gear.mekasuit.damage_absorption]
|
||||||
|
#Percent of heat damage negated by MekaSuit Pants with maximum geothermal generator units installed. This number scales down linearly based on how many units are actually installed.
|
||||||
|
#Range: 0.0 ~ 1.0
|
||||||
|
heatDamageReductionRatio = 0.8
|
||||||
|
|
96
config/Mekanism/generators.toml
Normal file
96
config/Mekanism/generators.toml
Normal file
@ -0,0 +1,96 @@
|
|||||||
|
|
||||||
|
#Mekanism Generators Config. This config is synced between server and client.
|
||||||
|
[generators]
|
||||||
|
#Amount of energy in Joules the Bio Generator produces per tick.
|
||||||
|
bioGeneration = "350"
|
||||||
|
#Affects the Injection Rate, Max Temp, and Ignition Temp.
|
||||||
|
energyPerFusionFuel = "10000000"
|
||||||
|
#Peak output for the Solar Generator. Note: It can go higher than this value in some extreme environments.
|
||||||
|
solarGeneration = "50"
|
||||||
|
#Peak output for the Advanced Solar Generator. Note: It can go higher than this value in some extreme environments.
|
||||||
|
advancedSolarGeneration = "300"
|
||||||
|
|
||||||
|
#Heat Generator Settings
|
||||||
|
[generators.heat_generator]
|
||||||
|
#Amount of energy in Joules the Heat Generator produces per tick. heatGeneration + heatGenerationLava * lavaSides + heatGenerationNether. Note: lavaSides is how many sides are adjacent to lava, this includes the block itself if it is lava logged allowing for a max of 7 "sides".
|
||||||
|
heatGeneration = "200"
|
||||||
|
#Multiplier of effectiveness of Lava that is adjacent to the Heat Generator.
|
||||||
|
heatGenerationLava = "30"
|
||||||
|
#Add this amount of Joules to the energy produced by a heat generator if it is in an 'ultrawarm' dimension, in vanilla this is just the Nether.
|
||||||
|
heatGenerationNether = "100"
|
||||||
|
#The amount of lava in mB that gets consumed to transfer heatGeneration Joules to the Heat Generator.
|
||||||
|
#Range: 1 ~ 24000
|
||||||
|
heatGenerationFluidRate = 10
|
||||||
|
|
||||||
|
#Turbine Settings
|
||||||
|
[generators.turbine]
|
||||||
|
#The number of blades on each turbine coil per blade applied.
|
||||||
|
turbineBladesPerCoil = 4
|
||||||
|
#The rate at which steam is vented into the turbine.
|
||||||
|
turbineVentGasFlow = 32000.0
|
||||||
|
#The rate at which steam is dispersed into the turbine.
|
||||||
|
turbineDisperserGasFlow = 1280.0
|
||||||
|
#The rate at which steam is condensed in the turbine.
|
||||||
|
condenserRate = 64000
|
||||||
|
|
||||||
|
#Wind Generator Settings
|
||||||
|
[generators.wind_generator]
|
||||||
|
#Minimum base generation value of the Wind Generator.
|
||||||
|
windGenerationMin = "60"
|
||||||
|
#Maximum base generation value of the Wind Generator.
|
||||||
|
generationMax = "480"
|
||||||
|
#The minimum Y value that affects the Wind Generators Power generation. This value gets clamped at the world's min height.
|
||||||
|
#Range: -2032 ~ 2030
|
||||||
|
minY = 24
|
||||||
|
#The maximum Y value that affects the Wind Generators Power generation. This value gets clamped at the world's logical height.
|
||||||
|
maxY = 2031
|
||||||
|
#The list of dimension ids that the Wind Generator will not generate power in.
|
||||||
|
windGenerationDimBlacklist = []
|
||||||
|
|
||||||
|
#Fusion Settings
|
||||||
|
[generators.fusion_reactor]
|
||||||
|
#The fraction of the heat dissipated from the case that is converted to Joules.
|
||||||
|
#Range: 0.0 ~ 1.0
|
||||||
|
thermocoupleEfficiency = 0.05
|
||||||
|
#The fraction fraction of heat from the casing that can be transferred to all sources that are not water. Will impact max heat, heat transfer to thermodynamic conductors, and power generation.
|
||||||
|
#Range: 0.001 ~ 1.0
|
||||||
|
casingThermalConductivity = 0.1
|
||||||
|
#The fraction of the heat from the casing that is dissipated to water when water cooling is in use. Will impact max heat, and steam generation.
|
||||||
|
#Range: 0.0 ~ 1.0
|
||||||
|
waterHeatingRatio = 0.3
|
||||||
|
|
||||||
|
#Hohlraum Settings
|
||||||
|
[generators.hohlraum]
|
||||||
|
#Hohlraum capacity in mB.
|
||||||
|
#Range: 1 ~ 9223372036854775807
|
||||||
|
maxGas = 10
|
||||||
|
#Amount of DT-Fuel Hohlraum can accept per tick.
|
||||||
|
#Range: 1 ~ 9223372036854775807
|
||||||
|
fillRate = 1
|
||||||
|
|
||||||
|
#Fission Reactor Settings
|
||||||
|
[generators.fission_reactor]
|
||||||
|
#Amount of energy created (in heat) from each whole mB of fission fuel.
|
||||||
|
energyPerFissionFuel = "1000000"
|
||||||
|
#The heat capacity added to a Fission Reactor by a single casing block. Increase to require more energy to raise the reactor temperature.
|
||||||
|
casingHeatCapacity = 1000.0
|
||||||
|
#The average surface area of a Fission Reactor's fuel assemblies to reach 100% boil efficiency. Higher values make it harder to cool the reactor.
|
||||||
|
#Range: 1.0 ~ 1.7976931348623157E308
|
||||||
|
surfaceAreaTarget = 4.0
|
||||||
|
#Whether catastrophic meltdowns can occur from Fission Reactors. If disabled instead of melting down the reactor will turn off and not be able to be turned back on until the damage level decreases.
|
||||||
|
meltdownsEnabled = true
|
||||||
|
#The chance of a meltdown occurring once damage passes 100%. Will linearly scale as damage continues increasing.
|
||||||
|
#Range: 0.0 ~ 1.0
|
||||||
|
meltdownChance = 0.001
|
||||||
|
#How much radioactivity of fuel/waste contents are multiplied during a meltdown.
|
||||||
|
meltdownRadiationMultiplier = 50.0
|
||||||
|
#Damage to reset the reactor to after a meltdown.
|
||||||
|
#Range: 0.0 ~ 100.0
|
||||||
|
postMeltdownDamage = 75.0
|
||||||
|
#The default burn rate of the fission reactor.
|
||||||
|
#Range: 0.001 ~ 1.0
|
||||||
|
defaultBurnRate = 0.1
|
||||||
|
#The burn rate increase each fuel assembly provides. Max Burn Rate = fuelAssemblies * burnPerAssembly
|
||||||
|
#Range: 1 ~ 1000000
|
||||||
|
burnPerAssembly = 1
|
||||||
|
|
@ -1,101 +0,0 @@
|
|||||||
|
|
||||||
#General settings
|
|
||||||
[general]
|
|
||||||
#Dimensions where hostile mobs will not spawn. Ex: ["minecraft:overworld", "undergarden:undergarden"]. . Run /forge dimensions for a list.
|
|
||||||
dimensionBlacklist = []
|
|
||||||
#Rate of tree spawn per chunk
|
|
||||||
#Range: > 0
|
|
||||||
treeWeight = 100
|
|
||||||
#Spawn Mana Berry Bushes in the world
|
|
||||||
genBerries = true
|
|
||||||
#Spawn a book in the players inventory on login
|
|
||||||
spawnBook = true
|
|
||||||
#How often Carbuncles spawn
|
|
||||||
#Range: 0 ~ 100
|
|
||||||
carbuncleWeight = 5
|
|
||||||
#How often Sylphs spawn
|
|
||||||
#Range: 0 ~ 100
|
|
||||||
sylphWeight = 5
|
|
||||||
#How often Drygmys spawn
|
|
||||||
#Range: 0 ~ 100
|
|
||||||
drygmyWeight = 3
|
|
||||||
#How much mana sylphs consume per generation
|
|
||||||
#Range: 0 ~ 10000
|
|
||||||
sylphManaCost = 250
|
|
||||||
#How often Wilden Guardians spawn
|
|
||||||
#Range: 0 ~ 200
|
|
||||||
wguardianWeight = 50
|
|
||||||
#How often Wilden Stalkers spawn
|
|
||||||
#Range: 0 ~ 200
|
|
||||||
wstalkerWeight = 50
|
|
||||||
#How often Wilden Hunter spawn
|
|
||||||
#Range: 0 ~ 200
|
|
||||||
whunterWeight = 50
|
|
||||||
#Should the Wilden Hunter attack animals?
|
|
||||||
hunterHuntsAnimals = true
|
|
||||||
#Should the Wilden Stalker attack animals?
|
|
||||||
stalkerHuntsAnimals = false
|
|
||||||
#Should the Wilden Defender attack animals?
|
|
||||||
defenderHuntsAnimals = false
|
|
||||||
|
|
||||||
[drygmy_production]
|
|
||||||
#How much source drygmys consume per generation
|
|
||||||
#Range: 0 ~ 10000
|
|
||||||
drygmyManaCost = 1000
|
|
||||||
#How many channels must occur before a drygmy produces loot
|
|
||||||
#Range: 0 ~ 300
|
|
||||||
drygmyMaxProgress = 20
|
|
||||||
#Bonus number of items a drygmy produces per unique mob
|
|
||||||
#Range: 0 ~ 300
|
|
||||||
drygmyUniqueBonus = 2
|
|
||||||
#Base number of items a drygmy produces per cycle before bonuses.
|
|
||||||
#Range: > -2147483648
|
|
||||||
drygmyBaseItems = 1
|
|
||||||
#Max Bonus number of items a drygmy produces from nearby entities. Each entity equals 1 item.
|
|
||||||
#Range: 0 ~ 300
|
|
||||||
drygmyQuantityCap = 5
|
|
||||||
|
|
||||||
#Mana
|
|
||||||
[mana]
|
|
||||||
#Base mana regen in seconds
|
|
||||||
#Range: > 0
|
|
||||||
baseRegen = 5
|
|
||||||
#Base max mana
|
|
||||||
#Range: > 0
|
|
||||||
baseMax = 100
|
|
||||||
#How often max and regen will be calculated, in ticks. NOTE: Having the base mana regen AT LEAST this value is recommended.
|
|
||||||
#Range: 1 ~ 20
|
|
||||||
updateInterval = 5
|
|
||||||
#Max mana bonus per glyph
|
|
||||||
#Range: > 0
|
|
||||||
glyphmax = 15
|
|
||||||
#Max mana bonus for tier of book
|
|
||||||
#Range: > 0
|
|
||||||
tierMax = 50
|
|
||||||
#Mana Boost value per level
|
|
||||||
#Range: > 0
|
|
||||||
manaBoost = 25
|
|
||||||
#(enchantment) Mana regen per second per level
|
|
||||||
#Range: > 0
|
|
||||||
manaRegenEnchantment = 2
|
|
||||||
#Regen bonus per glyph
|
|
||||||
#Range: 0.0 ~ 2.147483647E9
|
|
||||||
glyphRegen = 0.33
|
|
||||||
#Regen bonus per potion level
|
|
||||||
#Range: > 0
|
|
||||||
potionRegen = 10
|
|
||||||
|
|
||||||
[Spells]
|
|
||||||
#Enforce augment cap on casting? Turn this off if you are a pack maker and want to create more powerful items than players.
|
|
||||||
enforceCapOnCast = true
|
|
||||||
#Enforce glyph per spell limit on casting? Turn this off if you are a pack maker and want to create more powerful items than players.
|
|
||||||
enforceGlyphLimitOnCast = true
|
|
||||||
|
|
||||||
#Items
|
|
||||||
[Spells.item]
|
|
||||||
#Cost per glyph in a codex
|
|
||||||
#Range: > 0
|
|
||||||
codexCost = 10
|
|
||||||
#Spawn Caster Tomes in Dungeon Loot?
|
|
||||||
spawnTomes = true
|
|
||||||
|
|
@ -1,22 +0,0 @@
|
|||||||
|
|
||||||
#General settings
|
|
||||||
[general]
|
|
||||||
#Is Enabled?
|
|
||||||
enabled = true
|
|
||||||
#Cost
|
|
||||||
#Range: > -2147483648
|
|
||||||
cost = 15
|
|
||||||
#Is Starter Glyph?
|
|
||||||
starter = false
|
|
||||||
#The maximum number of times this glyph may appear in a single spell
|
|
||||||
#Range: > 1
|
|
||||||
per_spell_limit = 2147483647
|
|
||||||
#Limits the number of times a given augment may be applied to a given effect
|
|
||||||
#Example entry: "amplify=5"
|
|
||||||
augment_limits = []
|
|
||||||
#Base knockback value
|
|
||||||
#Range: 0.0 ~ 1.7976931348623157E308
|
|
||||||
base_value = 1.5
|
|
||||||
#Range: 0.0 ~ 2.147483647E9
|
|
||||||
amplify = 1.0
|
|
||||||
|
|
@ -1,22 +0,0 @@
|
|||||||
|
|
||||||
#General settings
|
|
||||||
[general]
|
|
||||||
#Is Enabled?
|
|
||||||
enabled = true
|
|
||||||
#Cost
|
|
||||||
#Range: > -2147483648
|
|
||||||
cost = 15
|
|
||||||
#Is Starter Glyph?
|
|
||||||
starter = false
|
|
||||||
#The maximum number of times this glyph may appear in a single spell
|
|
||||||
#Range: > 1
|
|
||||||
per_spell_limit = 2147483647
|
|
||||||
#Limits the number of times a given augment may be applied to a given effect
|
|
||||||
#Example entry: "amplify=5"
|
|
||||||
augment_limits = []
|
|
||||||
#Base knockback value
|
|
||||||
#Range: 0.0 ~ 1.7976931348623157E308
|
|
||||||
base_value = 1.5
|
|
||||||
#Range: 0.0 ~ 2.147483647E9
|
|
||||||
amplify = 1.0
|
|
||||||
|
|
@ -1,19 +0,0 @@
|
|||||||
|
|
||||||
[help]
|
|
||||||
#Should the help information be visible in tooltips?
|
|
||||||
enabled-in-tooltips = true
|
|
||||||
|
|
||||||
[performance]
|
|
||||||
|
|
||||||
[performance.caches]
|
|
||||||
|
|
||||||
[performance.caches.sizes]
|
|
||||||
#performance.caches.sizes.collision-boxes.comment
|
|
||||||
#Range: 0 ~ 9223372036854775807
|
|
||||||
collision-boxes = 10000
|
|
||||||
|
|
||||||
[performance.saving]
|
|
||||||
#performance.saving.thread-count.comment
|
|
||||||
#Range: 1 ~ 8
|
|
||||||
thread-count = 4
|
|
||||||
|
|
@ -7,15 +7,15 @@
|
|||||||
"forge:ingots/tin": "mekanism:ingot_tin",
|
"forge:ingots/tin": "mekanism:ingot_tin",
|
||||||
"forge:ingots/iridium": "null",
|
"forge:ingots/iridium": "null",
|
||||||
"forge:ingots/zinc": "create:zinc_ingot",
|
"forge:ingots/zinc": "create:zinc_ingot",
|
||||||
"forge:gems/sapphire": "null",
|
"forge:gems/sapphire": "thermal:sapphire",
|
||||||
"forge:ingots/bronze": "tcintegrations:bronze_ingot",
|
"forge:ingots/bronze": "tcintegrations:bronze_ingot",
|
||||||
"forge:ingots/invar": "null",
|
"forge:ingots/invar": "thermal:invar_ingot",
|
||||||
"forge:gems/ruby": "null",
|
"forge:gems/ruby": "thermal:ruby",
|
||||||
"forge:dusts/niter": "null",
|
"forge:dusts/niter": "thermal:niter_dust",
|
||||||
"forge:ingots/chrome": "null",
|
"forge:ingots/chrome": "null",
|
||||||
"forge:ingots/electrum": "immersiveengineering:ingot_electrum",
|
"forge:ingots/electrum": "immersiveengineering:ingot_electrum",
|
||||||
"forge:silicon": "ae2:silicon",
|
"forge:silicon": "ae2:silicon",
|
||||||
"forge:gems/apatite": "null",
|
"forge:gems/apatite": "thermal:apatite",
|
||||||
"forge:ingots/brass": "create:brass_ingot",
|
"forge:ingots/brass": "create:brass_ingot",
|
||||||
"forge:ingots/silver": "immersiveengineering:ingot_silver",
|
"forge:ingots/silver": "immersiveengineering:ingot_silver",
|
||||||
"forge:dusts/saltpeter": "immersiveengineering:dust_saltpeter",
|
"forge:dusts/saltpeter": "immersiveengineering:dust_saltpeter",
|
||||||
@ -25,7 +25,10 @@
|
|||||||
"forge:ingots/platinum": "null",
|
"forge:ingots/platinum": "null",
|
||||||
"forge:dusts/sulfur": "mekanism:dust_sulfur",
|
"forge:dusts/sulfur": "mekanism:dust_sulfur",
|
||||||
"forge:ingots/lead": "mekanism:ingot_lead",
|
"forge:ingots/lead": "mekanism:ingot_lead",
|
||||||
"forge:ingots/graphite": "null",
|
"forge:ingots/graphite": "bigreactors:graphite_ingot",
|
||||||
"forge:ingots/uranium": "mekanism:ingot_uranium",
|
"forge:ingots/uranium": "mekanism:ingot_uranium",
|
||||||
"forge:ingots/nickel": "immersiveengineering:ingot_nickel"
|
"forge:ingots/nickel": "immersiveengineering:ingot_nickel",
|
||||||
|
"forge:ingots/signalum": "thermal:signalum_ingot",
|
||||||
|
"forge:ingots/lumium": "thermal:lumium_ingot",
|
||||||
|
"forge:ingots/enderium": "thermal:enderium_ingot"
|
||||||
}
|
}
|
130
config/extremereactors/common.toml
Normal file
130
config/extremereactors/common.toml
Normal file
@ -0,0 +1,130 @@
|
|||||||
|
|
||||||
|
#Common configuration settings
|
||||||
|
[common]
|
||||||
|
|
||||||
|
#General options
|
||||||
|
[common.general]
|
||||||
|
#A multiplier for balancing fuel consumption.
|
||||||
|
#Range: 0.5 ~ 100.0
|
||||||
|
fuelUsageMultiplier = 1.0
|
||||||
|
#A multiplier for balancing overall power production from Extreme Reactors generators.
|
||||||
|
#Range: 0.5 ~ 100.0
|
||||||
|
powerProductionMultiplier = 1.0
|
||||||
|
#Number of ticks between updates for the Redstone Port.
|
||||||
|
#Range: 10 ~ 100
|
||||||
|
ticksPerRedstoneUpdate = 20
|
||||||
|
|
||||||
|
#Define how Reactors works
|
||||||
|
[common.reactor]
|
||||||
|
#The maximum valid size of a Reactor in the Y dimension, in blocks.
|
||||||
|
#Lower this if your server's players are building ginormous Reactors.
|
||||||
|
#Bigger Y sizes have far less performance impact than X/Z sizes.
|
||||||
|
#Range: 3 ~ 256
|
||||||
|
maxReactorHeight = 48
|
||||||
|
#The maximum valid size of a Reactor in the X/Z plane, in blocks.
|
||||||
|
#Lower this if your server's players are building ginormous Reactors.
|
||||||
|
#Range: 3 ~ 256
|
||||||
|
maxReactorSize = 32
|
||||||
|
#A multiplier for balancing Reactor power production. Stacks with powerProductionMultiplier.
|
||||||
|
#Range: 0.5 ~ 100.0
|
||||||
|
reactorPowerProductionMultiplier = 1.0
|
||||||
|
#How much light (0-15) does a Fuel Rod emits.
|
||||||
|
#Range: 0 ~ 15
|
||||||
|
fuelRodLightValue = 15
|
||||||
|
|
||||||
|
#Define how Turbines works
|
||||||
|
[common.turbine]
|
||||||
|
#The maximum valid height of a Turbine (Y axis), in blocks.
|
||||||
|
#Range: 5 ~ 256
|
||||||
|
maxTurbineHeight = 32
|
||||||
|
#The maximum valid size of a Turbine in the X/Z plane, in blocks.
|
||||||
|
#Range: 5 ~ 256
|
||||||
|
maxTurbineSize = 32
|
||||||
|
#A multiplier for balancing rotor sizes.
|
||||||
|
#Multiplies the amount of energy lost to aerodynamic drag per tick.
|
||||||
|
#Range: 0.5 ~ 10.0
|
||||||
|
turbineAeroDragMultiplier = 1.0
|
||||||
|
#A multiplier for balancing coil size.
|
||||||
|
#Multiplies the amount of energy drawn per coil block per tick.
|
||||||
|
#Range: 0.5 ~ 10.0
|
||||||
|
turbineCoilDragMultiplier = 1.0
|
||||||
|
#A multiplier for balancing coil size.
|
||||||
|
#Multiplies the amount of fluid each blade block can process (base of 25 will be multiplied,
|
||||||
|
#then rounded down to the nearest integer).
|
||||||
|
#Range: 0.5 ~ 10.0
|
||||||
|
turbineFluidPerBladeMultiplier = 1.0
|
||||||
|
#A multiplier for balancing rotor sizes.
|
||||||
|
#Multiplies the amount of energy lost to friction per tick.
|
||||||
|
#Range: 0.5 ~ 10.0
|
||||||
|
turbineMassDragMultiplier = 1.0
|
||||||
|
#A multiplier for balancing turbine power production.
|
||||||
|
#Stacks with powerProductionMultiplier.
|
||||||
|
#Range: 0.5 ~ 10.0
|
||||||
|
turbinePowerProductionMultiplier = 1.0
|
||||||
|
|
||||||
|
#Define how Fluidizer works
|
||||||
|
[common.fluidizer]
|
||||||
|
#The maximum valid size of a Fluidizer in the Y dimension, in blocks.
|
||||||
|
#Lower this if your server's players are building ginormous Fluidizer.
|
||||||
|
#Range: 3 ~ 64
|
||||||
|
maxFluidizerHeight = 16
|
||||||
|
#The maximum valid size of a Fluidizer in the X/Z plane, in blocks.
|
||||||
|
#Lower this if your server's players are building ginormous Fluidizer.
|
||||||
|
#Range: 3 ~ 64
|
||||||
|
maxFluidizerSize = 16
|
||||||
|
#The amount of energy need to process a single tick of a recipe.
|
||||||
|
#Range: 20 ~ 1000
|
||||||
|
energyPerRecipeTick = 25
|
||||||
|
|
||||||
|
#Recipes options
|
||||||
|
[common.recipes]
|
||||||
|
#If set, charcoal will be smeltable into graphite bars.
|
||||||
|
#Disable this if other mods need to smelt charcoal into their own products.
|
||||||
|
registerCharcoalForSmelting = true
|
||||||
|
#If set, coal will be smeltable into graphite bars.
|
||||||
|
#Disable this if other mods need to smelt coal into their own products.
|
||||||
|
registerCoalForSmelting = true
|
||||||
|
#If set, coal blocks will be smeltable into graphite blocks.
|
||||||
|
#Disable this if other mods need to smelt coal blocks into their own products.
|
||||||
|
registerCoalBlockForSmelting = true
|
||||||
|
|
||||||
|
#Define how ores generates in the world
|
||||||
|
[common.worldgen]
|
||||||
|
#If false, disables all world gen from Extreme Reactors;
|
||||||
|
#all other worldgen settings are automatically ignored.
|
||||||
|
enableWorldGen = true
|
||||||
|
#Re-run world gen in chunks that have already been generated (once they have been loaded),
|
||||||
|
#but have not been modified by Extreme Reactors before.
|
||||||
|
enableWorldRegeneration = false
|
||||||
|
#User-set world generation version.
|
||||||
|
#Increase this by one if you want Extreme Reactors to re-run world generation in already modified chunks.
|
||||||
|
#Range: > 0
|
||||||
|
userWorldGenVersion = 1
|
||||||
|
#Enable generation of Yellorite Ore.
|
||||||
|
yelloriteOreEnableWorldGen = true
|
||||||
|
#Maximum number of Yellorite Ore clusters per chunk.
|
||||||
|
#Range: 1 ~ 25
|
||||||
|
yelloriteOreMaxClustersPerChunk = 3
|
||||||
|
#Maximum number of Yellorite Ores to generate in each cluster.
|
||||||
|
#Range: 1 ~ 16
|
||||||
|
yelloriteOrePerCluster = 5
|
||||||
|
#Maximum height (Y coordinate) in the world to generate Yellorite Ore.
|
||||||
|
#Range: 1 ~ 256
|
||||||
|
yelloriteOreMaxY = 32
|
||||||
|
#Enable generation of Anglesite Ore.
|
||||||
|
anglesiteOreEnableWorldGen = true
|
||||||
|
#Maximum number of Anglesite Ore clusters per chunk.
|
||||||
|
#Range: 1 ~ 16
|
||||||
|
anglesiteOreMaxClustersPerChunk = 2
|
||||||
|
#Maximum number of Anglesite Ores to generate in each cluster.
|
||||||
|
#Range: 1 ~ 16
|
||||||
|
anglesiteOrePerCluster = 5
|
||||||
|
#Enable generation of Benitoite Ore.
|
||||||
|
benitoiteOreEnableWorldGen = true
|
||||||
|
#Maximum number of Benitoite Ore clusters per chunk.
|
||||||
|
#Range: 1 ~ 16
|
||||||
|
benitoiteOreMaxClustersPerChunk = 2
|
||||||
|
#Maximum number of Benitoite Ores to generate in each cluster.
|
||||||
|
#Range: 1 ~ 16
|
||||||
|
benitoiteOrePerCluster = 5
|
||||||
|
|
@ -3,10 +3,18 @@
|
|||||||
[modded_furnaces]
|
[modded_furnaces]
|
||||||
|
|
||||||
[modded_furnaces.vibranium_furnace]
|
[modded_furnaces.vibranium_furnace]
|
||||||
|
# How much RF to generate per tick
|
||||||
|
# Default: 1500
|
||||||
|
#Range: 1 ~ 100000
|
||||||
|
generation = 1500
|
||||||
# Number of items that can be smelted at once. The regular furnace only smelts 1 item at once of course.
|
# Number of items that can be smelted at once. The regular furnace only smelts 1 item at once of course.
|
||||||
# Default: 32
|
# Default: 32
|
||||||
#Range: 1 ~ 64
|
#Range: 1 ~ 64
|
||||||
mult = 32
|
mult = 32
|
||||||
|
# What tier this furnace should be.
|
||||||
|
# Default: 2
|
||||||
|
#Range: 0 ~ 2
|
||||||
|
tier = 2
|
||||||
# Number of ticks to complete one smelting operation.
|
# Number of ticks to complete one smelting operation.
|
||||||
# 200 ticks is what a regular furnace takes.
|
# 200 ticks is what a regular furnace takes.
|
||||||
# Default: 3
|
# Default: 3
|
||||||
@ -14,21 +22,37 @@
|
|||||||
speed = 3
|
speed = 3
|
||||||
|
|
||||||
[modded_furnaces.allthemodium_furnace]
|
[modded_furnaces.allthemodium_furnace]
|
||||||
|
# How much RF to generate per tick
|
||||||
|
# Default: 1000
|
||||||
|
#Range: 1 ~ 100000
|
||||||
|
generation = 1000
|
||||||
# Number of items that can be smelted at once. The regular furnace only smelts 1 item at once of course.
|
# Number of items that can be smelted at once. The regular furnace only smelts 1 item at once of course.
|
||||||
# Default: 16
|
# Default: 16
|
||||||
#Range: 1 ~ 64
|
#Range: 1 ~ 64
|
||||||
mult = 16
|
mult = 16
|
||||||
|
# What tier this furnace should be.
|
||||||
|
# Default: 2
|
||||||
|
#Range: 0 ~ 2
|
||||||
|
tier = 2
|
||||||
# Number of ticks to complete one smelting operation.
|
# Number of ticks to complete one smelting operation.
|
||||||
# 200 ticks is what a regular furnace takes.
|
# 200 ticks is what a regular furnace takes.
|
||||||
# Default: 5
|
# Default: 5
|
||||||
#Range: 1 ~ 72000
|
#Range: 1 ~ 72000
|
||||||
speed = 5
|
speed = 5
|
||||||
|
|
||||||
[modded_furnaces.unobtanium_furnace]
|
[modded_furnaces.unobtainium_furnace]
|
||||||
|
# How much RF to generate per tick
|
||||||
|
# Default: 2000
|
||||||
|
#Range: 1 ~ 100000
|
||||||
|
generation = 2000
|
||||||
# Number of items that can be smelted at once. The regular furnace only smelts 1 item at once of course.
|
# Number of items that can be smelted at once. The regular furnace only smelts 1 item at once of course.
|
||||||
# Default: 64
|
# Default: 64
|
||||||
#Range: 1 ~ 64
|
#Range: 1 ~ 64
|
||||||
mult = 64
|
mult = 64
|
||||||
|
# What tier this furnace should be.
|
||||||
|
# Default: 2
|
||||||
|
#Range: 0 ~ 2
|
||||||
|
tier = 2
|
||||||
# Number of ticks to complete one smelting operation.
|
# Number of ticks to complete one smelting operation.
|
||||||
# 200 ticks is what a regular furnace takes.
|
# 200 ticks is what a regular furnace takes.
|
||||||
# Default: 1
|
# Default: 1
|
||||||
@ -51,6 +75,14 @@
|
|||||||
recipe_cache = 10
|
recipe_cache = 10
|
||||||
|
|
||||||
[furnaces.iron_furnace]
|
[furnaces.iron_furnace]
|
||||||
|
# How much RF to generate per tick
|
||||||
|
# Default: 20
|
||||||
|
#Range: 1 ~ 100000
|
||||||
|
generation = 20
|
||||||
|
# What tier this furnace should be.
|
||||||
|
# Default: 0
|
||||||
|
#Range: 0 ~ 2
|
||||||
|
tier = 0
|
||||||
# Number of ticks to complete one smelting operation.
|
# Number of ticks to complete one smelting operation.
|
||||||
# 200 ticks is what a regular furnace takes.
|
# 200 ticks is what a regular furnace takes.
|
||||||
# Default: 160
|
# Default: 160
|
||||||
@ -58,34 +90,44 @@
|
|||||||
speed = 160
|
speed = 160
|
||||||
|
|
||||||
[furnaces.obsidian_furnace]
|
[furnaces.obsidian_furnace]
|
||||||
|
# How much RF to generate per tick
|
||||||
|
# Default: 250
|
||||||
|
#Range: 1 ~ 100000
|
||||||
|
generation = 250
|
||||||
|
# What tier this furnace should be.
|
||||||
|
# Default: 2
|
||||||
|
#Range: 0 ~ 2
|
||||||
|
tier = 2
|
||||||
# Number of ticks to complete one smelting operation.
|
# Number of ticks to complete one smelting operation.
|
||||||
# 200 ticks is what a regular furnace takes.
|
# 200 ticks is what a regular furnace takes.
|
||||||
# Default: 20
|
# Default: 20
|
||||||
#Range: 2 ~ 72000
|
#Range: 2 ~ 72000
|
||||||
speed = 20
|
speed = 20
|
||||||
|
|
||||||
[furnaces.crystal_furnace]
|
|
||||||
# Number of ticks to complete one smelting operation.
|
|
||||||
# 200 ticks is what a regular furnace takes.
|
|
||||||
# Default: 40
|
|
||||||
#Range: 2 ~ 72000
|
|
||||||
speed = 40
|
|
||||||
|
|
||||||
[furnaces.netherite_furnace]
|
[furnaces.netherite_furnace]
|
||||||
|
# How much RF to generate per tick
|
||||||
|
# Default: 400
|
||||||
|
#Range: 1 ~ 100000
|
||||||
|
generation = 400
|
||||||
|
# What tier this furnace should be.
|
||||||
|
# Default: 2
|
||||||
|
#Range: 0 ~ 2
|
||||||
|
tier = 2
|
||||||
# Number of ticks to complete one smelting operation.
|
# Number of ticks to complete one smelting operation.
|
||||||
# 200 ticks is what a regular furnace takes.
|
# 200 ticks is what a regular furnace takes.
|
||||||
# Default: 5
|
# Default: 5
|
||||||
#Range: 2 ~ 72000
|
#Range: 2 ~ 72000
|
||||||
speed = 5
|
speed = 5
|
||||||
|
|
||||||
[furnaces.diamond_furnace]
|
|
||||||
# Number of ticks to complete one smelting operation.
|
|
||||||
# 200 ticks is what a regular furnace takes.
|
|
||||||
# Default: 80
|
|
||||||
#Range: 2 ~ 72000
|
|
||||||
speed = 80
|
|
||||||
|
|
||||||
[furnaces.copper_furnace]
|
[furnaces.copper_furnace]
|
||||||
|
# How much RF to generate per tick
|
||||||
|
# Default: 20
|
||||||
|
#Range: 1 ~ 100000
|
||||||
|
generation = 20
|
||||||
|
# What tier this furnace should be.
|
||||||
|
# Default: 0
|
||||||
|
#Range: 0 ~ 2
|
||||||
|
tier = 0
|
||||||
# Number of ticks to complete one smelting operation.
|
# Number of ticks to complete one smelting operation.
|
||||||
# 200 ticks is what a regular furnace takes.
|
# 200 ticks is what a regular furnace takes.
|
||||||
# Default: 180
|
# Default: 180
|
||||||
@ -103,13 +145,65 @@
|
|||||||
value_two = 100000
|
value_two = 100000
|
||||||
|
|
||||||
[furnaces.emerald_furnace]
|
[furnaces.emerald_furnace]
|
||||||
|
# How much RF to generate per tick
|
||||||
|
# Default: 160
|
||||||
|
#Range: 1 ~ 100000
|
||||||
|
generation = 160
|
||||||
|
# What tier this furnace should be.
|
||||||
|
# Default: 1
|
||||||
|
#Range: 0 ~ 2
|
||||||
|
tier = 1
|
||||||
# Number of ticks to complete one smelting operation.
|
# Number of ticks to complete one smelting operation.
|
||||||
# 200 ticks is what a regular furnace takes.
|
# 200 ticks is what a regular furnace takes.
|
||||||
# Default: 40
|
# Default: 40
|
||||||
#Range: 2 ~ 72000
|
#Range: 2 ~ 72000
|
||||||
speed = 40
|
speed = 40
|
||||||
|
|
||||||
|
[furnaces.million_furnace]
|
||||||
|
# What tier this furnace should be.
|
||||||
|
# Default: 2
|
||||||
|
#Range: 0 ~ 2
|
||||||
|
tier = 2
|
||||||
|
|
||||||
|
[furnaces.crystal_furnace]
|
||||||
|
# How much RF to generate per tick
|
||||||
|
# Default: 180
|
||||||
|
#Range: 1 ~ 100000
|
||||||
|
generation = 180
|
||||||
|
# What tier this furnace should be.
|
||||||
|
# Default: 2
|
||||||
|
#Range: 0 ~ 2
|
||||||
|
tier = 2
|
||||||
|
# Number of ticks to complete one smelting operation.
|
||||||
|
# 200 ticks is what a regular furnace takes.
|
||||||
|
# Default: 40
|
||||||
|
#Range: 2 ~ 72000
|
||||||
|
speed = 40
|
||||||
|
|
||||||
|
[furnaces.diamond_furnace]
|
||||||
|
# How much RF to generate per tick
|
||||||
|
# Default: 120
|
||||||
|
#Range: 1 ~ 100000
|
||||||
|
generation = 120
|
||||||
|
# What tier this furnace should be.
|
||||||
|
# Default: 1
|
||||||
|
#Range: 0 ~ 2
|
||||||
|
tier = 1
|
||||||
|
# Number of ticks to complete one smelting operation.
|
||||||
|
# 200 ticks is what a regular furnace takes.
|
||||||
|
# Default: 80
|
||||||
|
#Range: 2 ~ 72000
|
||||||
|
speed = 80
|
||||||
|
|
||||||
[furnaces.silver_furnace]
|
[furnaces.silver_furnace]
|
||||||
|
# How much RF to generate per tick
|
||||||
|
# Default: 50
|
||||||
|
#Range: 1 ~ 100000
|
||||||
|
generation = 50
|
||||||
|
# What tier this furnace should be.
|
||||||
|
# Default: 1
|
||||||
|
#Range: 0 ~ 2
|
||||||
|
tier = 1
|
||||||
# Number of ticks to complete one smelting operation.
|
# Number of ticks to complete one smelting operation.
|
||||||
# 200 ticks is what a regular furnace takes.
|
# 200 ticks is what a regular furnace takes.
|
||||||
# Default: 140
|
# Default: 140
|
||||||
@ -117,12 +211,16 @@
|
|||||||
speed = 140
|
speed = 140
|
||||||
|
|
||||||
[furnaces.rainbow_furnace]
|
[furnaces.rainbow_furnace]
|
||||||
# How many furnaces that needs to be linked in order for the Rainbow Furnace to generate power.
|
# How much RF to generate per tick
|
||||||
# Default: 7
|
# Default: 1000
|
||||||
|
#Range: 1 ~ 100000
|
||||||
|
generation = 1000
|
||||||
|
# How much power the Rainbow Furnace will generate.
|
||||||
|
# Default: 10000
|
||||||
#Range: 1 ~ 100000000
|
#Range: 1 ~ 100000000
|
||||||
power_to_generate = 10000
|
power_to_generate = 10000
|
||||||
# How many furnaces that needs to be linked in order for the Rainbow Furnace to generate power.
|
# How many furnaces that need to be linked in order for the Rainbow Furnace to generate power.
|
||||||
# Default: 7
|
# Default: 9
|
||||||
#Range: 1 ~ 100
|
#Range: 1 ~ 100
|
||||||
power = 7
|
power = 7
|
||||||
# Number of ticks to complete one smelting operation.
|
# Number of ticks to complete one smelting operation.
|
||||||
@ -132,12 +230,34 @@
|
|||||||
speed = 20
|
speed = 20
|
||||||
|
|
||||||
[furnaces.gold_furnace]
|
[furnaces.gold_furnace]
|
||||||
|
# How much RF to generate per tick
|
||||||
|
# Default: 80
|
||||||
|
#Range: 1 ~ 100000
|
||||||
|
generation = 80
|
||||||
|
# What tier this furnace should be.
|
||||||
|
# Default: 1
|
||||||
|
#Range: 0 ~ 2
|
||||||
|
tier = 1
|
||||||
# Number of ticks to complete one smelting operation.
|
# Number of ticks to complete one smelting operation.
|
||||||
# 200 ticks is what a regular furnace takes.
|
# 200 ticks is what a regular furnace takes.
|
||||||
# Default: 120
|
# Default: 120
|
||||||
#Range: 2 ~ 72000
|
#Range: 2 ~ 72000
|
||||||
speed = 120
|
speed = 120
|
||||||
|
|
||||||
|
[furnaces.energy]
|
||||||
|
# How much energy can be stored in tier 0 furnaces.
|
||||||
|
# Default: 80 000
|
||||||
|
#Range: > 4000
|
||||||
|
tier_0 = 80000
|
||||||
|
# How much energy can be stored in tier 2 furnaces.
|
||||||
|
# Default: 1 000 000
|
||||||
|
#Range: > 4000
|
||||||
|
tier_2 = 1000000
|
||||||
|
# How much energy can be stored in tier 1 furnaces.
|
||||||
|
# Default: 200 000
|
||||||
|
#Range: > 4000
|
||||||
|
tier_1 = 200000
|
||||||
|
|
||||||
#JEI Settings
|
#JEI Settings
|
||||||
[jei]
|
[jei]
|
||||||
|
|
||||||
|
@ -1,552 +0,0 @@
|
|||||||
world = {}
|
|
||||||
|
|
||||||
[general]
|
|
||||||
"Enable 'q' Button" = true
|
|
||||||
"'q' Button on the Right" = false
|
|
||||||
"Disable Q Menu Effects" = false
|
|
||||||
#Disable this to turn off the quark system that makes features turn off when specified mods with the same content are loaded
|
|
||||||
"Use Anti Overlap" = true
|
|
||||||
#Quark replaces the Piston logic to allow for its piston features to work. If you're having troubles, try turning this off.
|
|
||||||
"Use Piston Logic Replacement" = true
|
|
||||||
#Allowed values: (0,)
|
|
||||||
"Piston Push Limit" = 12
|
|
||||||
#How many advancements deep you can see in the advancement screen. Vanilla is 2.
|
|
||||||
#Allowed values: (0,)
|
|
||||||
"Advancement Visibility Depth" = 2
|
|
||||||
#Blocks that Quark should treat as Shulker Boxes.
|
|
||||||
"Shulker Boxes" = ["minecraft:white_shulker_box", "minecraft:orange_shulker_box", "minecraft:magenta_shulker_box", "minecraft:light_blue_shulker_box", "minecraft:yellow_shulker_box", "minecraft:lime_shulker_box", "minecraft:pink_shulker_box", "minecraft:gray_shulker_box", "minecraft:light_gray_shulker_box", "minecraft:cyan_shulker_box", "minecraft:purple_shulker_box", "minecraft:blue_shulker_box", "minecraft:brown_shulker_box", "minecraft:green_shulker_box", "minecraft:red_shulker_box", "minecraft:black_shulker_box"]
|
|
||||||
#Should Quark treat anything with 'shulker_box' in its item identifier as a shulker box?
|
|
||||||
"Interpret Shulker Box Like Blocks" = true
|
|
||||||
#Set to true to enable a system that debugs quark's worldgen features. This should ONLY be used if you're asked to by a dev.
|
|
||||||
"Enable Worldgen Watchdog" = false
|
|
||||||
#Set to true if you need to find the class name for a screen that's causing problems
|
|
||||||
"Print Screen Classnames" = false
|
|
||||||
#A list of screens that can accept quark's buttons. Use "Print Screen Classnames" to find the names of any others you'd want to add.
|
|
||||||
"Allowed Screens" = []
|
|
||||||
#If set to true, the 'Allowed Screens' option will work as a Blacklist rather than a Whitelist. WARNING: Use at your own risk as some mods may not support this.
|
|
||||||
"Use Screen List Blacklist" = false
|
|
||||||
#Set to true to make the quark big worldgen features such as stone clusters generate as spheres rather than unique shapes. It's faster, but won't look as cool
|
|
||||||
"Use Fast Worldgen" = false
|
|
||||||
#Enables quark network profiling features. Do not enable this unless requested to.
|
|
||||||
"Enable Network Profiling" = false
|
|
||||||
|
|
||||||
[categories]
|
|
||||||
Automation = true
|
|
||||||
Building = true
|
|
||||||
Management = true
|
|
||||||
Tools = true
|
|
||||||
Tweaks = true
|
|
||||||
World = true
|
|
||||||
Mobs = true
|
|
||||||
Client = true
|
|
||||||
Experimental = true
|
|
||||||
Oddities = true
|
|
||||||
|
|
||||||
[automation]
|
|
||||||
"Redstone Randomizer" = true
|
|
||||||
"Pistons Move Tile Entities" = true
|
|
||||||
"Obsidian Plate" = true
|
|
||||||
"Metal Buttons" = true
|
|
||||||
"Jukebox Automation" = true
|
|
||||||
"Iron Rod" = true
|
|
||||||
Gravisand = true
|
|
||||||
"Feeding Trough" = true
|
|
||||||
"Ender Watcher" = true
|
|
||||||
"Dispensers Place Blocks" = true
|
|
||||||
Chute = true
|
|
||||||
"Chains Connect Blocks" = true
|
|
||||||
|
|
||||||
[automation.pistons_move_tile_entities]
|
|
||||||
"Enable Chests Moving Together" = true
|
|
||||||
"Render Blacklist" = ["psi:programmer", "botania:starfield"]
|
|
||||||
"Movement Blacklist" = ["minecraft:spawner", "integrateddynamics:cable", "randomthings:blockbreaker", "minecraft:ender_chest", "minecraft:enchanting_table", "minecraft:trapped_chest", "quark:spruce_trapped_chest", "quark:birch_trapped_chest", "quark:jungle_trapped_chest", "quark:acacia_trapped_chest", "quark:dark_oak_trapped_chest", "endergetic:bolloom_bud"]
|
|
||||||
"Delayed Update List" = ["minecraft:dispenser", "minecraft:dropper"]
|
|
||||||
|
|
||||||
[automation.metal_buttons]
|
|
||||||
"Enable Iron" = true
|
|
||||||
"Enable Gold" = true
|
|
||||||
|
|
||||||
[automation.feeding_trough]
|
|
||||||
#How long, in game ticks, between animals being able to eat from the trough
|
|
||||||
#Allowed values: [1,)
|
|
||||||
Cooldown = 30
|
|
||||||
#The maximum amount of animals allowed around the trough's range for an animal to enter love mode
|
|
||||||
"Max Animals" = 32
|
|
||||||
#The chance (between 0 and 1) for an animal to enter love mode when eating from the trough
|
|
||||||
#Allowed values: (0,1]
|
|
||||||
"Love Chance" = 0.333333333
|
|
||||||
Range = 10.0
|
|
||||||
|
|
||||||
[automation.dispensers_place_blocks]
|
|
||||||
Blacklist = ["minecraft:water", "minecraft:lava", "minecraft:fire"]
|
|
||||||
|
|
||||||
[building]
|
|
||||||
"Wooden Posts" = true
|
|
||||||
"Vertical Slabs" = true
|
|
||||||
"Vertical Planks" = true
|
|
||||||
"Variant Ladders" = true
|
|
||||||
"Variant Furnaces" = true
|
|
||||||
"Variant Chests" = true
|
|
||||||
"Variant Bookshelves" = true
|
|
||||||
Thatch = true
|
|
||||||
"Sturdy Stone" = true
|
|
||||||
Stools = true
|
|
||||||
"Soul Sandstone" = true
|
|
||||||
Shingles = true
|
|
||||||
"Shear Vines" = true
|
|
||||||
Rope = true
|
|
||||||
"Oriental Palette" = true
|
|
||||||
"Nether Brick Fence Gate" = true
|
|
||||||
"More Stone Variants" = true
|
|
||||||
"More Potted Plants" = true
|
|
||||||
"More Brick Types" = true
|
|
||||||
Midori = true
|
|
||||||
"Leaf Carpet" = true
|
|
||||||
"Industrial Palette" = true
|
|
||||||
Hedges = true
|
|
||||||
Grate = true
|
|
||||||
"Gold Bars" = true
|
|
||||||
"Glass Item Frame" = true
|
|
||||||
"Framed Glass" = true
|
|
||||||
"Duskbound Blocks" = true
|
|
||||||
"Compressed Blocks" = true
|
|
||||||
"Celebratory Lamps" = true
|
|
||||||
|
|
||||||
[building.vertical_planks]
|
|
||||||
#This feature disables itself if any of the following mods are loaded:
|
|
||||||
# - woodworks
|
|
||||||
#This is done to prevent content overlap.
|
|
||||||
#You can turn this on to force the feature to be loaded even if the above mods are also loaded.
|
|
||||||
"Ignore Anti Overlap" = false
|
|
||||||
|
|
||||||
[building.variant_ladders]
|
|
||||||
#This feature disables itself if any of the following mods are loaded:
|
|
||||||
# - woodworks
|
|
||||||
#This is done to prevent content overlap.
|
|
||||||
#You can turn this on to force the feature to be loaded even if the above mods are also loaded.
|
|
||||||
"Ignore Anti Overlap" = false
|
|
||||||
"Change Names" = true
|
|
||||||
|
|
||||||
[building.variant_chests]
|
|
||||||
#This feature disables itself if any of the following mods are loaded:
|
|
||||||
# - woodworks
|
|
||||||
#This is done to prevent content overlap.
|
|
||||||
#You can turn this on to force the feature to be loaded even if the above mods are also loaded.
|
|
||||||
"Ignore Anti Overlap" = false
|
|
||||||
"Replace Worldgen Chests" = true
|
|
||||||
"Enable Reverting Wooden Chests" = true
|
|
||||||
#Chests to put in each structure. The format per entry is "structure=chest", where "structure" is a structure ID, and "chest" is a block ID, which must correspond to a standard chest block.
|
|
||||||
"Structure Chests" = ["minecraft:village_plains=quark:oak_chest", "minecraft:igloo=quark:spruce_chest", "minecraft:village_snowy=quark:spruce_chest", "minecraft:village_taiga=quark:spruce_chest", "minecraft:desert_pyramid=quark:birch_chest", "minecraft:jungle_pyramid=quark:jungle_chest", "minecraft:village_desert=quark:jungle_chest", "minecraft:village_savanna=quark:acacia_chest", "minecraft:mansion=quark:dark_oak_chest", "minecraft:pillager_outpost=quark:dark_oak_chest", "minecraft:ruined_portal=quark:crimson_chest", "minecraft:bastion_remnant=quark:crimson_chest", "minecraft:fortress=quark:nether_brick_chest", "minecraft:endcity=quark:purpur_chest"]
|
|
||||||
|
|
||||||
[building.variant_bookshelves]
|
|
||||||
#This feature disables itself if any of the following mods are loaded:
|
|
||||||
# - woodworks
|
|
||||||
#This is done to prevent content overlap.
|
|
||||||
#You can turn this on to force the feature to be loaded even if the above mods are also loaded.
|
|
||||||
"Ignore Anti Overlap" = false
|
|
||||||
"Change Names" = true
|
|
||||||
|
|
||||||
[building.thatch]
|
|
||||||
#Allowed values: [0,1]
|
|
||||||
"Fall Damage Multiplier" = 0.5
|
|
||||||
|
|
||||||
[building.rope]
|
|
||||||
#Set to true to allow ropes to move Tile Entities even if Pistons Push TEs is disabled.
|
|
||||||
#Note that ropes will still use the same blacklist.
|
|
||||||
"Force Enable Move Tile Entities" = false
|
|
||||||
"Enable Dispenser Behavior" = true
|
|
||||||
|
|
||||||
[building.oriental_palette]
|
|
||||||
"Enable Paper Blocks" = true
|
|
||||||
"Enable Bamboo Mats" = true
|
|
||||||
|
|
||||||
[building.more_stone_variants]
|
|
||||||
"Enable Bricks" = true
|
|
||||||
"Enable Chiseled Bricks" = true
|
|
||||||
"Enable Pillar" = true
|
|
||||||
|
|
||||||
[building.more_brick_types]
|
|
||||||
#This also comes with a utility recipe for Red Nether Bricks
|
|
||||||
"Enable Blue Nether Bricks" = true
|
|
||||||
#This also includes Red Sandstone Bricks and Soul Sandstone Bricks
|
|
||||||
"Enable Sandstone Bricks" = true
|
|
||||||
#This also includes Mossy Cobblestone Bricks
|
|
||||||
"Enable Cobblestone Bricks" = true
|
|
||||||
#Requires Cobblestone Bricks to be enabled
|
|
||||||
"Enable Blackstone Bricks" = true
|
|
||||||
#Requires Cobblestone Bricks to be enabled
|
|
||||||
"Enable Dirt Bricks" = true
|
|
||||||
#Requires Cobblestone Bricks to be enabled
|
|
||||||
"Enable Netherrack Bricks" = true
|
|
||||||
|
|
||||||
[building.leaf_carpet]
|
|
||||||
#This feature disables itself if any of the following mods are loaded:
|
|
||||||
# - woodworks
|
|
||||||
#This is done to prevent content overlap.
|
|
||||||
#You can turn this on to force the feature to be loaded even if the above mods are also loaded.
|
|
||||||
"Ignore Anti Overlap" = false
|
|
||||||
|
|
||||||
[building.industrial_palette]
|
|
||||||
"Enable Iron Plates" = true
|
|
||||||
"Enable Iron Ladder" = true
|
|
||||||
|
|
||||||
[building.gold_bars]
|
|
||||||
"Generate In Nether Fortress" = true
|
|
||||||
|
|
||||||
[building.glass_item_frame]
|
|
||||||
"Glass Item Frames Update Maps" = true
|
|
||||||
#The scale at which items render in the Glass Item Frame. To match the vanilla Item Frame size, set to 1.0
|
|
||||||
"Item Render Scale" = 1.5
|
|
||||||
|
|
||||||
[building.compressed_blocks]
|
|
||||||
"Charcoal Block and Blaze Lantern Stay On Fire Forever" = true
|
|
||||||
#Allowed values: [0,)
|
|
||||||
"Charcoal Block Fuel Time" = 16000
|
|
||||||
#Allowed values: [0,)
|
|
||||||
"Blaze Lantern Fuel Time" = 24000
|
|
||||||
#Allowed values: [0,)
|
|
||||||
"Stick Block Fuel Time" = 900
|
|
||||||
#Allowed values: [0,)
|
|
||||||
"Bamboo Bundle Fuel Time" = 500
|
|
||||||
"Enable Charcoal Block" = true
|
|
||||||
"Enable Sugar Cane Block" = true
|
|
||||||
"Enable Bamboo Block" = true
|
|
||||||
"Enable Cactus Block" = true
|
|
||||||
"Enable Chorus Fruit Block" = true
|
|
||||||
"Enable Stick Block" = true
|
|
||||||
"Enable Apple Crate" = true
|
|
||||||
"Enable Golden Apple Crate" = true
|
|
||||||
"Enable Potato Crate" = true
|
|
||||||
"Enable Carrot Crate" = true
|
|
||||||
"Enable Beetroot Crate" = true
|
|
||||||
"Enable Cocoa Bean Sack" = true
|
|
||||||
"Enable Nether Wart Sack" = true
|
|
||||||
"Enable Gunpowder Sack" = true
|
|
||||||
"Enable Berry Sack" = true
|
|
||||||
"Enable Glow Berry Sack" = true
|
|
||||||
"Enable Blaze Lantern" = true
|
|
||||||
"Enable Bonded Leather" = true
|
|
||||||
"Enable Bonded Rabbit Hide" = true
|
|
||||||
|
|
||||||
[building.celebratory_lamps]
|
|
||||||
"Light Level" = 15
|
|
||||||
|
|
||||||
[management]
|
|
||||||
"Quick Armor Swapping" = true
|
|
||||||
"Item Sharing" = true
|
|
||||||
"Inventory Sorting" = true
|
|
||||||
"Hotbar Changer" = true
|
|
||||||
"Expanded Item Interactions" = true
|
|
||||||
"Easy Transfering" = true
|
|
||||||
"Chests In Boats" = true
|
|
||||||
|
|
||||||
[management.quick_armor_swapping]
|
|
||||||
"Swap Off Hand" = true
|
|
||||||
|
|
||||||
[management.item_sharing]
|
|
||||||
"Render Items In Chat" = true
|
|
||||||
|
|
||||||
[management.inventory_sorting]
|
|
||||||
"Enable Player Inventory" = true
|
|
||||||
"Enable Player Inventory In Chests" = true
|
|
||||||
"Enable Chests" = true
|
|
||||||
#Play a click when sorting inventories using keybindings
|
|
||||||
"Satisfying Click" = true
|
|
||||||
|
|
||||||
[management.expanded_item_interactions]
|
|
||||||
"Enable Armor Interaction" = true
|
|
||||||
"Enable Shulker Box Interaction" = true
|
|
||||||
"Enable Lava Interaction" = true
|
|
||||||
|
|
||||||
[management.easy_transfering]
|
|
||||||
"Enable Shift Lock" = true
|
|
||||||
|
|
||||||
[tools]
|
|
||||||
Trowel = true
|
|
||||||
"Slime In A Bucket" = true
|
|
||||||
"Seed Pouch" = true
|
|
||||||
Pickarang = true
|
|
||||||
"Pathfinder Maps" = true
|
|
||||||
"Parrot Eggs" = true
|
|
||||||
"Endermosh Music Disc" = true
|
|
||||||
"Color Runes" = true
|
|
||||||
Camera = true
|
|
||||||
"Bundle Recipe" = true
|
|
||||||
"Bottled Cloud" = true
|
|
||||||
"Beacon Redirection" = true
|
|
||||||
"Ancient Tomes" = true
|
|
||||||
"Ambient Discs" = true
|
|
||||||
Abacus = true
|
|
||||||
|
|
||||||
[tools.trowel]
|
|
||||||
#Amount of blocks placed is this value + 1.
|
|
||||||
#Set to 0 to make the Trowel unbreakable
|
|
||||||
#Allowed values: [0,)
|
|
||||||
"Trowel Max Durability" = 0
|
|
||||||
|
|
||||||
[tools.seed_pouch]
|
|
||||||
"Max Items" = 640
|
|
||||||
"Show All Variants In Creative" = true
|
|
||||||
"Shift Range" = 3
|
|
||||||
|
|
||||||
[tools.pickarang]
|
|
||||||
#How long it takes before the Pickarang starts returning to the player if it doesn't hit anything.
|
|
||||||
Timeout = 20
|
|
||||||
#How long it takes before the Flamarang starts returning to the player if it doesn't hit anything.
|
|
||||||
"Netherite Timeout" = 20
|
|
||||||
#Pickarang harvest level. 2 is Iron, 3 is Diamond, 4 is Netherite.
|
|
||||||
"Harvest Level" = 3
|
|
||||||
#Flamarang harvest level. 2 is Iron, 3 is Diamond, 4 is Netherite.
|
|
||||||
"Netherite Harvest Level" = 4
|
|
||||||
#Pickarang durability. Set to -1 to have the Pickarang be unbreakable.
|
|
||||||
Durability = 800
|
|
||||||
#Flamarang durability. Set to -1 to have the Flamarang be unbreakable.
|
|
||||||
"Netherite Durability" = 1040
|
|
||||||
#Pickarang max hardness breakable. 22.5 is ender chests, 25.0 is monster boxes, 50 is obsidian. Most things are below 5.
|
|
||||||
"Max Hardness" = 20.0
|
|
||||||
#Flamarang max hardness breakable. 22.5 is ender chests, 25.0 is monster boxes, 50 is obsidian. Most things are below 5.
|
|
||||||
"Netherite Max Hardness" = 20.0
|
|
||||||
#Set this to true to use the recipe without the Heart of Diamond, even if the Heart of Diamond is enabled.
|
|
||||||
"Never Use Heart Of Diamond" = false
|
|
||||||
#Set this to true to disable the short cooldown between throwing Pickarangs.
|
|
||||||
"No Cooldown" = false
|
|
||||||
#Set this to true to disable the short cooldown between throwing Flamarangs.
|
|
||||||
"Netherite No Cooldown" = false
|
|
||||||
|
|
||||||
[tools.pathfinder_maps]
|
|
||||||
#In this section you can add custom Pathfinder Maps. This works for both vanilla and modded biomes.
|
|
||||||
#Each custom map must be on its own line.
|
|
||||||
#The format for a custom map is as follows:
|
|
||||||
#<id>,<level>,<min_price>,<max_price>,<color>,<name>
|
|
||||||
#
|
|
||||||
#With the following descriptions:
|
|
||||||
# - <id> being the biome's ID NAME. You can find vanilla names here - https://minecraft.gamepedia.com/Biome#Biome_IDs
|
|
||||||
# - <level> being the Cartographer villager level required for the map to be unlockable
|
|
||||||
# - <min_price> being the cheapest (in Emeralds) the map can be
|
|
||||||
# - <max_price> being the most expensive (in Emeralds) the map can be
|
|
||||||
# - <color> being a hex color (without the #) for the map to display. You can generate one here - https://htmlcolorcodes.com/
|
|
||||||
#
|
|
||||||
#Here's an example of a map to locate Ice Mountains:
|
|
||||||
#minecraft:ice_mountains,2,8,14,7FE4FF
|
|
||||||
Customs = []
|
|
||||||
"Search Radius" = 6400
|
|
||||||
"Search Distance Increment" = 8
|
|
||||||
"Xp From Trade" = 5
|
|
||||||
|
|
||||||
[tools.parrot_eggs]
|
|
||||||
#The chance feeding a parrot will produce an egg
|
|
||||||
Chance = 0.05
|
|
||||||
#How long it takes to create an egg
|
|
||||||
"Egg Time" = 12000
|
|
||||||
"Enable Special Awesome Parrot" = true
|
|
||||||
|
|
||||||
[tools.endermosh_music_disc]
|
|
||||||
"Play Endermosh During Enderdragon Fight" = false
|
|
||||||
"Add To End City Loot" = true
|
|
||||||
"Loot Weight" = 5
|
|
||||||
"Loot Quality" = 1
|
|
||||||
|
|
||||||
[tools.color_runes]
|
|
||||||
"Dungeon Weight" = 10
|
|
||||||
"Nether Fortress Weight" = 8
|
|
||||||
"Jungle Temple Weight" = 8
|
|
||||||
"Desert Temple Weight" = 8
|
|
||||||
"Item Quality" = 0
|
|
||||||
"Apply Cost" = 5
|
|
||||||
|
|
||||||
[tools.bottled_cloud]
|
|
||||||
"Cloud Level Bottom" = 191
|
|
||||||
"Cloud Level Top" = 196
|
|
||||||
|
|
||||||
[tools.ancient_tomes]
|
|
||||||
#Set to 0 to not generate in Dungeons
|
|
||||||
"Dungeon Weight" = 20
|
|
||||||
#Set to 0 to not generate in Stronghold Libraries
|
|
||||||
"Library Weight" = 30
|
|
||||||
#Set to 0 to not generate in Bastions
|
|
||||||
"Bastion Weight" = 25
|
|
||||||
#Set to 0 to not generate in Woodland Mansions
|
|
||||||
"Woodland Mansion Weight" = 15
|
|
||||||
#Set to 0 to not generate in Nether Fortresses
|
|
||||||
"Nether Fortress Weight" = 0
|
|
||||||
#Set to 0 to not generate in Underwater Ruins
|
|
||||||
"Underwater Ruin Weight" = 0
|
|
||||||
#Set to 0 to not generate in Monster Boxes
|
|
||||||
"Monster Box Weight" = 5
|
|
||||||
"Item Quality" = 2
|
|
||||||
"Normal Upgrade Cost" = 10
|
|
||||||
"Limit Break Upgrade Cost" = 30
|
|
||||||
"Valid Enchantments" = ["minecraft:feather_falling", "minecraft:thorns", "minecraft:sharpness", "minecraft:smite", "minecraft:bane_of_arthropods", "minecraft:knockback", "minecraft:fire_aspect", "minecraft:looting", "minecraft:sweeping", "minecraft:efficiency", "minecraft:unbreaking", "minecraft:fortune", "minecraft:power", "minecraft:punch", "minecraft:luck_of_the_sea", "minecraft:lure", "minecraft:loyalty", "minecraft:riptide", "minecraft:impaling", "minecraft:piercing"]
|
|
||||||
"Overleveled Books Glow Rainbow" = true
|
|
||||||
|
|
||||||
[tools.ambient_discs]
|
|
||||||
"Drop On Spider Kill" = true
|
|
||||||
|
|
||||||
[tools.abacus]
|
|
||||||
|
|
||||||
[tools.abacus.highlight_color]
|
|
||||||
A = 0.4
|
|
||||||
R = 0.0
|
|
||||||
G = 0.0
|
|
||||||
B = 0.0
|
|
||||||
|
|
||||||
[tweaks]
|
|
||||||
"Villagers Follow Emeralds" = true
|
|
||||||
"Vexes Die With Their Masters" = true
|
|
||||||
"Utility Recipes" = true
|
|
||||||
"Snow Golem Player Heads" = true
|
|
||||||
"Simple Harvest" = true
|
|
||||||
"Sign Editing" = true
|
|
||||||
"Replace Scaffolding" = true
|
|
||||||
"Reacharound Placing" = true
|
|
||||||
"Poison Potato Usage" = true
|
|
||||||
"Pig Litters" = true
|
|
||||||
"Pat The Dogs" = true
|
|
||||||
"Note Block Mob Sounds" = true
|
|
||||||
"More Banner Layers" = true
|
|
||||||
"Lock Rotation" = true
|
|
||||||
"Hoe Harvesting" = true
|
|
||||||
"Grab Chickens" = true
|
|
||||||
"Glass Shard" = true
|
|
||||||
"Enhanced Ladders" = true
|
|
||||||
Emotes = true
|
|
||||||
"Dragon Scales" = true
|
|
||||||
"Double Door Opening" = true
|
|
||||||
"Compasses Work Everywhere" = true
|
|
||||||
"Campfires Boost Elytra" = true
|
|
||||||
"Better Elytra Rocket" = true
|
|
||||||
"Automatic Recipe Unlock" = true
|
|
||||||
"Armed Armor Stands" = true
|
|
||||||
"Skull Pikes" = true
|
|
||||||
|
|
||||||
[tweaks.utility_recipes]
|
|
||||||
#Can any wool color be dyed?
|
|
||||||
"Dye Any Wool" = true
|
|
||||||
#Can other stone-like materials be used for crafting stone tools?
|
|
||||||
"Better Stone Tool Crafting" = true
|
|
||||||
#Can a dispenser be crafted by adding a bow to a dropper?
|
|
||||||
"Enable Dispenser" = true
|
|
||||||
#Can a repeater be crafted with the pattern for a redstone torch?
|
|
||||||
"Enable Repeater" = true
|
|
||||||
#Can you craft a minecart around blocks which can be placed inside?
|
|
||||||
"Enable Minecarts" = true
|
|
||||||
#Can you craft four chests at once using logs?
|
|
||||||
"Logs To Chests" = true
|
|
||||||
#Can Coral be crafted into dye?
|
|
||||||
"Coral To Dye" = true
|
|
||||||
#Can cookies, paper, and bread be crafted in a 2x2 crafting table?
|
|
||||||
"Bent Recipes" = true
|
|
||||||
#Can Rotten Flesh and Poisonous Potatoes be composted?
|
|
||||||
"Compostable Toxins" = true
|
|
||||||
#Does Dragon Breath return a bottle when used as a reagent or material?
|
|
||||||
"Effective Dragon Breath" = true
|
|
||||||
#Can torches can be used as fuel in furnaces?
|
|
||||||
"Torches Burn" = true
|
|
||||||
#Can bones be smelted down to bone meal?
|
|
||||||
"Bone Meal Utility" = true
|
|
||||||
|
|
||||||
[tweaks.simple_harvest]
|
|
||||||
#Can players harvest crops with empty hand clicks?
|
|
||||||
"Empty Hand Harvest" = true
|
|
||||||
#Does harvesting crops with a hoe cost durability?
|
|
||||||
"Harvesting Costs Durability" = false
|
|
||||||
#Should Quark look for (nonvanilla) crops, and handle them?
|
|
||||||
"Do Harvesting Search" = true
|
|
||||||
#Which crops can be harvested?
|
|
||||||
#Format is: "harvestState[,afterHarvest]", i.e. "minecraft:wheat[age=7]" or "minecraft:cocoa[age=2,facing=north],minecraft:cocoa[age=0,facing=north]"
|
|
||||||
"Harvestable Blocks" = ["minecraft:wheat[age=7]", "minecraft:carrots[age=7]", "minecraft:potatoes[age=7]", "minecraft:beetroots[age=3]", "minecraft:nether_wart[age=3]", "minecraft:cocoa[age=2,facing=north],minecraft:cocoa[age=0,facing=north]", "minecraft:cocoa[age=2,facing=south],minecraft:cocoa[age=0,facing=south]", "minecraft:cocoa[age=2,facing=east],minecraft:cocoa[age=0,facing=east]", "minecraft:cocoa[age=2,facing=west],minecraft:cocoa[age=0,facing=west]"]
|
|
||||||
#Which blocks should right click harvesting simulate a click on instead of breaking?
|
|
||||||
#This is for blocks like sweet berry bushes, which have right click harvesting built in.
|
|
||||||
"Right Clickable Blocks" = ["minecraft:sweet_berry_bush", "minecraft:cave_vines"]
|
|
||||||
|
|
||||||
[tweaks.sign_editing]
|
|
||||||
"Requires Empty Hand" = false
|
|
||||||
|
|
||||||
[tweaks.replace_scaffolding]
|
|
||||||
#How many times the algorithm for finding out where a block would be placed is allowed to turn. If you set this to large values (> 3) it may start producing weird effects.
|
|
||||||
"Max Bounces" = 1
|
|
||||||
|
|
||||||
[tweaks.reacharound_placing]
|
|
||||||
#Allowed values: [0,1]
|
|
||||||
Leniency = 0.5
|
|
||||||
Whitelist = []
|
|
||||||
Blacklist = []
|
|
||||||
Display = "[ ]"
|
|
||||||
"Display Horizontal" = "< >"
|
|
||||||
|
|
||||||
[tweaks.reacharound_placing.color]
|
|
||||||
R = 1.0
|
|
||||||
G = 1.0
|
|
||||||
B = 1.0
|
|
||||||
|
|
||||||
[tweaks.poison_potato_usage]
|
|
||||||
Chance = 0.1
|
|
||||||
"Poison Effect" = true
|
|
||||||
|
|
||||||
[tweaks.pig_litters]
|
|
||||||
#Allowed values: [1,)
|
|
||||||
"Min Pig Litter Size" = 2
|
|
||||||
#Allowed values: [1,)
|
|
||||||
"Max Pig Litter Size" = 3
|
|
||||||
"Pigs Eat Golden Carrots" = true
|
|
||||||
#Allowed values: [0,)
|
|
||||||
"Min Golden Carrot Boost" = 0
|
|
||||||
#Allowed values: [0,)
|
|
||||||
"Max Golden Carrot Boost" = 2
|
|
||||||
|
|
||||||
[tweaks.pat_the_dogs]
|
|
||||||
#How many ticks it takes for a dog to want affection after being pet/tamed; leave -1 to disable
|
|
||||||
"Dogs Want Love" = -1
|
|
||||||
#Whether you can pet all mobs
|
|
||||||
"Pet All Mobs" = false
|
|
||||||
#If `petAllMobs` is set, these mobs still can't be pet
|
|
||||||
"Pettable Denylist" = ["minecraft:ender_dragon", "minecraft:wither", "minecraft:armor_stand"]
|
|
||||||
|
|
||||||
[tweaks.more_banner_layers]
|
|
||||||
#Allowed values: [1,16]
|
|
||||||
"Layer Limit" = 16
|
|
||||||
|
|
||||||
[tweaks.grab_chickens]
|
|
||||||
"Needs No Helmet" = true
|
|
||||||
#Set to 0 to disable
|
|
||||||
"Slowness Level" = 1
|
|
||||||
|
|
||||||
[tweaks.enhanced_ladders]
|
|
||||||
#Allowed values: (,0]
|
|
||||||
"Fall Speed" = -0.2
|
|
||||||
"Allow Freestanding" = true
|
|
||||||
"Allow Dropping Down" = true
|
|
||||||
"Allow Sliding" = true
|
|
||||||
"Allow Inventory Sneak" = true
|
|
||||||
|
|
||||||
[tweaks.emotes]
|
|
||||||
#The enabled default emotes. Remove from this list to disable them. You can also re-order them, if you feel like it.
|
|
||||||
"Enabled Emotes" = ["no", "yes", "wave", "salute", "cheer", "clap", "think", "point", "shrug", "headbang", "weep", "facepalm"]
|
|
||||||
#The list of Custom Emotes to be loaded.
|
|
||||||
#Watch the tutorial on Custom Emotes to learn how to make your own: https://youtu.be/ourHUkan6aQ
|
|
||||||
"Custom Emotes" = []
|
|
||||||
#Enable this to make custom emotes read the file every time they're triggered so you can edit on the fly.
|
|
||||||
#DO NOT ship enabled this in a modpack, please.
|
|
||||||
"Custom Emote Debug" = false
|
|
||||||
|
|
||||||
[tweaks.compasses_work_everywhere]
|
|
||||||
"Enable Compass Nerf" = true
|
|
||||||
"Enable Clock Nerf" = true
|
|
||||||
"Enable Nether" = true
|
|
||||||
"Enable End" = true
|
|
||||||
|
|
||||||
[tweaks.campfires_boost_elytra]
|
|
||||||
"Boost Strength" = 0.5
|
|
||||||
"Max Speed" = 1.0
|
|
||||||
|
|
||||||
[tweaks.automatic_recipe_unlock]
|
|
||||||
#A list of recipe names that should NOT be added in by default
|
|
||||||
"Ignored Recipes" = []
|
|
||||||
"Force Limited Crafting" = false
|
|
||||||
"Disable Recipe Book" = false
|
|
||||||
#If enabled, advancements granting recipes will be stopped from loading, potentially reducing the lagspike on first world join.
|
|
||||||
"Filter Recipe Advancements" = true
|
|
||||||
|
|
||||||
[tweaks.skull_pikes]
|
|
||||||
"Pike Range" = 5.0
|
|
||||||
|
|
@ -1,431 +0,0 @@
|
|||||||
client = {}
|
|
||||||
|
|
||||||
[general]
|
|
||||||
"Enable 'q' Button" = true
|
|
||||||
"'q' Button on the Right" = false
|
|
||||||
"Disable Q Menu Effects" = false
|
|
||||||
#Disable this to turn off the quark system that makes features turn off when specified mods with the same content are loaded
|
|
||||||
"Use Anti Overlap" = true
|
|
||||||
#Quark replaces the Piston logic to allow for its piston features to work. If you're having troubles, try turning this off.
|
|
||||||
"Use Piston Logic Replacement" = true
|
|
||||||
#Allowed values: (0,)
|
|
||||||
"Piston Push Limit" = 12
|
|
||||||
#How many advancements deep you can see in the advancement screen. Vanilla is 2.
|
|
||||||
#Allowed values: (0,)
|
|
||||||
"Advancement Visibility Depth" = 2
|
|
||||||
#Blocks that Quark should treat as Shulker Boxes.
|
|
||||||
"Shulker Boxes" = ["minecraft:white_shulker_box", "minecraft:orange_shulker_box", "minecraft:magenta_shulker_box", "minecraft:light_blue_shulker_box", "minecraft:yellow_shulker_box", "minecraft:lime_shulker_box", "minecraft:pink_shulker_box", "minecraft:gray_shulker_box", "minecraft:light_gray_shulker_box", "minecraft:cyan_shulker_box", "minecraft:purple_shulker_box", "minecraft:blue_shulker_box", "minecraft:brown_shulker_box", "minecraft:green_shulker_box", "minecraft:red_shulker_box", "minecraft:black_shulker_box"]
|
|
||||||
#Should Quark treat anything with 'shulker_box' in its item identifier as a shulker box?
|
|
||||||
"Interpret Shulker Box Like Blocks" = true
|
|
||||||
#Set to true to enable a system that debugs quark's worldgen features. This should ONLY be used if you're asked to by a dev.
|
|
||||||
"Enable Worldgen Watchdog" = false
|
|
||||||
#Set to true if you need to find the class name for a screen that's causing problems
|
|
||||||
"Print Screen Classnames" = false
|
|
||||||
#A list of screens that can accept quark's buttons. Use "Print Screen Classnames" to find the names of any others you'd want to add.
|
|
||||||
"Allowed Screens" = []
|
|
||||||
#If set to true, the 'Allowed Screens' option will work as a Blacklist rather than a Whitelist. WARNING: Use at your own risk as some mods may not support this.
|
|
||||||
"Use Screen List Blacklist" = false
|
|
||||||
#Set to true to make the quark big worldgen features such as stone clusters generate as spheres rather than unique shapes. It's faster, but won't look as cool
|
|
||||||
"Use Fast Worldgen" = false
|
|
||||||
#Enables quark network profiling features. Do not enable this unless requested to.
|
|
||||||
"Enable Network Profiling" = false
|
|
||||||
|
|
||||||
[categories]
|
|
||||||
Automation = true
|
|
||||||
Building = true
|
|
||||||
Management = true
|
|
||||||
Tools = true
|
|
||||||
Tweaks = true
|
|
||||||
World = true
|
|
||||||
Mobs = true
|
|
||||||
Client = true
|
|
||||||
Experimental = true
|
|
||||||
Oddities = true
|
|
||||||
|
|
||||||
[automation]
|
|
||||||
"Redstone Randomizer" = true
|
|
||||||
"Pistons Move Tile Entities" = true
|
|
||||||
"Obsidian Plate" = true
|
|
||||||
"Metal Buttons" = true
|
|
||||||
"Jukebox Automation" = true
|
|
||||||
"Iron Rod" = true
|
|
||||||
Gravisand = true
|
|
||||||
"Feeding Trough" = true
|
|
||||||
"Ender Watcher" = true
|
|
||||||
"Dispensers Place Blocks" = true
|
|
||||||
Chute = true
|
|
||||||
"Chains Connect Blocks" = true
|
|
||||||
|
|
||||||
[automation.pistons_move_tile_entities]
|
|
||||||
"Enable Chests Moving Together" = true
|
|
||||||
"Render Blacklist" = ["psi:programmer", "botania:starfield"]
|
|
||||||
"Movement Blacklist" = ["minecraft:spawner", "integrateddynamics:cable", "randomthings:blockbreaker", "minecraft:ender_chest", "minecraft:enchanting_table", "minecraft:trapped_chest", "quark:spruce_trapped_chest", "quark:birch_trapped_chest", "quark:jungle_trapped_chest", "quark:acacia_trapped_chest", "quark:dark_oak_trapped_chest", "endergetic:bolloom_bud"]
|
|
||||||
"Delayed Update List" = ["minecraft:dispenser", "minecraft:dropper"]
|
|
||||||
|
|
||||||
[automation.metal_buttons]
|
|
||||||
"Enable Iron" = true
|
|
||||||
"Enable Gold" = true
|
|
||||||
|
|
||||||
[automation.feeding_trough]
|
|
||||||
#How long, in game ticks, between animals being able to eat from the trough
|
|
||||||
#Allowed values: [1,)
|
|
||||||
Cooldown = 30
|
|
||||||
#The maximum amount of animals allowed around the trough's range for an animal to enter love mode
|
|
||||||
"Max Animals" = 32
|
|
||||||
#The chance (between 0 and 1) for an animal to enter love mode when eating from the trough
|
|
||||||
#Allowed values: (0,1]
|
|
||||||
"Love Chance" = 0.333333333
|
|
||||||
Range = 10.0
|
|
||||||
|
|
||||||
[automation.dispensers_place_blocks]
|
|
||||||
Blacklist = ["minecraft:water", "minecraft:lava", "minecraft:fire"]
|
|
||||||
|
|
||||||
[building]
|
|
||||||
"Wooden Posts" = true
|
|
||||||
"Vertical Slabs" = true
|
|
||||||
"Vertical Planks" = true
|
|
||||||
"Variant Ladders" = true
|
|
||||||
"Variant Furnaces" = true
|
|
||||||
"Variant Chests" = true
|
|
||||||
"Variant Bookshelves" = true
|
|
||||||
Thatch = true
|
|
||||||
"Sturdy Stone" = true
|
|
||||||
Stools = true
|
|
||||||
"Soul Sandstone" = true
|
|
||||||
Shingles = true
|
|
||||||
"Shear Vines" = true
|
|
||||||
Rope = true
|
|
||||||
"Oriental Palette" = true
|
|
||||||
"Nether Brick Fence Gate" = true
|
|
||||||
"More Stone Variants" = true
|
|
||||||
"More Potted Plants" = true
|
|
||||||
"More Brick Types" = true
|
|
||||||
Midori = true
|
|
||||||
"Leaf Carpet" = true
|
|
||||||
"Industrial Palette" = true
|
|
||||||
Hedges = true
|
|
||||||
Grate = true
|
|
||||||
"Gold Bars" = true
|
|
||||||
"Glass Item Frame" = true
|
|
||||||
"Framed Glass" = true
|
|
||||||
"Duskbound Blocks" = true
|
|
||||||
"Compressed Blocks" = true
|
|
||||||
"Celebratory Lamps" = true
|
|
||||||
|
|
||||||
[building.vertical_planks]
|
|
||||||
#This feature disables itself if any of the following mods are loaded:
|
|
||||||
# - woodworks
|
|
||||||
#This is done to prevent content overlap.
|
|
||||||
#You can turn this on to force the feature to be loaded even if the above mods are also loaded.
|
|
||||||
"Ignore Anti Overlap" = false
|
|
||||||
|
|
||||||
[building.variant_ladders]
|
|
||||||
#This feature disables itself if any of the following mods are loaded:
|
|
||||||
# - woodworks
|
|
||||||
#This is done to prevent content overlap.
|
|
||||||
#You can turn this on to force the feature to be loaded even if the above mods are also loaded.
|
|
||||||
"Ignore Anti Overlap" = false
|
|
||||||
"Change Names" = true
|
|
||||||
|
|
||||||
[building.variant_chests]
|
|
||||||
#This feature disables itself if any of the following mods are loaded:
|
|
||||||
# - woodworks
|
|
||||||
#This is done to prevent content overlap.
|
|
||||||
#You can turn this on to force the feature to be loaded even if the above mods are also loaded.
|
|
||||||
"Ignore Anti Overlap" = false
|
|
||||||
"Replace Worldgen Chests" = true
|
|
||||||
"Enable Reverting Wooden Chests" = true
|
|
||||||
#Chests to put in each structure. The format per entry is "structure=chest", where "structure" is a structure ID, and "chest" is a block ID, which must correspond to a standard chest block.
|
|
||||||
"Structure Chests" = ["minecraft:village_plains=quark:oak_chest", "minecraft:igloo=quark:spruce_chest", "minecraft:village_snowy=quark:spruce_chest", "minecraft:village_taiga=quark:spruce_chest", "minecraft:desert_pyramid=quark:birch_chest", "minecraft:jungle_pyramid=quark:jungle_chest", "minecraft:village_desert=quark:jungle_chest", "minecraft:village_savanna=quark:acacia_chest", "minecraft:mansion=quark:dark_oak_chest", "minecraft:pillager_outpost=quark:dark_oak_chest", "minecraft:ruined_portal=quark:crimson_chest", "minecraft:bastion_remnant=quark:crimson_chest", "minecraft:fortress=quark:nether_brick_chest", "minecraft:endcity=quark:purpur_chest"]
|
|
||||||
|
|
||||||
[building.variant_bookshelves]
|
|
||||||
#This feature disables itself if any of the following mods are loaded:
|
|
||||||
# - woodworks
|
|
||||||
#This is done to prevent content overlap.
|
|
||||||
#You can turn this on to force the feature to be loaded even if the above mods are also loaded.
|
|
||||||
"Ignore Anti Overlap" = false
|
|
||||||
"Change Names" = true
|
|
||||||
|
|
||||||
[building.thatch]
|
|
||||||
#Allowed values: [0,1]
|
|
||||||
"Fall Damage Multiplier" = 0.5
|
|
||||||
|
|
||||||
[building.rope]
|
|
||||||
#Set to true to allow ropes to move Tile Entities even if Pistons Push TEs is disabled.
|
|
||||||
#Note that ropes will still use the same blacklist.
|
|
||||||
"Force Enable Move Tile Entities" = false
|
|
||||||
"Enable Dispenser Behavior" = true
|
|
||||||
|
|
||||||
[building.oriental_palette]
|
|
||||||
"Enable Paper Blocks" = true
|
|
||||||
"Enable Bamboo Mats" = true
|
|
||||||
|
|
||||||
[building.more_stone_variants]
|
|
||||||
"Enable Bricks" = true
|
|
||||||
"Enable Chiseled Bricks" = true
|
|
||||||
"Enable Pillar" = true
|
|
||||||
|
|
||||||
[building.more_brick_types]
|
|
||||||
#This also comes with a utility recipe for Red Nether Bricks
|
|
||||||
"Enable Blue Nether Bricks" = true
|
|
||||||
#This also includes Red Sandstone Bricks and Soul Sandstone Bricks
|
|
||||||
"Enable Sandstone Bricks" = true
|
|
||||||
#This also includes Mossy Cobblestone Bricks
|
|
||||||
"Enable Cobblestone Bricks" = true
|
|
||||||
#Requires Cobblestone Bricks to be enabled
|
|
||||||
"Enable Blackstone Bricks" = true
|
|
||||||
#Requires Cobblestone Bricks to be enabled
|
|
||||||
"Enable Dirt Bricks" = true
|
|
||||||
#Requires Cobblestone Bricks to be enabled
|
|
||||||
"Enable Netherrack Bricks" = true
|
|
||||||
|
|
||||||
[building.leaf_carpet]
|
|
||||||
#This feature disables itself if any of the following mods are loaded:
|
|
||||||
# - woodworks
|
|
||||||
#This is done to prevent content overlap.
|
|
||||||
#You can turn this on to force the feature to be loaded even if the above mods are also loaded.
|
|
||||||
"Ignore Anti Overlap" = false
|
|
||||||
|
|
||||||
[building.industrial_palette]
|
|
||||||
"Enable Iron Plates" = true
|
|
||||||
"Enable Iron Ladder" = true
|
|
||||||
|
|
||||||
[building.gold_bars]
|
|
||||||
"Generate In Nether Fortress" = true
|
|
||||||
|
|
||||||
[building.glass_item_frame]
|
|
||||||
"Glass Item Frames Update Maps" = true
|
|
||||||
#The scale at which items render in the Glass Item Frame. To match the vanilla Item Frame size, set to 1.0
|
|
||||||
"Item Render Scale" = 1.5
|
|
||||||
|
|
||||||
[building.compressed_blocks]
|
|
||||||
"Charcoal Block and Blaze Lantern Stay On Fire Forever" = true
|
|
||||||
#Allowed values: [0,)
|
|
||||||
"Charcoal Block Fuel Time" = 16000
|
|
||||||
#Allowed values: [0,)
|
|
||||||
"Blaze Lantern Fuel Time" = 24000
|
|
||||||
#Allowed values: [0,)
|
|
||||||
"Stick Block Fuel Time" = 900
|
|
||||||
#Allowed values: [0,)
|
|
||||||
"Bamboo Bundle Fuel Time" = 500
|
|
||||||
"Enable Charcoal Block" = true
|
|
||||||
"Enable Sugar Cane Block" = true
|
|
||||||
"Enable Bamboo Block" = true
|
|
||||||
"Enable Cactus Block" = true
|
|
||||||
"Enable Chorus Fruit Block" = true
|
|
||||||
"Enable Stick Block" = true
|
|
||||||
"Enable Apple Crate" = true
|
|
||||||
"Enable Golden Apple Crate" = true
|
|
||||||
"Enable Potato Crate" = true
|
|
||||||
"Enable Carrot Crate" = true
|
|
||||||
"Enable Beetroot Crate" = true
|
|
||||||
"Enable Cocoa Bean Sack" = true
|
|
||||||
"Enable Nether Wart Sack" = true
|
|
||||||
"Enable Gunpowder Sack" = true
|
|
||||||
"Enable Berry Sack" = true
|
|
||||||
"Enable Glow Berry Sack" = true
|
|
||||||
"Enable Blaze Lantern" = true
|
|
||||||
"Enable Bonded Leather" = true
|
|
||||||
"Enable Bonded Rabbit Hide" = true
|
|
||||||
|
|
||||||
[building.celebratory_lamps]
|
|
||||||
"Light Level" = 15
|
|
||||||
|
|
||||||
[management]
|
|
||||||
"Quick Armor Swapping" = true
|
|
||||||
"Item Sharing" = true
|
|
||||||
"Inventory Sorting" = true
|
|
||||||
"Hotbar Changer" = true
|
|
||||||
"Expanded Item Interactions" = true
|
|
||||||
"Easy Transfering" = true
|
|
||||||
"Chests In Boats" = true
|
|
||||||
|
|
||||||
[management.quick_armor_swapping]
|
|
||||||
"Swap Off Hand" = true
|
|
||||||
|
|
||||||
[management.item_sharing]
|
|
||||||
"Render Items In Chat" = true
|
|
||||||
|
|
||||||
[management.inventory_sorting]
|
|
||||||
"Enable Player Inventory" = true
|
|
||||||
"Enable Player Inventory In Chests" = true
|
|
||||||
"Enable Chests" = true
|
|
||||||
#Play a click when sorting inventories using keybindings
|
|
||||||
"Satisfying Click" = true
|
|
||||||
|
|
||||||
[management.expanded_item_interactions]
|
|
||||||
"Enable Armor Interaction" = true
|
|
||||||
"Enable Shulker Box Interaction" = true
|
|
||||||
"Enable Lava Interaction" = true
|
|
||||||
|
|
||||||
[management.easy_transfering]
|
|
||||||
"Enable Shift Lock" = true
|
|
||||||
|
|
||||||
[tools]
|
|
||||||
Trowel = true
|
|
||||||
"Slime In A Bucket" = true
|
|
||||||
"Seed Pouch" = true
|
|
||||||
Pickarang = true
|
|
||||||
"Pathfinder Maps" = true
|
|
||||||
"Parrot Eggs" = true
|
|
||||||
"Endermosh Music Disc" = true
|
|
||||||
"Color Runes" = true
|
|
||||||
Camera = true
|
|
||||||
"Bundle Recipe" = true
|
|
||||||
"Bottled Cloud" = true
|
|
||||||
"Beacon Redirection" = true
|
|
||||||
"Ancient Tomes" = true
|
|
||||||
"Ambient Discs" = true
|
|
||||||
Abacus = true
|
|
||||||
|
|
||||||
[tools.trowel]
|
|
||||||
#Amount of blocks placed is this value + 1.
|
|
||||||
#Set to 0 to make the Trowel unbreakable
|
|
||||||
#Allowed values: [0,)
|
|
||||||
"Trowel Max Durability" = 0
|
|
||||||
|
|
||||||
[tools.seed_pouch]
|
|
||||||
"Max Items" = 640
|
|
||||||
"Show All Variants In Creative" = true
|
|
||||||
"Shift Range" = 3
|
|
||||||
|
|
||||||
[tools.pickarang]
|
|
||||||
#How long it takes before the Pickarang starts returning to the player if it doesn't hit anything.
|
|
||||||
Timeout = 20
|
|
||||||
#How long it takes before the Flamarang starts returning to the player if it doesn't hit anything.
|
|
||||||
"Netherite Timeout" = 20
|
|
||||||
#Pickarang harvest level. 2 is Iron, 3 is Diamond, 4 is Netherite.
|
|
||||||
"Harvest Level" = 3
|
|
||||||
#Flamarang harvest level. 2 is Iron, 3 is Diamond, 4 is Netherite.
|
|
||||||
"Netherite Harvest Level" = 4
|
|
||||||
#Pickarang durability. Set to -1 to have the Pickarang be unbreakable.
|
|
||||||
Durability = 800
|
|
||||||
#Flamarang durability. Set to -1 to have the Flamarang be unbreakable.
|
|
||||||
"Netherite Durability" = 1040
|
|
||||||
#Pickarang max hardness breakable. 22.5 is ender chests, 25.0 is monster boxes, 50 is obsidian. Most things are below 5.
|
|
||||||
"Max Hardness" = 20.0
|
|
||||||
#Flamarang max hardness breakable. 22.5 is ender chests, 25.0 is monster boxes, 50 is obsidian. Most things are below 5.
|
|
||||||
"Netherite Max Hardness" = 20.0
|
|
||||||
#Set this to true to use the recipe without the Heart of Diamond, even if the Heart of Diamond is enabled.
|
|
||||||
"Never Use Heart Of Diamond" = false
|
|
||||||
#Set this to true to disable the short cooldown between throwing Pickarangs.
|
|
||||||
"No Cooldown" = false
|
|
||||||
#Set this to true to disable the short cooldown between throwing Flamarangs.
|
|
||||||
"Netherite No Cooldown" = false
|
|
||||||
|
|
||||||
[tools.pathfinder_maps]
|
|
||||||
#In this section you can add custom Pathfinder Maps. This works for both vanilla and modded biomes.
|
|
||||||
#Each custom map must be on its own line.
|
|
||||||
#The format for a custom map is as follows:
|
|
||||||
#<id>,<level>,<min_price>,<max_price>,<color>,<name>
|
|
||||||
#
|
|
||||||
#With the following descriptions:
|
|
||||||
# - <id> being the biome's ID NAME. You can find vanilla names here - https://minecraft.gamepedia.com/Biome#Biome_IDs
|
|
||||||
# - <level> being the Cartographer villager level required for the map to be unlockable
|
|
||||||
# - <min_price> being the cheapest (in Emeralds) the map can be
|
|
||||||
# - <max_price> being the most expensive (in Emeralds) the map can be
|
|
||||||
# - <color> being a hex color (without the #) for the map to display. You can generate one here - https://htmlcolorcodes.com/
|
|
||||||
#
|
|
||||||
#Here's an example of a map to locate Ice Mountains:
|
|
||||||
#minecraft:ice_mountains,2,8,14,7FE4FF
|
|
||||||
Customs = []
|
|
||||||
"Search Radius" = 6400
|
|
||||||
"Search Distance Increment" = 8
|
|
||||||
"Xp From Trade" = 5
|
|
||||||
|
|
||||||
[tools.parrot_eggs]
|
|
||||||
#The chance feeding a parrot will produce an egg
|
|
||||||
Chance = 0.05
|
|
||||||
#How long it takes to create an egg
|
|
||||||
"Egg Time" = 12000
|
|
||||||
"Enable Special Awesome Parrot" = true
|
|
||||||
|
|
||||||
[tools.endermosh_music_disc]
|
|
||||||
"Play Endermosh During Enderdragon Fight" = false
|
|
||||||
"Add To End City Loot" = true
|
|
||||||
"Loot Weight" = 5
|
|
||||||
"Loot Quality" = 1
|
|
||||||
|
|
||||||
[tools.color_runes]
|
|
||||||
"Dungeon Weight" = 10
|
|
||||||
"Nether Fortress Weight" = 8
|
|
||||||
"Jungle Temple Weight" = 8
|
|
||||||
"Desert Temple Weight" = 8
|
|
||||||
"Item Quality" = 0
|
|
||||||
"Apply Cost" = 5
|
|
||||||
|
|
||||||
[tools.bottled_cloud]
|
|
||||||
"Cloud Level Bottom" = 191
|
|
||||||
"Cloud Level Top" = 196
|
|
||||||
|
|
||||||
[tools.ancient_tomes]
|
|
||||||
#Set to 0 to not generate in Dungeons
|
|
||||||
"Dungeon Weight" = 20
|
|
||||||
#Set to 0 to not generate in Stronghold Libraries
|
|
||||||
"Library Weight" = 30
|
|
||||||
#Set to 0 to not generate in Bastions
|
|
||||||
"Bastion Weight" = 25
|
|
||||||
#Set to 0 to not generate in Woodland Mansions
|
|
||||||
"Woodland Mansion Weight" = 15
|
|
||||||
#Set to 0 to not generate in Nether Fortresses
|
|
||||||
"Nether Fortress Weight" = 0
|
|
||||||
#Set to 0 to not generate in Underwater Ruins
|
|
||||||
"Underwater Ruin Weight" = 0
|
|
||||||
#Set to 0 to not generate in Monster Boxes
|
|
||||||
"Monster Box Weight" = 5
|
|
||||||
"Item Quality" = 2
|
|
||||||
"Normal Upgrade Cost" = 10
|
|
||||||
"Limit Break Upgrade Cost" = 30
|
|
||||||
"Valid Enchantments" = ["minecraft:feather_falling", "minecraft:thorns", "minecraft:sharpness", "minecraft:smite", "minecraft:bane_of_arthropods", "minecraft:knockback", "minecraft:fire_aspect", "minecraft:looting", "minecraft:sweeping", "minecraft:efficiency", "minecraft:unbreaking", "minecraft:fortune", "minecraft:power", "minecraft:punch", "minecraft:luck_of_the_sea", "minecraft:lure", "minecraft:loyalty", "minecraft:riptide", "minecraft:impaling", "minecraft:piercing"]
|
|
||||||
"Overleveled Books Glow Rainbow" = true
|
|
||||||
|
|
||||||
[tools.ambient_discs]
|
|
||||||
"Drop On Spider Kill" = true
|
|
||||||
|
|
||||||
[tools.abacus]
|
|
||||||
|
|
||||||
[tools.abacus.highlight_color]
|
|
||||||
A = 0.4
|
|
||||||
R = 0.0
|
|
||||||
G = 0.0
|
|
||||||
B = 0.0
|
|
||||||
|
|
||||||
[tweaks]
|
|
||||||
"Villagers Follow Emeralds" = true
|
|
||||||
"Vexes Die With Their Masters" = true
|
|
||||||
"Utility Recipes" = true
|
|
||||||
"Snow Golem Player Heads" = true
|
|
||||||
"Simple Harvest" = true
|
|
||||||
"Sign Editing" = true
|
|
||||||
"Replace Scaffolding" = true
|
|
||||||
"Reacharound Placing" = true
|
|
||||||
"Poison Potato Usage" = true
|
|
||||||
"Pig Litters" = true
|
|
||||||
"Pat The Dogs" = true
|
|
||||||
"Note Block Mob Sounds" = true
|
|
||||||
"More Banner Layers" = true
|
|
||||||
"Lock Rotation" = true
|
|
||||||
"Hoe Harvesting" = true
|
|
||||||
"Grab Chickens" = true
|
|
||||||
"Glass Shard" = true
|
|
||||||
"Enhanced Ladders" = true
|
|
||||||
Emotes = true
|
|
||||||
"Dragon Scales" = true
|
|
||||||
"Double Door Opening" = true
|
|
||||||
"Compasses Work Everywhere" = true
|
|
||||||
"Campfires Boost Elytra" = true
|
|
||||||
"Better Elytra Rocket" = true
|
|
||||||
"Automatic Recipe Unlock" = true
|
|
||||||
"Armed Armor Stands" = true
|
|
||||||
"Skull Pikes" = true
|
|
||||||
|
|
||||||
[tweaks.utility_recipes]
|
|
||||||
#Can any wool color be dyed?
|
|
||||||
"Dye Any Wool" = true
|
|
||||||
#Can other stone-like materials be used for crafting stone tools?
|
|
||||||
"Better Stone Tool Crafting" = true
|
|
||||||
#Can a dispenser be crafted by adding a bow to a dropper?
|
|
||||||
"Enable Dispenser" = true
|
|
||||||
#Can a repeater be crafted with the pattern for a redstone torch?
|
|
||||||
"Enable Repeater" = true
|
|
||||||
#Can you craft a minecart around blocks which can be placed i
|
|
7
config/radium.properties
Normal file
7
config/radium.properties
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
# This is the configuration file for Lithium.
|
||||||
|
# This file exists for debugging purposes and should not be configured otherwise.
|
||||||
|
#
|
||||||
|
# You can find information on editing this file and all the available options here:
|
||||||
|
# https://github.com/jellysquid3/lithium-fabric/wiki/Configuration-File
|
||||||
|
#
|
||||||
|
# By default, this file will be empty except for this notice.
|
117
config/thermal-common.toml
Normal file
117
config/thermal-common.toml
Normal file
@ -0,0 +1,117 @@
|
|||||||
|
|
||||||
|
[World]
|
||||||
|
|
||||||
|
[World.Ores]
|
||||||
|
|
||||||
|
[World.Ores."Oil Sand"]
|
||||||
|
#Max number of veins per chunk; set to 0 to disable.
|
||||||
|
#Range: 0 ~ 256
|
||||||
|
"Vein Count" = 2
|
||||||
|
#Max size of the vein.
|
||||||
|
#Range: 1 ~ 256
|
||||||
|
"Vein Size" = 24
|
||||||
|
#Minimum Y spawn.
|
||||||
|
#Range: -2048 ~ 2048
|
||||||
|
"Min Y" = 40
|
||||||
|
#Maximum Y spawn.
|
||||||
|
#Range: -2048 ~ 2048
|
||||||
|
"Max Y" = 80
|
||||||
|
|
||||||
|
[World.Ores.Silver]
|
||||||
|
#Max number of veins per chunk; set to 0 to disable.
|
||||||
|
#Range: 0 ~ 256
|
||||||
|
"Vein Count" = 4
|
||||||
|
#Max size of the vein.
|
||||||
|
#Range: 1 ~ 256
|
||||||
|
"Vein Size" = 8
|
||||||
|
#Minimum Y spawn.
|
||||||
|
#Range: -2048 ~ 2048
|
||||||
|
"Min Y" = -60
|
||||||
|
#Maximum Y spawn.
|
||||||
|
#Range: -2048 ~ 2048
|
||||||
|
"Max Y" = 40
|
||||||
|
|
||||||
|
[World.Ores.Lead]
|
||||||
|
#Max number of veins per chunk; set to 0 to disable.
|
||||||
|
#Range: 0 ~ 256
|
||||||
|
"Vein Count" = 6
|
||||||
|
#Max size of the vein.
|
||||||
|
#Range: 1 ~ 256
|
||||||
|
"Vein Size" = 8
|
||||||
|
#Minimum Y spawn.
|
||||||
|
#Range: -2048 ~ 2048
|
||||||
|
"Min Y" = -60
|
||||||
|
#Maximum Y spawn.
|
||||||
|
#Range: -2048 ~ 2048
|
||||||
|
"Max Y" = 40
|
||||||
|
|
||||||
|
[World.Ores.Nickel]
|
||||||
|
#Max number of veins per chunk; set to 0 to disable.
|
||||||
|
#Range: 0 ~ 256
|
||||||
|
"Vein Count" = 4
|
||||||
|
#Max size of the vein.
|
||||||
|
#Range: 1 ~ 256
|
||||||
|
"Vein Size" = 8
|
||||||
|
#Minimum Y spawn.
|
||||||
|
#Range: -2048 ~ 2048
|
||||||
|
"Min Y" = -40
|
||||||
|
#Maximum Y spawn.
|
||||||
|
#Range: -2048 ~ 2048
|
||||||
|
"Max Y" = 120
|
||||||
|
|
||||||
|
[World.Ores.Cinnabar]
|
||||||
|
#Max number of veins per chunk; set to 0 to disable.
|
||||||
|
#Range: 0 ~ 256
|
||||||
|
"Vein Count" = 1
|
||||||
|
#Max size of the vein.
|
||||||
|
#Range: 1 ~ 256
|
||||||
|
"Vein Size" = 5
|
||||||
|
#Minimum Y spawn.
|
||||||
|
#Range: -2048 ~ 2048
|
||||||
|
"Min Y" = -16
|
||||||
|
#Maximum Y spawn.
|
||||||
|
#Range: -2048 ~ 2048
|
||||||
|
"Max Y" = 48
|
||||||
|
|
||||||
|
[World.Ores.Sulfur]
|
||||||
|
#Max number of veins per chunk; set to 0 to disable.
|
||||||
|
#Range: 0 ~ 256
|
||||||
|
"Vein Count" = 2
|
||||||
|
#Max size of the vein.
|
||||||
|
#Range: 1 ~ 256
|
||||||
|
"Vein Size" = 7
|
||||||
|
#Minimum Y spawn.
|
||||||
|
#Range: -2048 ~ 2048
|
||||||
|
"Min Y" = -16
|
||||||
|
#Maximum Y spawn.
|
||||||
|
#Range: -2048 ~ 2048
|
||||||
|
"Max Y" = 32
|
||||||
|
|
||||||
|
[World.Ores.Tin]
|
||||||
|
#Max number of veins per chunk; set to 0 to disable.
|
||||||
|
#Range: 0 ~ 256
|
||||||
|
"Vein Count" = 6
|
||||||
|
#Max size of the vein.
|
||||||
|
#Range: 1 ~ 256
|
||||||
|
"Vein Size" = 9
|
||||||
|
#Minimum Y spawn.
|
||||||
|
#Range: -2048 ~ 2048
|
||||||
|
"Min Y" = -20
|
||||||
|
#Maximum Y spawn.
|
||||||
|
#Range: -2048 ~ 2048
|
||||||
|
"Max Y" = 60
|
||||||
|
|
||||||
|
[World.Ores.Niter]
|
||||||
|
#Max number of veins per chunk; set to 0 to disable.
|
||||||
|
#Range: 0 ~ 256
|
||||||
|
"Vein Count" = 2
|
||||||
|
#Max size of the vein.
|
||||||
|
#Range: 1 ~ 256
|
||||||
|
"Vein Size" = 7
|
||||||
|
#Minimum Y spawn.
|
||||||
|
#Range: -2048 ~ 2048
|
||||||
|
"Min Y" = -16
|
||||||
|
#Maximum Y spawn.
|
||||||
|
#Range: -2048 ~ 2048
|
||||||
|
"Max Y" = 64
|
||||||
|
|
@ -1,42 +0,0 @@
|
|||||||
restrictions = {}
|
|
||||||
|
|
||||||
[xpCost]
|
|
||||||
#Set to true if experience cost should be inverted, meaning the shorter the distance, the more expensive. Can be used to encourage other methods for short-distance travel.
|
|
||||||
inverseXpCost = false
|
|
||||||
#The amount of blocks per xp level requirement. If set to 500, the base xp cost for travelling 1000 blocks will be 2 levels.
|
|
||||||
#Range: > -2147483648
|
|
||||||
blocksPerXpLevel = 1000
|
|
||||||
#The minimum base xp cost (may be subceeded by multipliers defined below)
|
|
||||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
|
||||||
minimumBaseXpCost = 0.0
|
|
||||||
#The maximum base xp cost (may be exceeded by multipliers defined below), set to 0 to disable all distance-based XP costs
|
|
||||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
|
||||||
maximumBaseXpCost = 3.0
|
|
||||||
#How much xp is needed per leashed animal to travel with you
|
|
||||||
#Range: > -2147483648
|
|
||||||
xpCostPerLeashed = 1
|
|
||||||
#The base xp level cost when travelling between dimensions. Ignores block distance.
|
|
||||||
#Range: > -2147483648
|
|
||||||
dimensionalWarpXpCost = 3
|
|
||||||
#The multiplier applied to the base xp cost when teleporting to a global waystone through any method.
|
|
||||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
|
||||||
globalWaystoneXpCostMultiplier = 1.0
|
|
||||||
#The multiplier applied to the base xp cost when teleporting using a Warp Stone item (not the Waystone block, Konstantin)
|
|
||||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
|
||||||
warpStoneXpCostMultiplier = 0.0
|
|
||||||
#The multiplier applied to the base xp cost when teleporting from one waystone to another.
|
|
||||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
|
||||||
waystoneXpCostMultiplier = 1.0
|
|
||||||
#The multiplier applied to the base xp cost when teleporting from one sharestone to another.
|
|
||||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
|
||||||
sharestoneXpCostMultiplier = 1.0
|
|
||||||
#The multiplier applied to the base xp cost when teleporting from a portstone.
|
|
||||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
|
||||||
portstoneXpCostMultiplier = 0.0
|
|
||||||
#The multiplier applied to the base xp cost when teleporting from one warp plate to another.
|
|
||||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
|
||||||
warpPlateXpCostMultiplier = 0.0
|
|
||||||
#The multiplier applied to the base xp cost when teleporting via the inventory button.
|
|
||||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
|
||||||
inventoryButtonXpCostMultiplier = 0.0
|
|
||||||
|
|
@ -1,133 +0,0 @@
|
|||||||
|
|
||||||
[xpCost]
|
|
||||||
#Set to true if experience cost should be inverted, meaning the shorter the distance, the more expensive. Can be used to encourage other methods for short-distance travel.
|
|
||||||
inverseXpCost = false
|
|
||||||
#The amount of blocks per xp level requirement. If set to 500, the base xp cost for travelling 1000 blocks will be 2 levels.
|
|
||||||
#Range: > -2147483648
|
|
||||||
blocksPerXpLevel = 1000
|
|
||||||
#The minimum base xp cost (may be subceeded by multipliers defined below)
|
|
||||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
|
||||||
minimumBaseXpCost = 0.0
|
|
||||||
#The maximum base xp cost (may be exceeded by multipliers defined below), set to 0 to disable all distance-based XP costs
|
|
||||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
|
||||||
maximumBaseXpCost = 3.0
|
|
||||||
#How much xp is needed per leashed animal to travel with you
|
|
||||||
#Range: > -2147483648
|
|
||||||
xpCostPerLeashed = 1
|
|
||||||
#The base xp level cost when travelling between dimensions. Ignores block distance.
|
|
||||||
#Range: > -2147483648
|
|
||||||
dimensionalWarpXpCost = 3
|
|
||||||
#The multiplier applied to the base xp cost when teleporting to a global waystone through any method.
|
|
||||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
|
||||||
globalWaystoneXpCostMultiplier = 1.0
|
|
||||||
#The multiplier applied to the base xp cost when teleporting using a Warp Stone item (not the Waystone block, Konstantin)
|
|
||||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
|
||||||
warpStoneXpCostMultiplier = 0.0
|
|
||||||
#The multiplier applied to the base xp cost when teleporting from one waystone to another.
|
|
||||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
|
||||||
waystoneXpCostMultiplier = 1.0
|
|
||||||
#The multiplier applied to the base xp cost when teleporting from one sharestone to another.
|
|
||||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
|
||||||
sharestoneXpCostMultiplier = 1.0
|
|
||||||
#The multiplier applied to the base xp cost when teleporting from a portstone.
|
|
||||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
|
||||||
portstoneXpCostMultiplier = 0.0
|
|
||||||
#The multiplier applied to the base xp cost when teleporting from one warp plate to another.
|
|
||||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
|
||||||
warpPlateXpCostMultiplier = 0.0
|
|
||||||
#The multiplier applied to the base xp cost when teleporting via the inventory button.
|
|
||||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
|
||||||
inventoryButtonXpCostMultiplier = 0.0
|
|
||||||
|
|
||||||
[restrictions]
|
|
||||||
#If enabled, only creative players can place, edit or break waystones. This does NOT disable the crafting recipe.
|
|
||||||
restrictToCreative = false
|
|
||||||
#If enabled, only the owner of a waystone (the one who placed it) can rename it.
|
|
||||||
restrictRenameToOwner = false
|
|
||||||
#If enabled, waystones generated in worldgen are unbreakable.
|
|
||||||
generatedWaystonesUnbreakable = false
|
|
||||||
#If enabled, leashed mobs will be teleported with you
|
|
||||||
transportLeashed = true
|
|
||||||
#Whether to take leashed mobs with you when teleporting between dimensions
|
|
||||||
transportLeashedDimensional = true
|
|
||||||
#List of leashed mobs that cannot be taken with you when teleporting
|
|
||||||
leashedDenyList = ["minecraft:wither"]
|
|
||||||
#Set to 'ALLOW' to allow dimensional warp in general. Set to 'GLOBAL_ONLY' to restrict dimensional warp to global waystones. Set to 'DENY' to disallow all dimensional warps.
|
|
||||||
#Allowed Values: ALLOW, GLOBAL_ONLY, DENY
|
|
||||||
dimensionalWarp = "ALLOW"
|
|
||||||
#List of dimensions that players are allowed to warp cross-dimension from and to. If left empty, all dimensions except those in dimensionalWarpDenyList are allowed.
|
|
||||||
dimensionalWarpAllowList = []
|
|
||||||
#List of dimensions that players are not allowed to warp cross-dimension from and to. Only used if dimensionalWarpAllowList is empty.
|
|
||||||
dimensionalWarpDenyList = []
|
|
||||||
#Set to true if players should be able to teleport between waystones by simply right-clicking a waystone.
|
|
||||||
allowWaystoneToWaystoneTeleport = true
|
|
||||||
#Set to false to allow non-creative players to make waystones globally activated for all players.
|
|
||||||
globalWaystoneSetupRequiresCreativeMode = true
|
|
||||||
|
|
||||||
[cooldowns]
|
|
||||||
#The multiplier applied to the cooldown when teleporting to a global waystone via inventory button or warp stone.
|
|
||||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
|
||||||
globalWaystoneCooldownMultiplier = 1.0
|
|
||||||
#The cooldown between usages of the warp stone in seconds. This is bound to the player, not the item, so multiple warp stones share the same cooldown.
|
|
||||||
#Range: > -2147483648
|
|
||||||
warpStoneCooldown = 300
|
|
||||||
#The time in ticks that it takes to use a warp stone. This is the charge-up time when holding right-click.
|
|
||||||
#Range: > -2147483648
|
|
||||||
warpStoneUseTime = 32
|
|
||||||
#The time in ticks that it takes to use a warp plate. This is the time the player has to stand on top for.
|
|
||||||
#Range: > -2147483648
|
|
||||||
warpPlateUseTime = 20
|
|
||||||
#The time in ticks it takes to use a scroll. This is the charge-up time when holding right-click.
|
|
||||||
#Range: > -2147483648
|
|
||||||
scrollUseTime = 32
|
|
||||||
#The cooldown between usages of the inventory button in seconds.
|
|
||||||
#Range: > -2147483648
|
|
||||||
inventoryButtonCooldown = 300
|
|
||||||
|
|
||||||
[inventoryButton]
|
|
||||||
#Set to 'NONE' for no inventory button. Set to 'NEAREST' for an inventory button that teleports to the nearest waystone. Set to 'ANY' for an inventory button that opens the waystone selection menu. Set to a waystone name for an inventory button that teleports to a specifically named waystone.
|
|
||||||
inventoryButton = ""
|
|
||||||
#The x position of the warp button in the inventory.
|
|
||||||
#Range: > -2147483648
|
|
||||||
warpButtonX = 58
|
|
||||||
#The y position of the warp button in the inventory.
|
|
||||||
#Range: > -2147483648
|
|
||||||
warpButtonY = 60
|
|
||||||
#The y position of the warp button in the creative menu.
|
|
||||||
#Range: > -2147483648
|
|
||||||
creativeWarpButtonX = 88
|
|
||||||
#The y position of the warp button in the creative menu.
|
|
||||||
#Range: > -2147483648
|
|
||||||
creativeWarpButtonY = 33
|
|
||||||
|
|
||||||
[worldGen]
|
|
||||||
#Set to 'DEFAULT' to only generate the normally textured waystones. Set to 'MOSSY' or 'SANDY' to generate all as that variant. Set to 'BIOME' to make the style depend on the biome it is generated in.
|
|
||||||
#Allowed Values: DEFAULT, MOSSY, SANDY, BIOME
|
|
||||||
worldGenStyle = "BIOME"
|
|
||||||
#Approximate chunk distance between waystones generated freely in world generation. Set to 0 to disable generation.
|
|
||||||
#Range: > -2147483648
|
|
||||||
frequency = 25
|
|
||||||
#List of dimensions that waystones are allowed to spawn in through world gen. If left empty, all dimensions except those in worldGenDimensionDenyList are used.
|
|
||||||
dimensionAllowList = ["minecraft:overworld", "minecraft:the_nether", "minecraft:the_end"]
|
|
||||||
#List of dimensions that waystones are not allowed to spawn in through world gen. Only used if worldGenDimensionAllowList is empty.
|
|
||||||
dimensionDenyList = []
|
|
||||||
#Set to 'PRESET_FIRST' to first use names from the custom names list. Set to 'PRESET_ONLY' to use only those custom names. Set to 'MIXED' to have some waystones use custom names, and others random names.
|
|
||||||
#Allowed Values: PRESET_FIRST, RANDOM_ONLY, PRESET_ONLY, MIXED
|
|
||||||
nameGenerationMode = "PRESET_FIRST"
|
|
||||||
#These names will be used for the PRESET name generation mode. See the nameGenerationMode option for more info.
|
|
||||||
customWaystoneNames = []
|
|
||||||
#Set to true if waystones should be added to the generation of villages. Some villages may still spawn without a waystone.
|
|
||||||
spawnInVillages = true
|
|
||||||
#Ensures that pretty much every village will have a waystone, by spawning it as early as possible. In addition, this means waystones will generally be located in the center of the village.
|
|
||||||
forceSpawnInVillages = false
|
|
||||||
|
|
||||||
[client]
|
|
||||||
#If enabled, the text overlay on waystones will no longer always render at full brightness.
|
|
||||||
disableTextGlow = false
|
|
||||||
#If enabled, activated waystones will not emit particles.
|
|
||||||
disableParticles = false
|
|
||||||
|
|
||||||
[compatibility]
|
|
||||||
#If enabled, JourneyMap waypoints will be created for each activated waystone.
|
|
||||||
displayWaystonesOnJourneyMap = true
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
|||||||
#Don't put comments; they get removed
|
#Don't put comments; they get removed
|
||||||
#Thu May 12 23:58:54 CDT 2022
|
#Tue May 17 16:57:35 CDT 2022
|
||||||
max-super-pickaxe-size=5
|
max-super-pickaxe-size=5
|
||||||
use-inventory-creative-override=false
|
use-inventory-creative-override=false
|
||||||
use-inventory-override=false
|
use-inventory-override=false
|
||||||
|
@ -1,131 +1,75 @@
|
|||||||
%YAML 1.1
|
%YAML 1.1
|
||||||
---
|
---
|
||||||
worlds:
|
worlds:
|
||||||
- sealevel: 63
|
|
||||||
nether: false
|
|
||||||
miny: 0
|
|
||||||
name: beyond_earth_venus_orbit
|
|
||||||
the_end: false
|
|
||||||
title: beyond_earth_venus_orbit
|
|
||||||
height: 256
|
|
||||||
- sealevel: 63
|
|
||||||
nether: false
|
|
||||||
miny: 0
|
|
||||||
name: beyond_earth_mercury_orbit
|
|
||||||
the_end: false
|
|
||||||
title: beyond_earth_mercury_orbit
|
|
||||||
height: 256
|
|
||||||
- sealevel: 63
|
- sealevel: 63
|
||||||
nether: false
|
nether: false
|
||||||
miny: -64
|
miny: -64
|
||||||
name: beyond_earth_venus
|
name: beyond_earth_venus
|
||||||
the_end: false
|
the_end: false
|
||||||
title: beyond_earth_venus
|
title: Venus
|
||||||
height: 384
|
height: 384
|
||||||
- sealevel: 63
|
- sealevel: 63
|
||||||
nether: false
|
nether: false
|
||||||
miny: -64
|
miny: -64
|
||||||
name: beyond_earth_mercury
|
name: beyond_earth_mercury
|
||||||
the_end: false
|
the_end: false
|
||||||
title: beyond_earth_mercury
|
title: Mercury
|
||||||
height: 384
|
|
||||||
- sealevel: 63
|
|
||||||
nether: false
|
|
||||||
miny: 0
|
|
||||||
name: ae2_spatial_storage
|
|
||||||
the_end: false
|
|
||||||
title: ae2_spatial_storage
|
|
||||||
height: 256
|
|
||||||
- sealevel: 63
|
|
||||||
nether: false
|
|
||||||
miny: 0
|
|
||||||
name: beyond_earth_mars_orbit
|
|
||||||
the_end: false
|
|
||||||
title: beyond_earth_mars_orbit
|
|
||||||
height: 256
|
|
||||||
- sealevel: 63
|
|
||||||
nether: false
|
|
||||||
miny: 0
|
|
||||||
name: mahoutsukai_reality_marble
|
|
||||||
the_end: false
|
|
||||||
title: mahoutsukai_reality_marble
|
|
||||||
height: 256
|
|
||||||
- sealevel: 63
|
|
||||||
nether: false
|
|
||||||
miny: 0
|
|
||||||
name: beyond_earth_earth_orbit
|
|
||||||
the_end: false
|
|
||||||
title: beyond_earth_earth_orbit
|
|
||||||
height: 256
|
|
||||||
- sealevel: 63
|
|
||||||
nether: false
|
|
||||||
miny: 0
|
|
||||||
name: DIM1
|
|
||||||
the_end: true
|
|
||||||
title: DIM1
|
|
||||||
height: 256
|
|
||||||
- sealevel: 63
|
|
||||||
nether: false
|
|
||||||
miny: 0
|
|
||||||
name: beyond_earth_glacio_orbit
|
|
||||||
the_end: false
|
|
||||||
title: beyond_earth_glacio_orbit
|
|
||||||
height: 256
|
|
||||||
- sealevel: 63
|
|
||||||
nether: true
|
|
||||||
miny: 0
|
|
||||||
name: DIM-1
|
|
||||||
the_end: false
|
|
||||||
title: DIM-1
|
|
||||||
height: 256
|
|
||||||
- sealevel: 63
|
|
||||||
nether: false
|
|
||||||
miny: -64
|
|
||||||
name: beyond_earth_glacio
|
|
||||||
the_end: false
|
|
||||||
title: beyond_earth_glacio
|
|
||||||
height: 384
|
|
||||||
- sealevel: 63
|
|
||||||
nether: false
|
|
||||||
miny: 0
|
|
||||||
name: beyond_earth_moon
|
|
||||||
the_end: false
|
|
||||||
title: beyond_earth_moon
|
|
||||||
height: 384
|
|
||||||
- sealevel: 63
|
|
||||||
nether: false
|
|
||||||
miny: 0
|
|
||||||
name: beyond_earth_moon_orbit
|
|
||||||
the_end: false
|
|
||||||
title: beyond_earth_moon_orbit
|
|
||||||
height: 256
|
|
||||||
- sealevel: 63
|
|
||||||
nether: false
|
|
||||||
miny: 0
|
|
||||||
name: undergarden_undergarden
|
|
||||||
the_end: false
|
|
||||||
title: undergarden_undergarden
|
|
||||||
height: 256
|
|
||||||
- sealevel: 63
|
|
||||||
nether: false
|
|
||||||
miny: -64
|
|
||||||
name: world
|
|
||||||
the_end: false
|
|
||||||
title: world
|
|
||||||
height: 384
|
height: 384
|
||||||
- sealevel: 63
|
- sealevel: 63
|
||||||
nether: false
|
nether: false
|
||||||
miny: -64
|
miny: -64
|
||||||
name: beyond_earth_mars
|
name: beyond_earth_mars
|
||||||
the_end: false
|
the_end: false
|
||||||
title: beyond_earth_mars
|
title: Mars
|
||||||
|
height: 384
|
||||||
|
- sealevel: 63
|
||||||
|
nether: false
|
||||||
|
miny: -64
|
||||||
|
name: beyond_earth_glacio
|
||||||
|
the_end: false
|
||||||
|
title: Glacio
|
||||||
|
height: 384
|
||||||
|
- sealevel: 63
|
||||||
|
nether: false
|
||||||
|
miny: -64
|
||||||
|
name: world
|
||||||
|
the_end: false
|
||||||
|
title: Earth
|
||||||
|
height: 384
|
||||||
|
- sealevel: 63
|
||||||
|
nether: false
|
||||||
|
miny: 0
|
||||||
|
name: beyond_earth_moon
|
||||||
|
the_end: false
|
||||||
|
title: Earth's Moon
|
||||||
height: 384
|
height: 384
|
||||||
- sealevel: 63
|
- sealevel: 63
|
||||||
nether: false
|
nether: false
|
||||||
miny: -64
|
miny: -64
|
||||||
name: mythicbotany_alfheim
|
name: mythicbotany_alfheim
|
||||||
the_end: false
|
the_end: false
|
||||||
title: mythicbotany_alfheim
|
title: Alfheim
|
||||||
height: 384
|
height: 384
|
||||||
|
- sealevel: 63
|
||||||
|
nether: false
|
||||||
|
miny: 0
|
||||||
|
name: undergarden_undergarden
|
||||||
|
the_end: false
|
||||||
|
title: Undergarden
|
||||||
|
height: 256
|
||||||
|
- sealevel: 63
|
||||||
|
nether: false
|
||||||
|
miny: 0
|
||||||
|
name: DIM1
|
||||||
|
the_end: true
|
||||||
|
title: The End
|
||||||
|
height: 256
|
||||||
|
- sealevel: 63
|
||||||
|
nether: true
|
||||||
|
miny: 0
|
||||||
|
name: DIM-1
|
||||||
|
the_end: false
|
||||||
|
title: The Nether
|
||||||
|
height: 256
|
||||||
useSaveFolderAsName: true
|
useSaveFolderAsName: true
|
||||||
maxWorldHeight: 320
|
maxWorldHeight: 320
|
||||||
|
@ -1,101 +0,0 @@
|
|||||||
modname:additionaladditions
|
|
||||||
|
|
||||||
modellist:id=%glow_stick,state=flipped:true,box=11.000000/0.000000/2.000000:12.000000/1.000000/7.000000:u/0/11.000000/2.000000/12.000000/7.000000:s/0/11.000000/6.000000/12.000000/7.000000:w270/0/11.000000/2.000000/12.000000/7.000000:e90/0/11.000000/2.000000/12.000000/7.000000:d/0/11.000000/7.000000/12.000000/2.000000:n/0/12.000000/2.000000/11.000000/3.000000:R/0/270/0,box=12.000000/0.000000/2.000000:13.000000/1.000000/6.000000:u/0/12.000000/2.000000/13.000000/6.000000:s/0/12.000000/5.000000/13.000000/6.000000:w270/0/12.000000/2.000000/13.000000/6.000000:e90/0/12.000000/2.000000/13.000000/6.000000:d/0/12.000000/6.000000/13.000000/2.000000:n/0/13.000000/2.000000/12.000000/3.000000:R/0/270/0,box=10.000000/0.000000/3.000000:11.000000/1.000000/8.000000:u/0/10.000000/3.000000/11.000000/8.000000:s/0/10.000000/7.000000/11.000000/8.000000:w270/0/10.000000/3.000000/11.000000/8.000000:e90/0/10.000000/3.000000/11.000000/8.000000:d/0/10.000000/8.000000/11.000000/3.000000:n/0/11.000000/3.000000/10.000000/4.000000:R/0/270/0,box=13.000000/0.000000/3.000000:14.000000/1.000000/5.000000:u/0/13.000000/3.000000/14.000000/5.000000:s/0/13.000000/4.000000/14.000000/5.000000:w270/0/13.000000/3.000000/14.000000/5.000000:e90/0/13.000000/3.000000/14.000000/5.000000:d/0/13.000000/5.000000/14.000000/3.000000:n/0/14.000000/3.000000/13.000000/4.000000:R/0/270/0,box=9.000000/0.000000/4.000000:10.000000/1.000000/9.000000:u/0/9.000000/4.000000/10.000000/9.000000:s/0/9.000000/8.000000/10.000000/9.000000:w270/0/9.000000/4.000000/10.000000/9.000000:e90/0/9.000000/4.000000/10.000000/9.000000:d/0/9.000000/9.000000/10.000000/4.000000:n/0/10.000000/4.000000/9.000000/5.000000:R/0/270/0,box=8.000000/0.000000/5.000000:9.000000/1.000000/10.000000:u/0/8.000000/5.000000/9.000000/10.000000:s/0/8.000000/9.000000/9.000000/10.000000:w270/0/8.000000/5.000000/9.000000/10.000000:e90/0/8.000000/5.000000/9.000000/10.000000:d/0/8.000000/10.000000/9.000000/5.000000:n/0/9.000000/5.000000/8.000000/6.000000:R/0/270/0,box=7.000000/0.000000/6.000000:8.000000/1.000000/11.000000:u/0/7.000000/6.000000/8.000000/11.000000:s/0/7.000000/10.000000/8.000000/11.000000:w270/0/7.000000/6.000000/8.000000/11.000000:e90/0/7.000000/6.000000/8.000000/11.000000:d/0/7.000000/11.000000/8.000000/6.000000:n/0/8.000000/6.000000/7.000000/7.000000:R/0/270/0,box=6.000000/0.000000/7.000000:7.000000/1.000000/12.000000:u/0/6.000000/7.000000/7.000000/12.000000:s/0/6.000000/11.000000/7.000000/12.000000:w270/0/6.000000/7.000000/7.000000/12.000000:e90/0/6.000000/7.000000/7.000000/12.000000:d/0/6.000000/12.000000/7.000000/7.000000:n/0/7.000000/7.000000/6.000000/8.000000:R/0/270/0,box=5.000000/0.000000/8.000000:6.000000/1.000000/13.000000:u/0/5.000000/8.000000/6.000000/13.000000:s/0/5.000000/12.000000/6.000000/13.000000:w270/0/5.000000/8.000000/6.000000/13.000000:e90/0/5.000000/8.000000/6.000000/13.000000:d/0/5.000000/13.000000/6.000000/8.000000:n/0/6.000000/8.000000/5.000000/9.000000:R/0/270/0,box=4.000000/0.000000/9.000000:5.000000/1.000000/14.000000:u/0/4.000000/9.000000/5.000000/14.000000:s/0/4.000000/13.000000/5.000000/14.000000:w270/0/4.000000/9.000000/5.000000/14.000000:e90/0/4.000000/9.000000/5.000000/14.000000:d/0/4.000000/14.000000/5.000000/9.000000:n/0/5.000000/9.000000/4.000000/10.000000:R/0/270/0,box=3.000000/0.000000/10.000000:4.000000/1.000000/14.000000:u/0/3.000000/10.000000/4.000000/14.000000:s/0/3.000000/13.000000/4.000000/14.000000:w270/0/3.000000/10.000000/4.000000/14.000000:e90/0/3.000000/10.000000/4.000000/14.000000:d/0/3.000000/14.000000/4.000000/10.000000:n/0/4.000000/10.000000/3.000000/11.000000:R/0/270/0,box=2.000000/0.000000/11.000000:3.000000/1.000000/13.000000:u/0/2.000000/11.000000/3.000000/13.000000:s/0/2.000000/12.000000/3.000000/13.000000:w270/0/2.000000/11.000000/3.000000/13.000000:e90/0/2.000000/11.000000/3.000000/13.000000:d/0/2.000000/13.000000/3.000000/11.000000:n/0/3.000000/11.000000/2.000000/12.000000:R/0/270/0
|
|
||||||
modellist:id=%glow_stick,state=flipped:false,box=11.000000/0.000000/2.000000:12.000000/1.000000/7.000000:u/0/11.000000/2.000000/12.000000/7.000000:s/0/11.000000/6.000000/12.000000/7.000000:w270/0/11.000000/2.000000/12.000000/7.000000:e90/0/11.000000/2.000000/12.000000/7.000000:d/0/11.000000/7.000000/12.000000/2.000000:n/0/12.000000/2.000000/11.000000/3.000000,box=12.000000/0.000000/2.000000:13.000000/1.000000/6.000000:u/0/12.000000/2.000000/13.000000/6.000000:s/0/12.000000/5.000000/13.000000/6.000000:w270/0/12.000000/2.000000/13.000000/6.000000:e90/0/12.000000/2.000000/13.000000/6.000000:d/0/12.000000/6.000000/13.000000/2.000000:n/0/13.000000/2.000000/12.000000/3.000000,box=10.000000/0.000000/3.000000:11.000000/1.000000/8.000000:u/0/10.000000/3.000000/11.000000/8.000000:s/0/10.000000/7.000000/11.000000/8.000000:w270/0/10.000000/3.000000/11.000000/8.000000:e90/0/10.000000/3.000000/11.000000/8.000000:d/0/10.000000/8.000000/11.000000/3.000000:n/0/11.000000/3.000000/10.000000/4.000000,box=13.000000/0.000000/3.000000:14.000000/1.000000/5.000000:u/0/13.000000/3.000000/14.000000/5.000000:s/0/13.000000/4.000000/14.000000/5.000000:w270/0/13.000000/3.000000/14.000000/5.000000:e90/0/13.000000/3.000000/14.000000/5.000000:d/0/13.000000/5.000000/14.000000/3.000000:n/0/14.000000/3.000000/13.000000/4.000000,box=9.000000/0.000000/4.000000:10.000000/1.000000/9.000000:u/0/9.000000/4.000000/10.000000/9.000000:s/0/9.000000/8.000000/10.000000/9.000000:w270/0/9.000000/4.000000/10.000000/9.000000:e90/0/9.000000/4.000000/10.000000/9.000000:d/0/9.000000/9.000000/10.000000/4.000000:n/0/10.000000/4.000000/9.000000/5.000000,box=8.000000/0.000000/5.000000:9.000000/1.000000/10.000000:u/0/8.000000/5.000000/9.000000/10.000000:s/0/8.000000/9.000000/9.000000/10.000000:w270/0/8.000000/5.000000/9.000000/10.000000:e90/0/8.000000/5.000000/9.000000/10.000000:d/0/8.000000/10.000000/9.000000/5.000000:n/0/9.000000/5.000000/8.000000/6.000000,box=7.000000/0.000000/6.000000:8.000000/1.000000/11.000000:u/0/7.000000/6.000000/8.000000/11.000000:s/0/7.000000/10.000000/8.000000/11.000000:w270/0/7.000000/6.000000/8.000000/11.000000:e90/0/7.000000/6.000000/8.000000/11.000000:d/0/7.000000/11.000000/8.000000/6.000000:n/0/8.000000/6.000000/7.000000/7.000000,box=6.000000/0.000000/7.000000:7.000000/1.000000/12.000000:u/0/6.000000/7.000000/7.000000/12.000000:s/0/6.000000/11.000000/7.000000/12.000000:w270/0/6.000000/7.000000/7.000000/12.000000:e90/0/6.000000/7.000000/7.000000/12.000000:d/0/6.000000/12.000000/7.000000/7.000000:n/0/7.000000/7.000000/6.000000/8.000000,box=5.000000/0.000000/8.000000:6.000000/1.000000/13.000000:u/0/5.000000/8.000000/6.000000/13.000000:s/0/5.000000/12.000000/6.000000/13.000000:w270/0/5.000000/8.000000/6.000000/13.000000:e90/0/5.000000/8.000000/6.000000/13.000000:d/0/5.000000/13.000000/6.000000/8.000000:n/0/6.000000/8.000000/5.000000/9.000000,box=4.000000/0.000000/9.000000:5.000000/1.000000/14.000000:u/0/4.000000/9.000000/5.000000/14.000000:s/0/4.000000/13.000000/5.000000/14.000000:w270/0/4.000000/9.000000/5.000000/14.000000:e90/0/4.000000/9.000000/5.000000/14.000000:d/0/4.000000/14.000000/5.000000/9.000000:n/0/5.000000/9.000000/4.000000/10.000000,box=3.000000/0.000000/10.000000:4.000000/1.000000/14.000000:u/0/3.000000/10.000000/4.000000/14.000000:s/0/3.000000/13.000000/4.000000/14.000000:w270/0/3.000000/10.000000/4.000000/14.000000:e90/0/3.000000/10.000000/4.000000/14.000000:d/0/3.000000/14.000000/4.000000/10.000000:n/0/4.000000/10.000000/3.000000/11.000000,box=2.000000/0.000000/11.000000:3.000000/1.000000/13.000000:u/0/2.000000/11.000000/3.000000/13.000000:s/0/2.000000/12.000000/3.000000/13.000000:w270/0/2.000000/11.000000/3.000000/13.000000:e90/0/2.000000/11.000000/3.000000/13.000000:d/0/2.000000/13.000000/3.000000/11.000000:n/0/3.000000/11.000000/2.000000/12.000000
|
|
||||||
modellist:id=%rope,state=west:true/east:true/south:true/north:true,box=8.000000/0.000000/6.000000:8.000000/16.000000/10.000000/0.000000/-45.000000/0.000000/8.000000/0.500000/8.500000:u/0/0.000000/0.000000/0.000000/4.000000:s/0/0.000000/0.000000/0.000000/16.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000:d/0/0.000000/0.000000/0.000000/4.000000:n/0/0.000000/0.000000/0.000000/16.000000,box=8.000000/0.000000/6.500000:8.000000/16.000000/10.500000/0.000000/45.000000/0.000000/8.000000/0.500000/8.500000:u/0/0.000000/0.000000/0.000000/4.000000:s/0/0.000000/0.000000/0.000000/16.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000:d/0/0.000000/0.000000/0.000000/4.000000:n/0/0.000000/0.000000/0.000000/16.000000,box=8.000000/8.000000/0.000000:9.000000/14.000000/6.000000:s/0/2.000000/0.000000/3.000000/6.000000:w/0/0.000000/1.000000/6.000000/7.000000:e/0/6.000000/1.000000/0.000000/7.000000:n/0/4.000000/3.000000/5.000000/9.000000,box=8.000000/8.000000/0.000000:9.000000/14.000000/6.000000:s/0/2.000000/0.000000/3.000000/6.000000:w/0/0.000000/1.000000/6.000000/7.000000:e/0/6.000000/1.000000/0.000000/7.000000:n/0/4.000000/3.000000/5.000000/9.000000:R/0/90/0,box=8.000000/8.000000/0.000000:9.000000/14.000000/6.000000:s/0/2.000000/0.000000/3.000000/6.000000:w/0/0.000000/1.000000/6.000000/7.000000:e/0/6.000000/1.000000/0.000000/7.000000:n/0/4.000000/3.000000/5.000000/9.000000:R/0/180/0,box=8.000000/8.000000/0.000000:9.000000/14.000000/6.000000:s/0/2.000000/0.000000/3.000000/6.000000:w/0/0.000000/1.000000/6.000000/7.000000:e/0/6.000000/1.000000/0.000000/7.000000:n/0/4.000000/3.000000/5.000000/9.000000:R/0/270/0
|
|
||||||
modellist:id=%rope,state=west:false/east:true/south:true/north:true,box=8.000000/0.000000/6.000000:8.000000/16.000000/10.000000/0.000000/-45.000000/0.000000/8.000000/0.500000/8.500000:u/0/0.000000/0.000000/0.000000/4.000000:s/0/0.000000/0.000000/0.000000/16.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000:d/0/0.000000/0.000000/0.000000/4.000000:n/0/0.000000/0.000000/0.000000/16.000000,box=8.000000/0.000000/6.500000:8.000000/16.000000/10.500000/0.000000/45.000000/0.000000/8.000000/0.500000/8.500000:u/0/0.000000/0.000000/0.000000/4.000000:s/0/0.000000/0.000000/0.000000/16.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000:d/0/0.000000/0.000000/0.000000/4.000000:n/0/0.000000/0.000000/0.000000/16.000000,box=8.000000/8.000000/0.000000:9.000000/14.000000/6.000000:s/0/2.000000/0.000000/3.000000/6.000000:w/0/0.000000/1.000000/6.000000/7.000000:e/0/6.000000/1.000000/0.000000/7.000000:n/0/4.000000/3.000000/5.000000/9.000000,box=8.000000/8.000000/0.000000:9.000000/14.000000/6.000000:s/0/2.000000/0.000000/3.000000/6.000000:w/0/0.000000/1.000000/6.000000/7.000000:e/0/6.000000/1.000000/0.000000/7.000000:n/0/4.000000/3.000000/5.000000/9.000000:R/0/90/0,box=8.000000/8.000000/0.000000:9.000000/14.000000/6.000000:s/0/2.000000/0.000000/3.000000/6.000000:w/0/0.000000/1.000000/6.000000/7.000000:e/0/6.000000/1.000000/0.000000/7.000000:n/0/4.000000/3.000000/5.000000/9.000000:R/0/180/0
|
|
||||||
modellist:id=%rope,state=west:true/east:true/south:false/north:true,box=8.000000/0.000000/6.000000:8.000000/16.000000/10.000000/0.000000/-45.000000/0.000000/8.000000/0.500000/8.500000:u/0/0.000000/0.000000/0.000000/4.000000:s/0/0.000000/0.000000/0.000000/16.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000:d/0/0.000000/0.000000/0.000000/4.000000:n/0/0.000000/0.000000/0.000000/16.000000,box=8.000000/0.000000/6.500000:8.000000/16.000000/10.500000/0.000000/45.000000/0.000000/8.000000/0.500000/8.500000:u/0/0.000000/0.000000/0.000000/4.000000:s/0/0.000000/0.000000/0.000000/16.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000:d/0/0.000000/0.000000/0.000000/4.000000:n/0/0.000000/0.000000/0.000000/16.000000,box=8.000000/8.000000/0.000000:9.000000/14.000000/6.000000:s/0/2.000000/0.000000/3.000000/6.000000:w/0/0.000000/1.000000/6.000000/7.000000:e/0/6.000000/1.000000/0.000000/7.000000:n/0/4.000000/3.000000/5.000000/9.000000,box=8.000000/8.000000/0.000000:9.000000/14.000000/6.000000:s/0/2.000000/0.000000/3.000000/6.000000:w/0/0.000000/1.000000/6.000000/7.000000:e/0/6.000000/1.000000/0.000000/7.000000:n/0/4.000000/3.000000/5.000000/9.000000:R/0/90/0,box=8.000000/8.000000/0.000000:9.000000/14.000000/6.000000:s/0/2.000000/0.000000/3.000000/6.000000:w/0/0.000000/1.000000/6.000000/7.000000:e/0/6.000000/1.000000/0.000000/7.000000:n/0/4.000000/3.000000/5.000000/9.000000:R/0/270/0
|
|
||||||
modellist:id=%rope,state=west:false/east:true/south:false/north:true,box=8.000000/0.000000/6.000000:8.000000/16.000000/10.000000/0.000000/-45.000000/0.000000/8.000000/0.500000/8.500000:u/0/0.000000/0.000000/0.000000/4.000000:s/0/0.000000/0.000000/0.000000/16.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000:d/0/0.000000/0.000000/0.000000/4.000000:n/0/0.000000/0.000000/0.000000/16.000000,box=8.000000/0.000000/6.500000:8.000000/16.000000/10.500000/0.000000/45.000000/0.000000/8.000000/0.500000/8.500000:u/0/0.000000/0.000000/0.000000/4.000000:s/0/0.000000/0.000000/0.000000/16.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000:d/0/0.000000/0.000000/0.000000/4.000000:n/0/0.000000/0.000000/0.000000/16.000000,box=8.000000/8.000000/0.000000:9.000000/14.000000/6.000000:s/0/2.000000/0.000000/3.000000/6.000000:w/0/0.000000/1.000000/6.000000/7.000000:e/0/6.000000/1.000000/0.000000/7.000000:n/0/4.000000/3.000000/5.000000/9.000000,box=8.000000/8.000000/0.000000:9.000000/14.000000/6.000000:s/0/2.000000/0.000000/3.000000/6.000000:w/0/0.000000/1.000000/6.000000/7.000000:e/0/6.000000/1.000000/0.000000/7.000000:n/0/4.000000/3.000000/5.000000/9.000000:R/0/90/0
|
|
||||||
modellist:id=%rope,state=west:true/east:true/south:true/north:false,box=8.000000/0.000000/6.000000:8.000000/16.000000/10.000000/0.000000/-45.000000/0.000000/8.000000/0.500000/8.500000:u/0/0.000000/0.000000/0.000000/4.000000:s/0/0.000000/0.000000/0.000000/16.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000:d/0/0.000000/0.000000/0.000000/4.000000:n/0/0.000000/0.000000/0.000000/16.000000,box=8.000000/0.000000/6.500000:8.000000/16.000000/10.500000/0.000000/45.000000/0.000000/8.000000/0.500000/8.500000:u/0/0.000000/0.000000/0.000000/4.000000:s/0/0.000000/0.000000/0.000000/16.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000:d/0/0.000000/0.000000/0.000000/4.000000:n/0/0.000000/0.000000/0.000000/16.000000,box=8.000000/8.000000/0.000000:9.000000/14.000000/6.000000:s/0/2.000000/0.000000/3.000000/6.000000:w/0/0.000000/1.000000/6.000000/7.000000:e/0/6.000000/1.000000/0.000000/7.000000:n/0/4.000000/3.000000/5.000000/9.000000:R/0/90/0,box=8.000000/8.000000/0.000000:9.000000/14.000000/6.000000:s/0/2.000000/0.000000/3.000000/6.000000:w/0/0.000000/1.000000/6.000000/7.000000:e/0/6.000000/1.000000/0.000000/7.000000:n/0/4.000000/3.000000/5.000000/9.000000:R/0/180/0,box=8.000000/8.000000/0.000000:9.000000/14.000000/6.000000:s/0/2.000000/0.000000/3.000000/6.000000:w/0/0.000000/1.000000/6.000000/7.000000:e/0/6.000000/1.000000/0.000000/7.000000:n/0/4.000000/3.000000/5.000000/9.000000:R/0/270/0
|
|
||||||
modellist:id=%rope,state=west:false/east:true/south:true/north:false,box=8.000000/0.000000/6.000000:8.000000/16.000000/10.000000/0.000000/-45.000000/0.000000/8.000000/0.500000/8.500000:u/0/0.000000/0.000000/0.000000/4.000000:s/0/0.000000/0.000000/0.000000/16.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000:d/0/0.000000/0.000000/0.000000/4.000000:n/0/0.000000/0.000000/0.000000/16.000000,box=8.000000/0.000000/6.500000:8.000000/16.000000/10.500000/0.000000/45.000000/0.000000/8.000000/0.500000/8.500000:u/0/0.000000/0.000000/0.000000/4.000000:s/0/0.000000/0.000000/0.000000/16.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000:d/0/0.000000/0.000000/0.000000/4.000000:n/0/0.000000/0.000000/0.000000/16.000000,box=8.000000/8.000000/0.000000:9.000000/14.000000/6.000000:s/0/2.000000/0.000000/3.000000/6.000000:w/0/0.000000/1.000000/6.000000/7.000000:e/0/6.000000/1.000000/0.000000/7.000000:n/0/4.000000/3.000000/5.000000/9.000000:R/0/90/0,box=8.000000/8.000000/0.000000:9.000000/14.000000/6.000000:s/0/2.000000/0.000000/3.000000/6.000000:w/0/0.000000/1.000000/6.000000/7.000000:e/0/6.000000/1.000000/0.000000/7.000000:n/0/4.000000/3.000000/5.000000/9.000000:R/0/180/0
|
|
||||||
modellist:id=%rope,state=west:true/east:true/south:false/north:false,box=8.000000/0.000000/6.000000:8.000000/16.000000/10.000000/0.000000/-45.000000/0.000000/8.000000/0.500000/8.500000:u/0/0.000000/0.000000/0.000000/4.000000:s/0/0.000000/0.000000/0.000000/16.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000:d/0/0.000000/0.000000/0.000000/4.000000:n/0/0.000000/0.000000/0.000000/16.000000,box=8.000000/0.000000/6.500000:8.000000/16.000000/10.500000/0.000000/45.000000/0.000000/8.000000/0.500000/8.500000:u/0/0.000000/0.000000/0.000000/4.000000:s/0/0.000000/0.000000/0.000000/16.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000:d/0/0.000000/0.000000/0.000000/4.000000:n/0/0.000000/0.000000/0.000000/16.000000,box=8.000000/8.000000/0.000000:9.000000/14.000000/6.000000:s/0/2.000000/0.000000/3.000000/6.000000:w/0/0.000000/1.000000/6.000000/7.000000:e/0/6.000000/1.000000/0.000000/7.000000:n/0/4.000000/3.000000/5.000000/9.000000:R/0/90/0,box=8.000000/8.000000/0.000000:9.000000/14.000000/6.000000:s/0/2.000000/0.000000/3.000000/6.000000:w/0/0.000000/1.000000/6.000000/7.000000:e/0/6.000000/1.000000/0.000000/7.000000:n/0/4.000000/3.000000/5.000000/9.000000:R/0/270/0
|
|
||||||
modellist:id=%rope,state=west:false/east:true/south:false/north:false,box=8.000000/0.000000/6.000000:8.000000/16.000000/10.000000/0.000000/-45.000000/0.000000/8.000000/0.500000/8.500000:u/0/0.000000/0.000000/0.000000/4.000000:s/0/0.000000/0.000000/0.000000/16.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000:d/0/0.000000/0.000000/0.000000/4.000000:n/0/0.000000/0.000000/0.000000/16.000000,box=8.000000/0.000000/6.500000:8.000000/16.000000/10.500000/0.000000/45.000000/0.000000/8.000000/0.500000/8.500000:u/0/0.000000/0.000000/0.000000/4.000000:s/0/0.000000/0.000000/0.000000/16.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000:d/0/0.000000/0.000000/0.000000/4.000000:n/0/0.000000/0.000000/0.000000/16.000000,box=8.000000/8.000000/0.000000:9.000000/14.000000/6.000000:s/0/2.000000/0.000000/3.000000/6.000000:w/0/0.000000/1.000000/6.000000/7.000000:e/0/6.000000/1.000000/0.000000/7.000000:n/0/4.000000/3.000000/5.000000/9.000000:R/0/90/0
|
|
||||||
modellist:id=%rope,state=west:true/east:false/south:true/north:true,box=8.000000/0.000000/6.000000:8.000000/16.000000/10.000000/0.000000/-45.000000/0.000000/8.000000/0.500000/8.500000:u/0/0.000000/0.000000/0.000000/4.000000:s/0/0.000000/0.000000/0.000000/16.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000:d/0/0.000000/0.000000/0.000000/4.000000:n/0/0.000000/0.000000/0.000000/16.000000,box=8.000000/0.000000/6.500000:8.000000/16.000000/10.500000/0.000000/45.000000/0.000000/8.000000/0.500000/8.500000:u/0/0.000000/0.000000/0.000000/4.000000:s/0/0.000000/0.000000/0.000000/16.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000:d/0/0.000000/0.000000/0.000000/4.000000:n/0/0.000000/0.000000/0.000000/16.000000,box=8.000000/8.000000/0.000000:9.000000/14.000000/6.000000:s/0/2.000000/0.000000/3.000000/6.000000:w/0/0.000000/1.000000/6.000000/7.000000:e/0/6.000000/1.000000/0.000000/7.000000:n/0/4.000000/3.000000/5.000000/9.000000,box=8.000000/8.000000/0.000000:9.000000/14.000000/6.000000:s/0/2.000000/0.000000/3.000000/6.000000:w/0/0.000000/1.000000/6.000000/7.000000:e/0/6.000000/1.000000/0.000000/7.000000:n/0/4.000000/3.000000/5.000000/9.000000:R/0/180/0,box=8.000000/8.000000/0.000000:9.000000/14.000000/6.000000:s/0/2.000000/0.000000/3.000000/6.000000:w/0/0.000000/1.000000/6.000000/7.000000:e/0/6.000000/1.000000/0.000000/7.000000:n/0/4.000000/3.000000/5.000000/9.000000:R/0/270/0
|
|
||||||
modellist:id=%rope,state=west:false/east:false/south:true/north:true,box=8.000000/0.000000/6.000000:8.000000/16.000000/10.000000/0.000000/-45.000000/0.000000/8.000000/0.500000/8.500000:u/0/0.000000/0.000000/0.000000/4.000000:s/0/0.000000/0.000000/0.000000/16.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000:d/0/0.000000/0.000000/0.000000/4.000000:n/0/0.000000/0.000000/0.000000/16.000000,box=8.000000/0.000000/6.500000:8.000000/16.000000/10.500000/0.000000/45.000000/0.000000/8.000000/0.500000/8.500000:u/0/0.000000/0.000000/0.000000/4.000000:s/0/0.000000/0.000000/0.000000/16.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000:d/0/0.000000/0.000000/0.000000/4.000000:n/0/0.000000/0.000000/0.000000/16.000000,box=8.000000/8.000000/0.000000:9.000000/14.000000/6.000000:s/0/2.000000/0.000000/3.000000/6.000000:w/0/0.000000/1.000000/6.000000/7.000000:e/0/6.000000/1.000000/0.000000/7.000000:n/0/4.000000/3.000000/5.000000/9.000000,box=8.000000/8.000000/0.000000:9.000000/14.000000/6.000000:s/0/2.000000/0.000000/3.000000/6.000000:w/0/0.000000/1.000000/6.000000/7.000000:e/0/6.000000/1.000000/0.000000/7.000000:n/0/4.000000/3.000000/5.000000/9.000000:R/0/180/0
|
|
||||||
modellist:id=%rope,state=west:true/east:false/south:false/north:true,box=8.000000/0.000000/6.000000:8.000000/16.000000/10.000000/0.000000/-45.000000/0.000000/8.000000/0.500000/8.500000:u/0/0.000000/0.000000/0.000000/4.000000:s/0/0.000000/0.000000/0.000000/16.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000:d/0/0.000000/0.000000/0.000000/4.000000:n/0/0.000000/0.000000/0.000000/16.000000,box=8.000000/0.000000/6.500000:8.000000/16.000000/10.500000/0.000000/45.000000/0.000000/8.000000/0.500000/8.500000:u/0/0.000000/0.000000/0.000000/4.000000:s/0/0.000000/0.000000/0.000000/16.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000:d/0/0.000000/0.000000/0.000000/4.000000:n/0/0.000000/0.000000/0.000000/16.000000,box=8.000000/8.000000/0.000000:9.000000/14.000000/6.000000:s/0/2.000000/0.000000/3.000000/6.000000:w/0/0.000000/1.000000/6.000000/7.000000:e/0/6.000000/1.000000/0.000000/7.000000:n/0/4.000000/3.000000/5.000000/9.000000,box=8.000000/8.000000/0.000000:9.000000/14.000000/6.000000:s/0/2.000000/0.000000/3.000000/6.000000:w/0/0.000000/1.000000/6.000000/7.000000:e/0/6.000000/1.000000/0.000000/7.000000:n/0/4.000000/3.000000/5.000000/9.000000:R/0/270/0
|
|
||||||
modellist:id=%rope,state=west:false/east:false/south:false/north:true,box=8.000000/0.000000/6.000000:8.000000/16.000000/10.000000/0.000000/-45.000000/0.000000/8.000000/0.500000/8.500000:u/0/0.000000/0.000000/0.000000/4.000000:s/0/0.000000/0.000000/0.000000/16.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000:d/0/0.000000/0.000000/0.000000/4.000000:n/0/0.000000/0.000000/0.000000/16.000000,box=8.000000/0.000000/6.500000:8.000000/16.000000/10.500000/0.000000/45.000000/0.000000/8.000000/0.500000/8.500000:u/0/0.000000/0.000000/0.000000/4.000000:s/0/0.000000/0.000000/0.000000/16.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000:d/0/0.000000/0.000000/0.000000/4.000000:n/0/0.000000/0.000000/0.000000/16.000000,box=8.000000/8.000000/0.000000:9.000000/14.000000/6.000000:s/0/2.000000/0.000000/3.000000/6.000000:w/0/0.000000/1.000000/6.000000/7.000000:e/0/6.000000/1.000000/0.000000/7.000000:n/0/4.000000/3.000000/5.000000/9.000000
|
|
||||||
modellist:id=%rope,state=west:true/east:false/south:true/north:false,box=8.000000/0.000000/6.000000:8.000000/16.000000/10.000000/0.000000/-45.000000/0.000000/8.000000/0.500000/8.500000:u/0/0.000000/0.000000/0.000000/4.000000:s/0/0.000000/0.000000/0.000000/16.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000:d/0/0.000000/0.000000/0.000000/4.000000:n/0/0.000000/0.000000/0.000000/16.000000,box=8.000000/0.000000/6.500000:8.000000/16.000000/10.500000/0.000000/45.000000/0.000000/8.000000/0.500000/8.500000:u/0/0.000000/0.000000/0.000000/4.000000:s/0/0.000000/0.000000/0.000000/16.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000:d/0/0.000000/0.000000/0.000000/4.000000:n/0/0.000000/0.000000/0.000000/16.000000,box=8.000000/8.000000/0.000000:9.000000/14.000000/6.000000:s/0/2.000000/0.000000/3.000000/6.000000:w/0/0.000000/1.000000/6.000000/7.000000:e/0/6.000000/1.000000/0.000000/7.000000:n/0/4.000000/3.000000/5.000000/9.000000:R/0/180/0,box=8.000000/8.000000/0.000000:9.000000/14.000000/6.000000:s/0/2.000000/0.000000/3.000000/6.000000:w/0/0.000000/1.000000/6.000000/7.000000:e/0/6.000000/1.000000/0.000000/7.000000:n/0/4.000000/3.000000/5.000000/9.000000:R/0/270/0
|
|
||||||
modellist:id=%rope,state=west:false/east:false/south:true/north:false,box=8.000000/0.000000/6.000000:8.000000/16.000000/10.000000/0.000000/-45.000000/0.000000/8.000000/0.500000/8.500000:u/0/0.000000/0.000000/0.000000/4.000000:s/0/0.000000/0.000000/0.000000/16.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000:d/0/0.000000/0.000000/0.000000/4.000000:n/0/0.000000/0.000000/0.000000/16.000000,box=8.000000/0.000000/6.500000:8.000000/16.000000/10.500000/0.000000/45.000000/0.000000/8.000000/0.500000/8.500000:u/0/0.000000/0.000000/0.000000/4.000000:s/0/0.000000/0.000000/0.000000/16.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000:d/0/0.000000/0.000000/0.000000/4.000000:n/0/0.000000/0.000000/0.000000/16.000000,box=8.000000/8.000000/0.000000:9.000000/14.000000/6.000000:s/0/2.000000/0.000000/3.000000/6.000000:w/0/0.000000/1.000000/6.000000/7.000000:e/0/6.000000/1.000000/0.000000/7.000000:n/0/4.000000/3.000000/5.000000/9.000000:R/0/180/0
|
|
||||||
modellist:id=%rope,state=west:true/east:false/south:false/north:false,box=8.000000/0.000000/6.000000:8.000000/16.000000/10.000000/0.000000/-45.000000/0.000000/8.000000/0.500000/8.500000:u/0/0.000000/0.000000/0.000000/4.000000:s/0/0.000000/0.000000/0.000000/16.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000:d/0/0.000000/0.000000/0.000000/4.000000:n/0/0.000000/0.000000/0.000000/16.000000,box=8.000000/0.000000/6.500000:8.000000/16.000000/10.500000/0.000000/45.000000/0.000000/8.000000/0.500000/8.500000:u/0/0.000000/0.000000/0.000000/4.000000:s/0/0.000000/0.000000/0.000000/16.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000:d/0/0.000000/0.000000/0.000000/4.000000:n/0/0.000000/0.000000/0.000000/16.000000,box=8.000000/8.000000/0.000000:9.000000/14.000000/6.000000:s/0/2.000000/0.000000/3.000000/6.000000:w/0/0.000000/1.000000/6.000000/7.000000:e/0/6.000000/1.000000/0.000000/7.000000:n/0/4.000000/3.000000/5.000000/9.000000:R/0/270/0
|
|
||||||
modellist:id=%rope,state=west:false/east:false/south:false/north:false,box=8.000000/0.000000/6.000000:8.000000/16.000000/10.000000/0.000000/-45.000000/0.000000/8.000000/0.500000/8.500000:u/0/0.000000/0.000000/0.000000/4.000000:s/0/0.000000/0.000000/0.000000/16.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000:d/0/0.000000/0.000000/0.000000/4.000000:n/0/0.000000/0.000000/0.000000/16.000000,box=8.000000/0.000000/6.500000:8.000000/16.000000/10.500000/0.000000/45.000000/0.000000/8.000000/0.500000/8.500000:u/0/0.000000/0.000000/0.000000/4.000000:s/0/0.000000/0.000000/0.000000/16.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000:d/0/0.000000/0.000000/0.000000/4.000000:n/0/0.000000/0.000000/0.000000/16.000000
|
|
||||||
modellist:id=%copper_patina,state=west:up/east:up/south:up/north:up,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/2/0.000000/0.000000/16.000000/8.000000:d/2/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/2/0.000000/8.000000/16.000000/16.000000:d/2/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/3/0.000000/8.000000/16.000000/16.000000:d/3/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/3/0.000000/0.000000/16.000000/8.000000:d/3/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%copper_patina,state=west:side/east:up/south:up/north:up,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/2/0.000000/0.000000/16.000000/8.000000:d/2/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/2/0.000000/8.000000/16.000000/16.000000:d/2/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/3/0.000000/8.000000/16.000000/16.000000:d/3/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/3/0.000000/0.000000/16.000000/8.000000:d/3/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%copper_patina,state=west:none/east:up/south:up/north:up,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/2/0.000000/0.000000/16.000000/8.000000:d/2/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/2/0.000000/8.000000/16.000000/16.000000:d/2/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/3/0.000000/8.000000/16.000000/16.000000:d/3/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%copper_patina,state=west:up/east:up/south:side/north:up,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/2/0.000000/0.000000/16.000000/8.000000:d/2/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/2/0.000000/8.000000/16.000000/16.000000:d/2/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/3/0.000000/8.000000/16.000000/16.000000:d/3/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/3/0.000000/0.000000/16.000000/8.000000:d/3/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%copper_patina,state=west:side/east:up/south:side/north:up,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/2/0.000000/0.000000/16.000000/8.000000:d/2/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/2/0.000000/8.000000/16.000000/16.000000:d/2/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/3/0.000000/8.000000/16.000000/16.000000:d/3/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/3/0.000000/0.000000/16.000000/8.000000:d/3/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%copper_patina,state=west:none/east:up/south:side/north:up,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/2/0.000000/0.000000/16.000000/8.000000:d/2/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/2/0.000000/8.000000/16.000000/16.000000:d/2/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/3/0.000000/8.000000/16.000000/16.000000:d/3/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%copper_patina,state=west:up/east:up/south:none/north:up,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/2/0.000000/0.000000/16.000000/8.000000:d/2/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/3/0.000000/8.000000/16.000000/16.000000:d/3/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/3/0.000000/0.000000/16.000000/8.000000:d/3/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%copper_patina,state=west:side/east:up/south:none/north:up,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/2/0.000000/0.000000/16.000000/8.000000:d/2/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/3/0.000000/8.000000/16.000000/16.000000:d/3/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/3/0.000000/0.000000/16.000000/8.000000:d/3/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%copper_patina,state=west:none/east:up/south:none/north:up,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/2/0.000000/0.000000/16.000000/8.000000:d/2/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/3/0.000000/8.000000/16.000000/16.000000:d/3/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%copper_patina,state=west:up/east:up/south:up/north:side,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/2/0.000000/0.000000/16.000000/8.000000:d/2/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/2/0.000000/8.000000/16.000000/16.000000:d/2/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/3/0.000000/8.000000/16.000000/16.000000:d/3/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/3/0.000000/0.000000/16.000000/8.000000:d/3/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%copper_patina,state=west:side/east:up/south:up/north:side,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/2/0.000000/0.000000/16.000000/8.000000:d/2/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/2/0.000000/8.000000/16.000000/16.000000:d/2/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/3/0.000000/8.000000/16.000000/16.000000:d/3/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/3/0.000000/0.000000/16.000000/8.000000:d/3/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%copper_patina,state=west:none/east:up/south:up/north:side,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/2/0.000000/0.000000/16.000000/8.000000:d/2/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/2/0.000000/8.000000/16.000000/16.000000:d/2/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/3/0.000000/8.000000/16.000000/16.000000:d/3/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%copper_patina,state=west:up/east:up/south:side/north:side,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/2/0.000000/0.000000/16.000000/8.000000:d/2/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/2/0.000000/8.000000/16.000000/16.000000:d/2/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/3/0.000000/8.000000/16.000000/16.000000:d/3/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/3/0.000000/0.000000/16.000000/8.000000:d/3/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%copper_patina,state=west:side/east:up/south:side/north:side,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/2/0.000000/0.000000/16.000000/8.000000:d/2/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/2/0.000000/8.000000/16.000000/16.000000:d/2/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/3/0.000000/8.000000/16.000000/16.000000:d/3/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/3/0.000000/0.000000/16.000000/8.000000:d/3/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%copper_patina,state=west:none/east:up/south:side/north:side,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/2/0.000000/0.000000/16.000000/8.000000:d/2/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/2/0.000000/8.000000/16.000000/16.000000:d/2/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/3/0.000000/8.000000/16.000000/16.000000:d/3/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%copper_patina,state=west:up/east:up/south:none/north:side,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/2/0.000000/0.000000/16.000000/8.000000:d/2/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/3/0.000000/8.000000/16.000000/16.000000:d/3/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/3/0.000000/0.000000/16.000000/8.000000:d/3/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%copper_patina,state=west:side/east:up/south:none/north:side,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/2/0.000000/0.000000/16.000000/8.000000:d/2/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/3/0.000000/8.000000/16.000000/16.000000:d/3/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/3/0.000000/0.000000/16.000000/8.000000:d/3/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%copper_patina,state=west:none/east:up/south:none/north:side,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/2/0.000000/0.000000/16.000000/8.000000:d/2/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/3/0.000000/8.000000/16.000000/16.000000:d/3/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%copper_patina,state=west:up/east:up/south:up/north:none,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/2/0.000000/8.000000/16.000000/16.000000:d/2/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/3/0.000000/8.000000/16.000000/16.000000:d/3/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/3/0.000000/0.000000/16.000000/8.000000:d/3/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%copper_patina,state=west:side/east:up/south:up/north:none,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/2/0.000000/8.000000/16.000000/16.000000:d/2/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/3/0.000000/8.000000/16.000000/16.000000:d/3/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/3/0.000000/0.000000/16.000000/8.000000:d/3/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%copper_patina,state=west:none/east:up/south:up/north:none,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/2/0.000000/8.000000/16.000000/16.000000:d/2/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/3/0.000000/8.000000/16.000000/16.000000:d/3/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%copper_patina,state=west:up/east:up/south:side/north:none,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/2/0.000000/8.000000/16.000000/16.000000:d/2/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/3/0.000000/8.000000/16.000000/16.000000:d/3/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/3/0.000000/0.000000/16.000000/8.000000:d/3/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%copper_patina,state=west:side/east:up/south:side/north:none,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/2/0.000000/8.000000/16.000000/16.000000:d/2/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/3/0.000000/8.000000/16.000000/16.000000:d/3/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/3/0.000000/0.000000/16.000000/8.000000:d/3/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%copper_patina,state=west:none/east:up/south:side/north:none,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/2/0.000000/8.000000/16.000000/16.000000:d/2/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/3/0.000000/8.000000/16.000000/16.000000:d/3/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%copper_patina,state=west:up/east:up/south:none/north:none,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%copper_patina,state=west:side/east:up/south:none/north:none,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%copper_patina,state=west:none/east:up/south:none/north:none,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%copper_patina,state=west:up/east:side/south:up/north:up,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/2/0.000000/0.000000/16.000000/8.000000:d/2/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/2/0.000000/8.000000/16.000000/16.000000:d/2/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/3/0.000000/8.000000/16.000000/16.000000:d/3/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/3/0.000000/0.000000/16.000000/8.000000:d/3/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%copper_patina,state=west:side/east:side/south:up/north:up,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/2/0.000000/0.000000/16.000000/8.000000:d/2/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/2/0.000000/8.000000/16.000000/16.000000:d/2/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/3/0.000000/8.000000/16.000000/16.000000:d/3/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/3/0.000000/0.000000/16.000000/8.000000:d/3/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%copper_patina,state=west:none/east:side/south:up/north:up,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/2/0.000000/0.000000/16.000000/8.000000:d/2/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/2/0.000000/8.000000/16.000000/16.000000:d/2/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/3/0.000000/8.000000/16.000000/16.000000:d/3/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%copper_patina,state=west:up/east:side/south:side/north:up,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/2/0.000000/0.000000/16.000000/8.000000:d/2/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/2/0.000000/8.000000/16.000000/16.000000:d/2/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/3/0.000000/8.000000/16.000000/16.000000:d/3/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/3/0.000000/0.000000/16.000000/8.000000:d/3/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%copper_patina,state=west:side/east:side/south:side/north:up,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/2/0.000000/0.000000/16.000000/8.000000:d/2/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/2/0.000000/8.000000/16.000000/16.000000:d/2/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/3/0.000000/8.000000/16.000000/16.000000:d/3/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/3/0.000000/0.000000/16.000000/8.000000:d/3/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000
|
|
||||||
modellist:id=%copper_patina,state=west:none/east:side/south:side/north:up,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/2/0.000000/0.000000/16.000000/8.000000:d/2/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/2/0.000000/8.000000/16.000000/16.000000:d/2/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/3/0.000000/8.000000/16.000000/16.000000:d/3/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000
|
|
||||||
modellist:id=%copper_patina,state=west:up/east:side/south:none/north:up,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/2/0.000000/0.000000/16.000000/8.000000:d/2/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/3/0.000000/8.000000/16.000000/16.000000:d/3/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/3/0.000000/0.000000/16.000000/8.000000:d/3/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%copper_patina,state=west:side/east:side/south:none/north:up,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/2/0.000000/0.000000/16.000000/8.000000:d/2/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/3/0.000000/8.000000/16.000000/16.000000:d/3/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/3/0.000000/0.000000/16.000000/8.000000:d/3/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000
|
|
||||||
modellist:id=%copper_patina,state=west:none/east:side/south:none/north:up,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/2/0.000000/0.000000/16.000000/8.000000:d/2/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/3/0.000000/8.000000/16.000000/16.000000:d/3/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000
|
|
||||||
modellist:id=%copper_patina,state=west:up/east:side/south:up/north:side,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/2/0.000000/0.000000/16.000000/8.000000:d/2/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/2/0.000000/8.000000/16.000000/16.000000:d/2/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/3/0.000000/8.000000/16.000000/16.000000:d/3/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/3/0.000000/0.000000/16.000000/8.000000:d/3/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%copper_patina,state=west:side/east:side/south:up/north:side,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/2/0.000000/0.000000/16.000000/8.000000:d/2/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/2/0.000000/8.000000/16.000000/16.000000:d/2/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/3/0.000000/8.000000/16.000000/16.000000:d/3/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/3/0.000000/0.000000/16.000000/8.000000:d/3/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%copper_patina,state=west:none/east:side/south:up/north:side,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/2/0.000000/0.000000/16.000000/8.000000:d/2/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/2/0.000000/8.000000/16.000000/16.000000:d/2/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/3/0.000000/8.000000/16.000000/16.000000:d/3/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%copper_patina,state=west:up/east:side/south:side/north:side,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/2/0.000000/0.000000/16.000000/8.000000:d/2/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/2/0.000000/8.000000/16.000000/16.000000:d/2/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/3/0.000000/8.000000/16.000000/16.000000:d/3/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/3/0.000000/0.000000/16.000000/8.000000:d/3/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%copper_patina,state=west:side/east:side/south:side/north:side,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/2/0.000000/0.000000/16.000000/8.000000:d/2/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/2/0.000000/8.000000/16.000000/16.000000:d/2/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/3/0.000000/8.000000/16.000000/16.000000:d/3/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/3/0.000000/0.000000/16.000000/8.000000:d/3/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000:R/0/270/0
|
|
||||||
modellist:id=%copper_patina,state=west:none/east:side/south:side/north:side,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/2/0.000000/0.000000/16.000000/8.000000:d/2/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/2/0.000000/8.000000/16.000000/16.000000:d/2/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/3/0.000000/8.000000/16.000000/16.000000:d/3/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000:R/0/270/0
|
|
||||||
modellist:id=%copper_patina,state=west:up/east:side/south:none/north:side,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/2/0.000000/0.000000/16.000000/8.000000:d/2/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/3/0.000000/8.000000/16.000000/16.000000:d/3/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/3/0.000000/0.000000/16.000000/8.000000:d/3/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%copper_patina,state=west:side/east:side/south:none/north:side,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/2/0.000000/0.000000/16.000000/8.000000:d/2/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/3/0.000000/8.000000/16.000000/16.000000:d/3/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/3/0.000000/0.000000/16.000000/8.000000:d/3/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000:R/0/270/0
|
|
||||||
modellist:id=%copper_patina,state=west:none/east:side/south:none/north:side,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/2/0.000000/0.000000/16.000000/8.000000:d/2/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/3/0.000000/8.000000/16.000000/16.000000:d/3/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000:R/0/270/0
|
|
||||||
modellist:id=%copper_patina,state=west:up/east:side/south:up/north:none,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/2/0.000000/8.000000/16.000000/16.000000:d/2/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/3/0.000000/8.000000/16.000000/16.000000:d/3/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/3/0.000000/0.000000/16.000000/8.000000:d/3/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%copper_patina,state=west:side/east:side/south:up/north:none,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/2/0.000000/8.000000/16.000000/16.000000:d/2/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/3/0.000000/8.000000/16.000000/16.000000:d/3/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/3/0.000000/0.000000/16.000000/8.000000:d/3/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%copper_patina,state=west:none/east:side/south:up/north:none,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/2/0.000000/8.000000/16.000000/16.000000:d/2/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/3/0.000000/8.000000/16.000000/16.000000:d/3/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%copper_patina,state=west:up/east:side/south:side/north:none,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/2/0.000000/8.000000/16.000000/16.000000:d/2/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/3/0.000000/8.000000/16.000000/16.000000:d/3/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/3/0.000000/0.000000/16.000000/8.000000:d/3/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%copper_patina,state=west:side/east:side/south:side/north:none,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/2/0.000000/8.000000/16.000000/16.000000:d/2/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/3/0.000000/8.000000/16.000000/16.000000:d/3/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/3/0.000000/0.000000/16.000000/8.000000:d/3/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000:R/0/270/0
|
|
||||||
modellist:id=%copper_patina,state=west:none/east:side/south:side/north:none,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/2/0.000000/8.000000/16.000000/16.000000:d/2/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/3/0.000000/8.000000/16.000000/16.000000:d/3/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000:R/0/270/0
|
|
||||||
modellist:id=%copper_patina,state=west:up/east:side/south:none/north:none,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%copper_patina,state=west:side/east:side/south:none/north:none,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000:R/0/270/0
|
|
||||||
modellist:id=%copper_patina,state=west:none/east:side/south:none/north:none,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000:R/0/270/0
|
|
||||||
modellist:id=%copper_patina,state=west:up/east:none/south:up/north:up,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/2/0.000000/0.000000/16.000000/8.000000:d/2/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/2/0.000000/8.000000/16.000000/16.000000:d/2/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/3/0.000000/0.000000/16.000000/8.000000:d/3/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%copper_patina,state=west:side/east:none/south:up/north:up,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/2/0.000000/0.000000/16.000000/8.000000:d/2/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/2/0.000000/8.000000/16.000000/16.000000:d/2/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/3/0.000000/0.000000/16.000000/8.000000:d/3/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%copper_patina,state=west:none/east:none/south:up/north:up,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/16.000000/0.000000/0.000000/16.000000,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/16.000000/0.000000/0.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%copper_patina,state=west:up/east:none/south:side/north:up,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/2/0.000000/0.000000/16.000000/8.000000:d/2/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/2/0.000000/8.000000/16.000000/16.000000:d/2/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/3/0.000000/0.000000/16.000000/8.000000:d/3/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%copper_patina,state=west:side/east:none/south:side/north:up,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/2/0.000000/0.000000/16.000000/8.000000:d/2/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/2/0.000000/8.000000/16.000000/16.000000:d/2/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/3/0.000000/0.000000/16.000000/8.000000:d/3/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000
|
|
||||||
modellist:id=%copper_patina,state=west:none/east:none/south:side/north:up,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/16.000000/0.000000/0.000000/16.000000,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000
|
|
||||||
modellist:id=%copper_patina,state=west:up/east:none/south:none/north:up,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/2/0.000000/0.000000/16.000000/8.000000:d/2/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/3/0.000000/0.000000/16.000000/8.000000:d/3/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%copper_patina,state=west:side/east:none/south:none/north:up,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/2/0.000000/0.000000/16.000000/8.000000:d/2/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/3/0.000000/0.000000/16.000000/8.000000:d/3/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000
|
|
||||||
modellist:id=%copper_patina,state=west:none/east:none/south:none/north:up,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/16.000000/0.000000/0.000000/16.000000,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000
|
|
||||||
modellist:id=%copper_patina,state=west:up/east:none/south:up/north:side,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/2/0.000000/0.000000/16.000000/8.000000:d/2/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/2/0.000000/8.000000/16.000000/16.000000:d/2/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/3/0.000000/0.000000/16.000000/8.000000:d/3/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%copper_patina,state=west:side/east:none/south:up/north:side,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/2/0.000000/0.000000/16.000000/8.000000:d/2/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/2/0.000000/8.000000/16.000000/16.000000:d/2/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/3/0.000000/0.000000/16.000000/8.000000:d/3/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%copper_patina,state=west:none/east:none/south:up/north:side,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/16.000000/0.000000/0.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%copper_patina,state=west:up/east:none/south:side/north:side,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/2/0.000000/0.000000/16.000000/8.000000:d/2/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/2/0.000000/8.000000/16.000000/16.000000:d/2/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/3/0.000000/0.000000/16.000000/8.000000:d/3/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%copper_patina,state=west:side/east:none/south:side/north:side,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/2/0.000000/0.000000/16.000000/8.000000:d/2/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/2/0.000000/8.000000/16.000000/16.000000:d/2/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/3/0.000000/0.000000/16.000000/8.000000:d/3/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000:R/0/270/0
|
|
||||||
modellist:id=%copper_patina,state=west:none/east:none/south:side/north:side,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000
|
|
||||||
modellist:id=%copper_patina,state=west:up/east:none/south:none/north:side,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/2/0.000000/0.000000/16.000000/8.000000:d/2/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/3/0.000000/0.000000/16.000000/8.000000:d/3/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%copper_patina,state=west:side/east:none/south:none/north:side,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/2/0.000000/0.000000/16.000000/8.000000:d/2/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/3/0.000000/0.000000/16.000000/8.000000:d/3/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000:R/0/270/0
|
|
||||||
modellist:id=%copper_patina,state=west:none/east:none/south:none/north:side,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/8.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000
|
|
||||||
modellist:id=%copper_patina,state=west:up/east:none/south:up/north:none,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/2/0.000000/8.000000/16.000000/16.000000:d/2/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/3/0.000000/0.000000/16.000000/8.000000:d/3/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%copper_patina,state=west:side/east:none/south:up/north:none,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/2/0.000000/8.000000/16.000000/16.000000:d/2/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/3/0.000000/0.000000/16.000000/8.000000:d/3/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%copper_patina,state=west:none/east:none/south:up/north:none,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/16.000000/0.000000/0.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%copper_patina,state=west:up/east:none/south:side/north:none,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/2/0.000000/8.000000/16.000000/16.000000:d/2/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/3/0.000000/0.000000/16.000000/8.000000:d/3/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%copper_patina,state=west:side/east:none/south:side/north:none,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/2/0.000000/8.000000/16.000000/16.000000:d/2/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/3/0.000000/0.000000/16.000000/8.000000:d/3/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000:R/0/270/0
|
|
||||||
modellist:id=%copper_patina,state=west:none/east:none/south:side/north:none,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/8.000000,box=0.000000/0.250000/8.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000
|
|
||||||
modellist:id=%copper_patina,state=west:up/east:none/south:none/north:none,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/2/0.000000/0.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.250000/false:16.000000/16.000000/0.250000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/16.000000/0.000000/0.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%copper_patina,state=west:side/east:none/south:none/north:none,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/8.000000/16.000000/0.000000:R/0/270/0,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/8.000000:u/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/8.000000/16.000000/0.000000:R/0/270/0
|
|
||||||
modellist:id=%copper_patina,state=west:none/east:none/south:none/north:none,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.250000/0.000000/false:16.000000/0.250000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/0.000000
|
|
@ -1,113 +0,0 @@
|
|||||||
modname:additionaladditions
|
|
||||||
|
|
||||||
texture:id=glow_stick,filename=assets/additionaladditions/textures/block/glow_stick.png,xcount=1,ycount=1
|
|
||||||
texture:id=rope,filename=assets/additionaladditions/textures/block/rope.png,xcount=1,ycount=1
|
|
||||||
texture:id=copper_patina_dot,filename=assets/additionaladditions/textures/block/copper_patina_dot.png,xcount=1,ycount=1
|
|
||||||
texture:id=copper_patina_overlay,filename=assets/additionaladditions/textures/block/copper_patina_overlay.png,xcount=1,ycount=1
|
|
||||||
texture:id=copper_patina_line0,filename=assets/additionaladditions/textures/block/copper_patina_line0.png,xcount=1,ycount=1
|
|
||||||
texture:id=copper_patina_line1,filename=assets/additionaladditions/textures/block/copper_patina_line1.png,xcount=1,ycount=1
|
|
||||||
texture:id=amethyst_lamp_on,filename=assets/additionaladditions/textures/block/amethyst_lamp_on.png,xcount=1,ycount=1
|
|
||||||
texture:id=amethyst_lamp,filename=assets/additionaladditions/textures/block/amethyst_lamp.png,xcount=1,ycount=1
|
|
||||||
texture:id=patina_block,filename=assets/additionaladditions/textures/block/patina_block.png,xcount=1,ycount=1
|
|
||||||
block:id=%glow_stick,state=flipped:true,patch0=0:glow_stick,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%glow_stick,state=flipped:false,patch0=0:glow_stick,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%rope,state=west:true/east:true/south:true/north:true,patch0=0:rope,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%rope,state=west:false/east:true/south:true/north:true,patch0=0:rope,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%rope,state=west:true/east:true/south:false/north:true,patch0=0:rope,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%rope,state=west:false/east:true/south:false/north:true,patch0=0:rope,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%rope,state=west:true/east:true/south:true/north:false,patch0=0:rope,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%rope,state=west:false/east:true/south:true/north:false,patch0=0:rope,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%rope,state=west:true/east:true/south:false/north:false,patch0=0:rope,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%rope,state=west:false/east:true/south:false/north:false,patch0=0:rope,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%rope,state=west:true/east:false/south:true/north:true,patch0=0:rope,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%rope,state=west:false/east:false/south:true/north:true,patch0=0:rope,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%rope,state=west:true/east:false/south:false/north:true,patch0=0:rope,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%rope,state=west:false/east:false/south:false/north:true,patch0=0:rope,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%rope,state=west:true/east:false/south:true/north:false,patch0=0:rope,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%rope,state=west:false/east:false/south:true/north:false,patch0=0:rope,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%rope,state=west:true/east:false/south:false/north:false,patch0=0:rope,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%rope,state=west:false/east:false/south:false/north:false,patch0=0:rope,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:up/east:up/south:up/north:up,patch0=1000:copper_patina_dot,patch1=0:copper_patina_overlay,patch2=1000:copper_patina_line0,patch3=1000:copper_patina_line1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:side/east:up/south:up/north:up,patch0=1000:copper_patina_dot,patch1=0:copper_patina_overlay,patch2=1000:copper_patina_line0,patch3=1000:copper_patina_line1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:none/east:up/south:up/north:up,patch0=1000:copper_patina_dot,patch1=0:copper_patina_overlay,patch2=1000:copper_patina_line0,patch3=1000:copper_patina_line1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:up/east:up/south:side/north:up,patch0=1000:copper_patina_dot,patch1=0:copper_patina_overlay,patch2=1000:copper_patina_line0,patch3=1000:copper_patina_line1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:side/east:up/south:side/north:up,patch0=1000:copper_patina_dot,patch1=0:copper_patina_overlay,patch2=1000:copper_patina_line0,patch3=1000:copper_patina_line1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:none/east:up/south:side/north:up,patch0=1000:copper_patina_dot,patch1=0:copper_patina_overlay,patch2=1000:copper_patina_line0,patch3=1000:copper_patina_line1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:up/east:up/south:none/north:up,patch0=1000:copper_patina_dot,patch1=0:copper_patina_overlay,patch2=1000:copper_patina_line0,patch3=1000:copper_patina_line1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:side/east:up/south:none/north:up,patch0=1000:copper_patina_dot,patch1=0:copper_patina_overlay,patch2=1000:copper_patina_line0,patch3=1000:copper_patina_line1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:none/east:up/south:none/north:up,patch0=1000:copper_patina_dot,patch1=0:copper_patina_overlay,patch2=1000:copper_patina_line0,patch3=1000:copper_patina_line1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:up/east:up/south:up/north:side,patch0=1000:copper_patina_dot,patch1=0:copper_patina_overlay,patch2=1000:copper_patina_line0,patch3=1000:copper_patina_line1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:side/east:up/south:up/north:side,patch0=1000:copper_patina_dot,patch1=0:copper_patina_overlay,patch2=1000:copper_patina_line0,patch3=1000:copper_patina_line1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:none/east:up/south:up/north:side,patch0=1000:copper_patina_dot,patch1=0:copper_patina_overlay,patch2=1000:copper_patina_line0,patch3=1000:copper_patina_line1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:up/east:up/south:side/north:side,patch0=1000:copper_patina_dot,patch1=0:copper_patina_overlay,patch2=1000:copper_patina_line0,patch3=1000:copper_patina_line1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:side/east:up/south:side/north:side,patch0=1000:copper_patina_dot,patch1=0:copper_patina_overlay,patch2=1000:copper_patina_line0,patch3=1000:copper_patina_line1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:none/east:up/south:side/north:side,patch0=1000:copper_patina_dot,patch1=0:copper_patina_overlay,patch2=1000:copper_patina_line0,patch3=1000:copper_patina_line1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:up/east:up/south:none/north:side,patch0=1000:copper_patina_dot,patch1=0:copper_patina_overlay,patch2=1000:copper_patina_line0,patch3=1000:copper_patina_line1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:side/east:up/south:none/north:side,patch0=1000:copper_patina_dot,patch1=0:copper_patina_overlay,patch2=1000:copper_patina_line0,patch3=1000:copper_patina_line1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:none/east:up/south:none/north:side,patch0=1000:copper_patina_dot,patch1=0:copper_patina_overlay,patch2=1000:copper_patina_line0,patch3=1000:copper_patina_line1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:up/east:up/south:up/north:none,patch0=1000:copper_patina_dot,patch1=0:copper_patina_overlay,patch2=1000:copper_patina_line0,patch3=1000:copper_patina_line1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:side/east:up/south:up/north:none,patch0=1000:copper_patina_dot,patch1=0:copper_patina_overlay,patch2=1000:copper_patina_line0,patch3=1000:copper_patina_line1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:none/east:up/south:up/north:none,patch0=1000:copper_patina_dot,patch1=0:copper_patina_overlay,patch2=1000:copper_patina_line0,patch3=1000:copper_patina_line1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:up/east:up/south:side/north:none,patch0=1000:copper_patina_dot,patch1=0:copper_patina_overlay,patch2=1000:copper_patina_line0,patch3=1000:copper_patina_line1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:side/east:up/south:side/north:none,patch0=1000:copper_patina_dot,patch1=0:copper_patina_overlay,patch2=1000:copper_patina_line0,patch3=1000:copper_patina_line1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:none/east:up/south:side/north:none,patch0=1000:copper_patina_dot,patch1=0:copper_patina_overlay,patch2=1000:copper_patina_line0,patch3=1000:copper_patina_line1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:up/east:up/south:none/north:none,patch0=1000:copper_patina_line1,patch1=0:copper_patina_overlay,patch2=1000:copper_patina_line0,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:side/east:up/south:none/north:none,patch0=1000:copper_patina_line1,patch1=0:copper_patina_overlay,patch2=1000:copper_patina_line0,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:none/east:up/south:none/north:none,patch0=1000:copper_patina_line1,patch1=0:copper_patina_overlay,patch2=1000:copper_patina_line0,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:up/east:side/south:up/north:up,patch0=1000:copper_patina_dot,patch1=0:copper_patina_overlay,patch2=1000:copper_patina_line0,patch3=1000:copper_patina_line1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:side/east:side/south:up/north:up,patch0=1000:copper_patina_dot,patch1=0:copper_patina_overlay,patch2=1000:copper_patina_line0,patch3=1000:copper_patina_line1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:none/east:side/south:up/north:up,patch0=1000:copper_patina_dot,patch1=0:copper_patina_overlay,patch2=1000:copper_patina_line0,patch3=1000:copper_patina_line1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:up/east:side/south:side/north:up,patch0=1000:copper_patina_dot,patch1=0:copper_patina_overlay,patch2=1000:copper_patina_line0,patch3=1000:copper_patina_line1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:side/east:side/south:side/north:up,patch0=1000:copper_patina_dot,patch1=0:copper_patina_overlay,patch2=1000:copper_patina_line0,patch3=1000:copper_patina_line1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:none/east:side/south:side/north:up,patch0=1000:copper_patina_dot,patch1=0:copper_patina_overlay,patch2=1000:copper_patina_line0,patch3=1000:copper_patina_line1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:up/east:side/south:none/north:up,patch0=1000:copper_patina_dot,patch1=0:copper_patina_overlay,patch2=1000:copper_patina_line0,patch3=1000:copper_patina_line1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:side/east:side/south:none/north:up,patch0=1000:copper_patina_dot,patch1=0:copper_patina_overlay,patch2=1000:copper_patina_line0,patch3=1000:copper_patina_line1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:none/east:side/south:none/north:up,patch0=1000:copper_patina_dot,patch1=0:copper_patina_overlay,patch2=1000:copper_patina_line0,patch3=1000:copper_patina_line1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:up/east:side/south:up/north:side,patch0=1000:copper_patina_dot,patch1=0:copper_patina_overlay,patch2=1000:copper_patina_line0,patch3=1000:copper_patina_line1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:side/east:side/south:up/north:side,patch0=1000:copper_patina_dot,patch1=0:copper_patina_overlay,patch2=1000:copper_patina_line0,patch3=1000:copper_patina_line1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:none/east:side/south:up/north:side,patch0=1000:copper_patina_dot,patch1=0:copper_patina_overlay,patch2=1000:copper_patina_line0,patch3=1000:copper_patina_line1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:up/east:side/south:side/north:side,patch0=1000:copper_patina_dot,patch1=0:copper_patina_overlay,patch2=1000:copper_patina_line0,patch3=1000:copper_patina_line1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:side/east:side/south:side/north:side,patch0=1000:copper_patina_dot,patch1=0:copper_patina_overlay,patch2=1000:copper_patina_line0,patch3=1000:copper_patina_line1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:none/east:side/south:side/north:side,patch0=1000:copper_patina_dot,patch1=0:copper_patina_overlay,patch2=1000:copper_patina_line0,patch3=1000:copper_patina_line1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:up/east:side/south:none/north:side,patch0=1000:copper_patina_dot,patch1=0:copper_patina_overlay,patch2=1000:copper_patina_line0,patch3=1000:copper_patina_line1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:side/east:side/south:none/north:side,patch0=1000:copper_patina_dot,patch1=0:copper_patina_overlay,patch2=1000:copper_patina_line0,patch3=1000:copper_patina_line1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:none/east:side/south:none/north:side,patch0=1000:copper_patina_dot,patch1=0:copper_patina_overlay,patch2=1000:copper_patina_line0,patch3=1000:copper_patina_line1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:up/east:side/south:up/north:none,patch0=1000:copper_patina_dot,patch1=0:copper_patina_overlay,patch2=1000:copper_patina_line0,patch3=1000:copper_patina_line1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:side/east:side/south:up/north:none,patch0=1000:copper_patina_dot,patch1=0:copper_patina_overlay,patch2=1000:copper_patina_line0,patch3=1000:copper_patina_line1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:none/east:side/south:up/north:none,patch0=1000:copper_patina_dot,patch1=0:copper_patina_overlay,patch2=1000:copper_patina_line0,patch3=1000:copper_patina_line1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:up/east:side/south:side/north:none,patch0=1000:copper_patina_dot,patch1=0:copper_patina_overlay,patch2=1000:copper_patina_line0,patch3=1000:copper_patina_line1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:side/east:side/south:side/north:none,patch0=1000:copper_patina_dot,patch1=0:copper_patina_overlay,patch2=1000:copper_patina_line0,patch3=1000:copper_patina_line1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:none/east:side/south:side/north:none,patch0=1000:copper_patina_dot,patch1=0:copper_patina_overlay,patch2=1000:copper_patina_line0,patch3=1000:copper_patina_line1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:up/east:side/south:none/north:none,patch0=1000:copper_patina_line1,patch1=0:copper_patina_overlay,patch2=1000:copper_patina_line0,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:side/east:side/south:none/north:none,patch0=1000:copper_patina_line1,patch1=0:copper_patina_overlay,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:none/east:side/south:none/north:none,patch0=1000:copper_patina_line1,patch1=0:copper_patina_overlay,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:up/east:none/south:up/north:up,patch0=1000:copper_patina_dot,patch1=0:copper_patina_overlay,patch2=1000:copper_patina_line0,patch3=1000:copper_patina_line1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:side/east:none/south:up/north:up,patch0=1000:copper_patina_dot,patch1=0:copper_patina_overlay,patch2=1000:copper_patina_line0,patch3=1000:copper_patina_line1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:none/east:none/south:up/north:up,patch0=1000:copper_patina_line0,patch1=0:copper_patina_overlay,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:up/east:none/south:side/north:up,patch0=1000:copper_patina_dot,patch1=0:copper_patina_overlay,patch2=1000:copper_patina_line0,patch3=1000:copper_patina_line1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:side/east:none/south:side/north:up,patch0=1000:copper_patina_dot,patch1=0:copper_patina_overlay,patch2=1000:copper_patina_line0,patch3=1000:copper_patina_line1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:none/east:none/south:side/north:up,patch0=1000:copper_patina_line0,patch1=0:copper_patina_overlay,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:up/east:none/south:none/north:up,patch0=1000:copper_patina_dot,patch1=0:copper_patina_overlay,patch2=1000:copper_patina_line0,patch3=1000:copper_patina_line1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:side/east:none/south:none/north:up,patch0=1000:copper_patina_dot,patch1=0:copper_patina_overlay,patch2=1000:copper_patina_line0,patch3=1000:copper_patina_line1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:none/east:none/south:none/north:up,patch0=1000:copper_patina_line0,patch1=0:copper_patina_overlay,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:up/east:none/south:up/north:side,patch0=1000:copper_patina_dot,patch1=0:copper_patina_overlay,patch2=1000:copper_patina_line0,patch3=1000:copper_patina_line1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:side/east:none/south:up/north:side,patch0=1000:copper_patina_dot,patch1=0:copper_patina_overlay,patch2=1000:copper_patina_line0,patch3=1000:copper_patina_line1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:none/east:none/south:up/north:side,patch0=1000:copper_patina_line0,patch1=0:copper_patina_overlay,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:up/east:none/south:side/north:side,patch0=1000:copper_patina_dot,patch1=0:copper_patina_overlay,patch2=1000:copper_patina_line0,patch3=1000:copper_patina_line1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:side/east:none/south:side/north:side,patch0=1000:copper_patina_dot,patch1=0:copper_patina_overlay,patch2=1000:copper_patina_line0,patch3=1000:copper_patina_line1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:none/east:none/south:side/north:side,patch0=1000:copper_patina_line0,patch1=0:copper_patina_overlay,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:up/east:none/south:none/north:side,patch0=1000:copper_patina_dot,patch1=0:copper_patina_overlay,patch2=1000:copper_patina_line0,patch3=1000:copper_patina_line1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:side/east:none/south:none/north:side,patch0=1000:copper_patina_dot,patch1=0:copper_patina_overlay,patch2=1000:copper_patina_line0,patch3=1000:copper_patina_line1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:none/east:none/south:none/north:side,patch0=1000:copper_patina_line0,patch1=0:copper_patina_overlay,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:up/east:none/south:up/north:none,patch0=1000:copper_patina_dot,patch1=0:copper_patina_overlay,patch2=1000:copper_patina_line0,patch3=1000:copper_patina_line1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:side/east:none/south:up/north:none,patch0=1000:copper_patina_dot,patch1=0:copper_patina_overlay,patch2=1000:copper_patina_line0,patch3=1000:copper_patina_line1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:none/east:none/south:up/north:none,patch0=1000:copper_patina_line0,patch1=0:copper_patina_overlay,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:up/east:none/south:side/north:none,patch0=1000:copper_patina_dot,patch1=0:copper_patina_overlay,patch2=1000:copper_patina_line0,patch3=1000:copper_patina_line1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:side/east:none/south:side/north:none,patch0=1000:copper_patina_dot,patch1=0:copper_patina_overlay,patch2=1000:copper_patina_line0,patch3=1000:copper_patina_line1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:none/east:none/south:side/north:none,patch0=1000:copper_patina_line0,patch1=0:copper_patina_overlay,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:up/east:none/south:none/north:none,patch0=1000:copper_patina_line1,patch1=0:copper_patina_overlay,patch2=1000:copper_patina_line0,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:side/east:none/south:none/north:none,patch0=1000:copper_patina_line1,patch1=0:copper_patina_overlay,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%copper_patina,state=west:none/east:none/south:none/north:none,patch0=1000:copper_patina_dot,patch1=0:copper_patina_overlay,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%amethyst_lamp,state=lit:true,patch0=0:amethyst_lamp_on,patch1=0:amethyst_lamp_on,patch2=0:amethyst_lamp_on,patch3=0:amethyst_lamp_on,patch4=0:amethyst_lamp_on,patch5=0:amethyst_lamp_on,stdrot=true
|
|
||||||
block:id=%amethyst_lamp,state=lit:false,patch0=0:amethyst_lamp,patch1=0:amethyst_lamp,patch2=0:amethyst_lamp,patch3=0:amethyst_lamp,patch4=0:amethyst_lamp,patch5=0:amethyst_lamp,stdrot=true
|
|
||||||
block:id=%patina_block,patch0=0:patina_block,patch1=0:patina_block,patch2=0:patina_block,patch3=0:patina_block,patch4=0:patina_block,patch5=0:patina_block,stdrot=true
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
@ -1,201 +0,0 @@
|
|||||||
modname:alloyed
|
|
||||||
|
|
||||||
modellist:id=%bronze_bell,box=1.000000/3.000000/1.000000:15.000000/14.000000/15.000000:u/0/7.500000/7.500000/0.500000/0.500000:s/0/8.000000/1.000000/16.000000/6.500000:w/0/8.000000/1.000000/16.000000/6.500000:e/0/8.000000/1.000000/16.000000/6.500000:d/0/7.500000/8.500000/0.500000/15.500000:n/0/8.000000/1.000000/16.000000/6.500000,box=2.000000/14.000000/2.000000:14.000000/16.000000/14.000000:u/0/1.000000/1.000000/7.000000/7.000000:s/0/9.500000/0.000000/14.500000/1.000000:w/0/9.500000/0.000000/14.500000/1.000000:e/0/9.500000/0.000000/14.500000/1.000000:d/0/1.500000/9.500000/6.500000/14.500000:n/0/9.500000/0.000000/14.500000/1.000000,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/8.000000/16.000000/9.500000:w/0/8.000000/8.000000/16.000000/9.500000:e/0/8.000000/8.000000/16.000000/9.500000:d/0/0.000000/8.000000/8.000000/16.000000:n/0/8.000000/8.000000/16.000000/9.500000
|
|
||||||
modellist:id=%steel_door,state=facing:north/hinge:left/half:upper/open:true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:u/0/13.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/3.000000/16.000000:w/1/16.000000/0.000000/0.000000/16.000000:e/1/0.000000/0.000000/16.000000/16.000000:n/1/3.000000/0.000000/0.000000/16.000000
|
|
||||||
modellist:id=%steel_door,state=facing:north/hinge:left/half:upper/open:false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:u/0/13.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/3.000000/16.000000:w/1/0.000000/0.000000/16.000000/16.000000:e/1/16.000000/0.000000/0.000000/16.000000:n/1/3.000000/0.000000/0.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%steel_door,state=facing:north/hinge:right/half:upper/open:true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:u/0/13.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/3.000000/16.000000:w/1/0.000000/0.000000/16.000000/16.000000:e/1/16.000000/0.000000/0.000000/16.000000:n/1/3.000000/0.000000/0.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%steel_door,state=facing:north/hinge:right/half:upper/open:false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:u/0/13.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/3.000000/16.000000:w/1/16.000000/0.000000/0.000000/16.000000:e/1/0.000000/0.000000/16.000000/16.000000:n/1/3.000000/0.000000/0.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%steel_door,state=facing:north/hinge:left/half:lower/open:true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:d/0/13.000000/0.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000
|
|
||||||
modellist:id=%steel_door,state=facing:north/hinge:left/half:lower/open:false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:d/0/13.000000/0.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%steel_door,state=facing:north/hinge:right/half:lower/open:true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:d/0/13.000000/0.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%steel_door,state=facing:north/hinge:right/half:lower/open:false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:d/0/13.000000/0.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%steel_door,state=facing:south/hinge:left/half:upper/open:true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:u/0/13.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/3.000000/16.000000:w/1/16.000000/0.000000/0.000000/16.000000:e/1/0.000000/0.000000/16.000000/16.000000:n/1/3.000000/0.000000/0.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%steel_door,state=facing:south/hinge:left/half:upper/open:false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:u/0/13.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/3.000000/16.000000:w/1/0.000000/0.000000/16.000000/16.000000:e/1/16.000000/0.000000/0.000000/16.000000:n/1/3.000000/0.000000/0.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%steel_door,state=facing:south/hinge:right/half:upper/open:true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:u/0/13.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/3.000000/16.000000:w/1/0.000000/0.000000/16.000000/16.000000:e/1/16.000000/0.000000/0.000000/16.000000:n/1/3.000000/0.000000/0.000000/16.000000
|
|
||||||
modellist:id=%steel_door,state=facing:south/hinge:right/half:upper/open:false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:u/0/13.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/3.000000/16.000000:w/1/16.000000/0.000000/0.000000/16.000000:e/1/0.000000/0.000000/16.000000/16.000000:n/1/3.000000/0.000000/0.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%steel_door,state=facing:south/hinge:left/half:lower/open:true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:d/0/13.000000/0.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%steel_door,state=facing:south/hinge:left/half:lower/open:false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:d/0/13.000000/0.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%steel_door,state=facing:south/hinge:right/half:lower/open:true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:d/0/13.000000/0.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000
|
|
||||||
modellist:id=%steel_door,state=facing:south/hinge:right/half:lower/open:false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:d/0/13.000000/0.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%steel_door,state=facing:west/hinge:left/half:upper/open:true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:u/0/13.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/3.000000/16.000000:w/1/16.000000/0.000000/0.000000/16.000000:e/1/0.000000/0.000000/16.000000/16.000000:n/1/3.000000/0.000000/0.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%steel_door,state=facing:west/hinge:left/half:upper/open:false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:u/0/13.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/3.000000/16.000000:w/1/0.000000/0.000000/16.000000/16.000000:e/1/16.000000/0.000000/0.000000/16.000000:n/1/3.000000/0.000000/0.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%steel_door,state=facing:west/hinge:right/half:upper/open:true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:u/0/13.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/3.000000/16.000000:w/1/0.000000/0.000000/16.000000/16.000000:e/1/16.000000/0.000000/0.000000/16.000000:n/1/3.000000/0.000000/0.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%steel_door,state=facing:west/hinge:right/half:upper/open:false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:u/0/13.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/3.000000/16.000000:w/1/16.000000/0.000000/0.000000/16.000000:e/1/0.000000/0.000000/16.000000/16.000000:n/1/3.000000/0.000000/0.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%steel_door,state=facing:west/hinge:left/half:lower/open:true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:d/0/13.000000/0.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%steel_door,state=facing:west/hinge:left/half:lower/open:false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:d/0/13.000000/0.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%steel_door,state=facing:west/hinge:right/half:lower/open:true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:d/0/13.000000/0.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%steel_door,state=facing:west/hinge:right/half:lower/open:false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:d/0/13.000000/0.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%steel_door,state=facing:east/hinge:left/half:upper/open:true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:u/0/13.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/3.000000/16.000000:w/1/16.000000/0.000000/0.000000/16.000000:e/1/0.000000/0.000000/16.000000/16.000000:n/1/3.000000/0.000000/0.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%steel_door,state=facing:east/hinge:left/half:upper/open:false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:u/0/13.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/3.000000/16.000000:w/1/0.000000/0.000000/16.000000/16.000000:e/1/16.000000/0.000000/0.000000/16.000000:n/1/3.000000/0.000000/0.000000/16.000000
|
|
||||||
modellist:id=%steel_door,state=facing:east/hinge:right/half:upper/open:true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:u/0/13.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/3.000000/16.000000:w/1/0.000000/0.000000/16.000000/16.000000:e/1/16.000000/0.000000/0.000000/16.000000:n/1/3.000000/0.000000/0.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%steel_door,state=facing:east/hinge:right/half:upper/open:false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:u/0/13.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/3.000000/16.000000:w/1/16.000000/0.000000/0.000000/16.000000:e/1/0.000000/0.000000/16.000000/16.000000:n/1/3.000000/0.000000/0.000000/16.000000
|
|
||||||
modellist:id=%steel_door,state=facing:east/hinge:left/half:lower/open:true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:d/0/13.000000/0.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%steel_door,state=facing:east/hinge:left/half:lower/open:false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:d/0/13.000000/0.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000
|
|
||||||
modellist:id=%steel_door,state=facing:east/hinge:right/half:lower/open:true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:d/0/13.000000/0.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%steel_door,state=facing:east/hinge:right/half:lower/open:false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:d/0/13.000000/0.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000
|
|
||||||
modellist:id=%locked_steel_door,state=facing:north/hinge:left/half:upper/open:true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:u/0/13.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/3.000000/16.000000:w/1/16.000000/0.000000/0.000000/16.000000:e/1/0.000000/0.000000/16.000000/16.000000:n/1/3.000000/0.000000/0.000000/16.000000
|
|
||||||
modellist:id=%locked_steel_door,state=facing:north/hinge:left/half:upper/open:false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:u/0/13.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/3.000000/16.000000:w/1/0.000000/0.000000/16.000000/16.000000:e/1/16.000000/0.000000/0.000000/16.000000:n/1/3.000000/0.000000/0.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%locked_steel_door,state=facing:north/hinge:right/half:upper/open:true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:u/0/13.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/3.000000/16.000000:w/1/0.000000/0.000000/16.000000/16.000000:e/1/16.000000/0.000000/0.000000/16.000000:n/1/3.000000/0.000000/0.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%locked_steel_door,state=facing:north/hinge:right/half:upper/open:false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:u/0/13.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/3.000000/16.000000:w/1/16.000000/0.000000/0.000000/16.000000:e/1/0.000000/0.000000/16.000000/16.000000:n/1/3.000000/0.000000/0.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%locked_steel_door,state=facing:north/hinge:left/half:lower/open:true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:d/0/13.000000/0.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000
|
|
||||||
modellist:id=%locked_steel_door,state=facing:north/hinge:left/half:lower/open:false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:d/0/13.000000/0.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%locked_steel_door,state=facing:north/hinge:right/half:lower/open:true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:d/0/13.000000/0.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%locked_steel_door,state=facing:north/hinge:right/half:lower/open:false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:d/0/13.000000/0.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%locked_steel_door,state=facing:south/hinge:left/half:upper/open:true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:u/0/13.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/3.000000/16.000000:w/1/16.000000/0.000000/0.000000/16.000000:e/1/0.000000/0.000000/16.000000/16.000000:n/1/3.000000/0.000000/0.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%locked_steel_door,state=facing:south/hinge:left/half:upper/open:false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:u/0/13.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/3.000000/16.000000:w/1/0.000000/0.000000/16.000000/16.000000:e/1/16.000000/0.000000/0.000000/16.000000:n/1/3.000000/0.000000/0.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%locked_steel_door,state=facing:south/hinge:right/half:upper/open:true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:u/0/13.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/3.000000/16.000000:w/1/0.000000/0.000000/16.000000/16.000000:e/1/16.000000/0.000000/0.000000/16.000000:n/1/3.000000/0.000000/0.000000/16.000000
|
|
||||||
modellist:id=%locked_steel_door,state=facing:south/hinge:right/half:upper/open:false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:u/0/13.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/3.000000/16.000000:w/1/16.000000/0.000000/0.000000/16.000000:e/1/0.000000/0.000000/16.000000/16.000000:n/1/3.000000/0.000000/0.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%locked_steel_door,state=facing:south/hinge:left/half:lower/open:true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:d/0/13.000000/0.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%locked_steel_door,state=facing:south/hinge:left/half:lower/open:false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:d/0/13.000000/0.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%locked_steel_door,state=facing:south/hinge:right/half:lower/open:true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:d/0/13.000000/0.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000
|
|
||||||
modellist:id=%locked_steel_door,state=facing:south/hinge:right/half:lower/open:false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:d/0/13.000000/0.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%locked_steel_door,state=facing:west/hinge:left/half:upper/open:true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:u/0/13.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/3.000000/16.000000:w/1/16.000000/0.000000/0.000000/16.000000:e/1/0.000000/0.000000/16.000000/16.000000:n/1/3.000000/0.000000/0.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%locked_steel_door,state=facing:west/hinge:left/half:upper/open:false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:u/0/13.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/3.000000/16.000000:w/1/0.000000/0.000000/16.000000/16.000000:e/1/16.000000/0.000000/0.000000/16.000000:n/1/3.000000/0.000000/0.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%locked_steel_door,state=facing:west/hinge:right/half:upper/open:true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:u/0/13.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/3.000000/16.000000:w/1/0.000000/0.000000/16.000000/16.000000:e/1/16.000000/0.000000/0.000000/16.000000:n/1/3.000000/0.000000/0.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%locked_steel_door,state=facing:west/hinge:right/half:upper/open:false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:u/0/13.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/3.000000/16.000000:w/1/16.000000/0.000000/0.000000/16.000000:e/1/0.000000/0.000000/16.000000/16.000000:n/1/3.000000/0.000000/0.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%locked_steel_door,state=facing:west/hinge:left/half:lower/open:true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:d/0/13.000000/0.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%locked_steel_door,state=facing:west/hinge:left/half:lower/open:false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:d/0/13.000000/0.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%locked_steel_door,state=facing:west/hinge:right/half:lower/open:true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:d/0/13.000000/0.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%locked_steel_door,state=facing:west/hinge:right/half:lower/open:false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:d/0/13.000000/0.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%locked_steel_door,state=facing:east/hinge:left/half:upper/open:true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:u/0/13.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/3.000000/16.000000:w/1/16.000000/0.000000/0.000000/16.000000:e/1/0.000000/0.000000/16.000000/16.000000:n/1/3.000000/0.000000/0.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%locked_steel_door,state=facing:east/hinge:left/half:upper/open:false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:u/0/13.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/3.000000/16.000000:w/1/0.000000/0.000000/16.000000/16.000000:e/1/16.000000/0.000000/0.000000/16.000000:n/1/3.000000/0.000000/0.000000/16.000000
|
|
||||||
modellist:id=%locked_steel_door,state=facing:east/hinge:right/half:upper/open:true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:u/0/13.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/3.000000/16.000000:w/1/0.000000/0.000000/16.000000/16.000000:e/1/16.000000/0.000000/0.000000/16.000000:n/1/3.000000/0.000000/0.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%locked_steel_door,state=facing:east/hinge:right/half:upper/open:false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:u/0/13.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/3.000000/16.000000:w/1/16.000000/0.000000/0.000000/16.000000:e/1/0.000000/0.000000/16.000000/16.000000:n/1/3.000000/0.000000/0.000000/16.000000
|
|
||||||
modellist:id=%locked_steel_door,state=facing:east/hinge:left/half:lower/open:true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:d/0/13.000000/0.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%locked_steel_door,state=facing:east/hinge:left/half:lower/open:false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:d/0/13.000000/0.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000
|
|
||||||
modellist:id=%locked_steel_door,state=facing:east/hinge:right/half:lower/open:true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:d/0/13.000000/0.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%locked_steel_door,state=facing:east/hinge:right/half:lower/open:false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:d/0/13.000000/0.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000
|
|
||||||
modellist:id=%steel_sheet_stairs,state=facing:north/half:top/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/270/0
|
|
||||||
modellist:id=%steel_sheet_stairs,state=facing:north/half:top/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/180/270/0
|
|
||||||
modellist:id=%steel_sheet_stairs,state=facing:north/half:top/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/180/0/0
|
|
||||||
modellist:id=%steel_sheet_stairs,state=facing:north/half:top/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/270/0
|
|
||||||
modellist:id=%steel_sheet_stairs,state=facing:north/half:top/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/0/0
|
|
||||||
modellist:id=%steel_sheet_stairs,state=facing:north/half:bottom/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/270/0
|
|
||||||
modellist:id=%steel_sheet_stairs,state=facing:north/half:bottom/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/0/180/0
|
|
||||||
modellist:id=%steel_sheet_stairs,state=facing:north/half:bottom/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/0/270/0
|
|
||||||
modellist:id=%steel_sheet_stairs,state=facing:north/half:bottom/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/180/0
|
|
||||||
modellist:id=%steel_sheet_stairs,state=facing:north/half:bottom/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/270/0
|
|
||||||
modellist:id=%steel_sheet_stairs,state=facing:south/half:top/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/90/0
|
|
||||||
modellist:id=%steel_sheet_stairs,state=facing:south/half:top/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/180/90/0
|
|
||||||
modellist:id=%steel_sheet_stairs,state=facing:south/half:top/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/180/180/0
|
|
||||||
modellist:id=%steel_sheet_stairs,state=facing:south/half:top/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/90/0
|
|
||||||
modellist:id=%steel_sheet_stairs,state=facing:south/half:top/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/180/0
|
|
||||||
modellist:id=%steel_sheet_stairs,state=facing:south/half:bottom/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/90/0
|
|
||||||
modellist:id=%steel_sheet_stairs,state=facing:south/half:bottom/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000
|
|
||||||
modellist:id=%steel_sheet_stairs,state=facing:south/half:bottom/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/0/90/0
|
|
||||||
modellist:id=%steel_sheet_stairs,state=facing:south/half:bottom/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000
|
|
||||||
modellist:id=%steel_sheet_stairs,state=facing:south/half:bottom/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/90/0
|
|
||||||
modellist:id=%steel_sheet_stairs,state=facing:west/half:top/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/180/0
|
|
||||||
modellist:id=%steel_sheet_stairs,state=facing:west/half:top/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/180/180/0
|
|
||||||
modellist:id=%steel_sheet_stairs,state=facing:west/half:top/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/180/270/0
|
|
||||||
modellist:id=%steel_sheet_stairs,state=facing:west/half:top/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/180/0
|
|
||||||
modellist:id=%steel_sheet_stairs,state=facing:west/half:top/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/270/0
|
|
||||||
modellist:id=%steel_sheet_stairs,state=facing:west/half:bottom/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/180/0
|
|
||||||
modellist:id=%steel_sheet_stairs,state=facing:west/half:bottom/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/0/90/0
|
|
||||||
modellist:id=%steel_sheet_stairs,state=facing:west/half:bottom/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/0/180/0
|
|
||||||
modellist:id=%steel_sheet_stairs,state=facing:west/half:bottom/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/90/0
|
|
||||||
modellist:id=%steel_sheet_stairs,state=facing:west/half:bottom/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/180/0
|
|
||||||
modellist:id=%steel_sheet_stairs,state=facing:east/half:top/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/0/0
|
|
||||||
modellist:id=%steel_sheet_stairs,state=facing:east/half:top/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/180/0/0
|
|
||||||
modellist:id=%steel_sheet_stairs,state=facing:east/half:top/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/180/90/0
|
|
||||||
modellist:id=%steel_sheet_stairs,state=facing:east/half:top/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/0/0
|
|
||||||
modellist:id=%steel_sheet_stairs,state=facing:east/half:top/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/90/0
|
|
||||||
modellist:id=%steel_sheet_stairs,state=facing:east/half:bottom/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000
|
|
||||||
modellist:id=%steel_sheet_stairs,state=facing:east/half:bottom/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/0/270/0
|
|
||||||
modellist:id=%steel_sheet_stairs,state=facing:east/half:bottom/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000
|
|
||||||
modellist:id=%steel_sheet_stairs,state=facing:east/half:bottom/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/270/0
|
|
||||||
modellist:id=%steel_sheet_stairs,state=facing:east/half:bottom/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000
|
|
||||||
modellist:id=%steel_sheet_slab,state=type:top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/8.000000
|
|
||||||
modellist:id=%steel_sheet_slab,state=type:bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000
|
|
||||||
modellist:id=%steel_bars,state=west:true/east:true/south:true/north:true,box=7.000000/0.001000/7.000000:9.000000/0.001000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:d/0/7.000000/7.000000/9.000000/9.000000,box=7.000000/15.999000/7.000000:9.000000/15.999000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:d/0/7.000000/7.000000/9.000000/9.000000,box=8.000000/0.000000/0.000000:8.000000/16.000000/8.000000:w/1/16.000000/0.000000/8.000000/16.000000:e/1/8.000000/0.000000/16.000000/16.000000,box=7.000000/0.000000/0.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000,box=7.000000/0.001000/0.000000:9.000000/0.001000/7.000000:u/0/7.000000/0.000000/9.000000/7.000000:d/0/9.000000/0.000000/7.000000/7.000000,box=7.000000/15.999000/0.000000:9.000000/15.999000/7.000000:u/0/7.000000/0.000000/9.000000/7.000000:d/0/9.000000/0.000000/7.000000/7.000000,box=8.000000/0.000000/0.000000:8.000000/16.000000/8.000000:w/1/16.000000/0.000000/8.000000/16.000000:e/1/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=7.000000/0.000000/0.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000:R/0/90/0,box=7.000000/0.001000/0.000000:9.000000/0.001000/7.000000:u/0/7.000000/0.000000/9.000000/7.000000:d/0/9.000000/0.000000/7.000000/7.000000:R/0/90/0,box=7.000000/15.999000/0.000000:9.000000/15.999000/7.000000:u/0/7.000000/0.000000/9.000000/7.000000:d/0/9.000000/0.000000/7.000000/7.000000:R/0/90/0,box=8.000000/0.000000/8.000000:8.000000/16.000000/16.000000:w/1/8.000000/0.000000/0.000000/16.000000:e/1/0.000000/0.000000/8.000000/16.000000,box=7.000000/0.000000/9.000000:9.000000/16.000000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000,box=7.000000/0.001000/9.000000:9.000000/0.001000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000,box=7.000000/15.999000/9.000000:9.000000/15.999000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000,box=8.000000/0.000000/8.000000:8.000000/16.000000/16.000000:w/1/8.000000/0.000000/0.000000/16.000000:e/1/0.000000/0.000000/8.000000/16.000000:R/0/90/0,box=7.000000/0.000000/9.000000:9.000000/16.000000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:R/0/90/0,box=7.000000/0.001000/9.000000:9.000000/0.001000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:R/0/90/0,box=7.000000/15.999000/9.000000:9.000000/15.999000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%steel_bars,state=west:false/east:true/south:true/north:true,box=7.000000/0.001000/7.000000:9.000000/0.001000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:d/0/7.000000/7.000000/9.000000/9.000000,box=7.000000/15.999000/7.000000:9.000000/15.999000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:d/0/7.000000/7.000000/9.000000/9.000000,box=8.000000/0.000000/0.000000:8.000000/16.000000/8.000000:w/1/16.000000/0.000000/8.000000/16.000000:e/1/8.000000/0.000000/16.000000/16.000000,box=7.000000/0.000000/0.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000,box=7.000000/0.001000/0.000000:9.000000/0.001000/7.000000:u/0/7.000000/0.000000/9.000000/7.000000:d/0/9.000000/0.000000/7.000000/7.000000,box=7.000000/15.999000/0.000000:9.000000/15.999000/7.000000:u/0/7.000000/0.000000/9.000000/7.000000:d/0/9.000000/0.000000/7.000000/7.000000,box=8.000000/0.000000/0.000000:8.000000/16.000000/8.000000:w/1/16.000000/0.000000/8.000000/16.000000:e/1/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=7.000000/0.000000/0.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000:R/0/90/0,box=7.000000/0.001000/0.000000:9.000000/0.001000/7.000000:u/0/7.000000/0.000000/9.000000/7.000000:d/0/9.000000/0.000000/7.000000/7.000000:R/0/90/0,box=7.000000/15.999000/0.000000:9.000000/15.999000/7.000000:u/0/7.000000/0.000000/9.000000/7.000000:d/0/9.000000/0.000000/7.000000/7.000000:R/0/90/0,box=8.000000/0.000000/8.000000:8.000000/16.000000/16.000000:w/1/8.000000/0.000000/0.000000/16.000000:e/1/0.000000/0.000000/8.000000/16.000000,box=7.000000/0.000000/9.000000:9.000000/16.000000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000,box=7.000000/0.001000/9.000000:9.000000/0.001000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000,box=7.000000/15.999000/9.000000:9.000000/15.999000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000
|
|
||||||
modellist:id=%steel_bars,state=west:true/east:true/south:false/north:true,box=7.000000/0.001000/7.000000:9.000000/0.001000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:d/0/7.000000/7.000000/9.000000/9.000000,box=7.000000/15.999000/7.000000:9.000000/15.999000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:d/0/7.000000/7.000000/9.000000/9.000000,box=8.000000/0.000000/0.000000:8.000000/16.000000/8.000000:w/1/16.000000/0.000000/8.000000/16.000000:e/1/8.000000/0.000000/16.000000/16.000000,box=7.000000/0.000000/0.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000,box=7.000000/0.001000/0.000000:9.000000/0.001000/7.000000:u/0/7.000000/0.000000/9.000000/7.000000:d/0/9.000000/0.000000/7.000000/7.000000,box=7.000000/15.999000/0.000000:9.000000/15.999000/7.000000:u/0/7.000000/0.000000/9.000000/7.000000:d/0/9.000000/0.000000/7.000000/7.000000,box=8.000000/0.000000/0.000000:8.000000/16.000000/8.000000:w/1/16.000000/0.000000/8.000000/16.000000:e/1/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=7.000000/0.000000/0.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000:R/0/90/0,box=7.000000/0.001000/0.000000:9.000000/0.001000/7.000000:u/0/7.000000/0.000000/9.000000/7.000000:d/0/9.000000/0.000000/7.000000/7.000000:R/0/90/0,box=7.000000/15.999000/0.000000:9.000000/15.999000/7.000000:u/0/7.000000/0.000000/9.000000/7.000000:d/0/9.000000/0.000000/7.000000/7.000000:R/0/90/0,box=8.000000/0.000000/8.000000:8.000000/16.000000/16.000000:w/1/8.000000/0.000000/0.000000/16.000000:e/1/0.000000/0.000000/8.000000/16.000000:R/0/90/0,box=7.000000/0.000000/9.000000:9.000000/16.000000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:R/0/90/0,box=7.000000/0.001000/9.000000:9.000000/0.001000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:R/0/90/0,box=7.000000/15.999000/9.000000:9.000000/15.999000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%steel_bars,state=west:false/east:true/south:false/north:true,box=7.000000/0.001000/7.000000:9.000000/0.001000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:d/0/7.000000/7.000000/9.000000/9.000000,box=7.000000/15.999000/7.000000:9.000000/15.999000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:d/0/7.000000/7.000000/9.000000/9.000000,box=8.000000/0.000000/0.000000:8.000000/16.000000/8.000000:w/1/16.000000/0.000000/8.000000/16.000000:e/1/8.000000/0.000000/16.000000/16.000000,box=7.000000/0.000000/0.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000,box=7.000000/0.001000/0.000000:9.000000/0.001000/7.000000:u/0/7.000000/0.000000/9.000000/7.000000:d/0/9.000000/0.000000/7.000000/7.000000,box=7.000000/15.999000/0.000000:9.000000/15.999000/7.000000:u/0/7.000000/0.000000/9.000000/7.000000:d/0/9.000000/0.000000/7.000000/7.000000,box=8.000000/0.000000/0.000000:8.000000/16.000000/8.000000:w/1/16.000000/0.000000/8.000000/16.000000:e/1/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=7.000000/0.000000/0.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000:R/0/90/0,box=7.000000/0.001000/0.000000:9.000000/0.001000/7.000000:u/0/7.000000/0.000000/9.000000/7.000000:d/0/9.000000/0.000000/7.000000/7.000000:R/0/90/0,box=7.000000/15.999000/0.000000:9.000000/15.999000/7.000000:u/0/7.000000/0.000000/9.000000/7.000000:d/0/9.000000/0.000000/7.000000/7.000000:R/0/90/0
|
|
||||||
modellist:id=%steel_bars,state=west:true/east:true/south:true/north:false,box=7.000000/0.001000/7.000000:9.000000/0.001000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:d/0/7.000000/7.000000/9.000000/9.000000,box=7.000000/15.999000/7.000000:9.000000/15.999000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:d/0/7.000000/7.000000/9.000000/9.000000,box=8.000000/0.000000/0.000000:8.000000/16.000000/8.000000:w/1/16.000000/0.000000/8.000000/16.000000:e/1/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=7.000000/0.000000/0.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000:R/0/90/0,box=7.000000/0.001000/0.000000:9.000000/0.001000/7.000000:u/0/7.000000/0.000000/9.000000/7.000000:d/0/9.000000/0.000000/7.000000/7.000000:R/0/90/0,box=7.000000/15.999000/0.000000:9.000000/15.999000/7.000000:u/0/7.000000/0.000000/9.000000/7.000000:d/0/9.000000/0.000000/7.000000/7.000000:R/0/90/0,box=8.000000/0.000000/8.000000:8.000000/16.000000/16.000000:w/1/8.000000/0.000000/0.000000/16.000000:e/1/0.000000/0.000000/8.000000/16.000000,box=7.000000/0.000000/9.000000:9.000000/16.000000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000,box=7.000000/0.001000/9.000000:9.000000/0.001000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000,box=7.000000/15.999000/9.000000:9.000000/15.999000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000,box=8.000000/0.000000/8.000000:8.000000/16.000000/16.000000:w/1/8.000000/0.000000/0.000000/16.000000:e/1/0.000000/0.000000/8.000000/16.000000:R/0/90/0,box=7.000000/0.000000/9.000000:9.000000/16.000000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:R/0/90/0,box=7.000000/0.001000/9.000000:9.000000/0.001000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:R/0/90/0,box=7.000000/15.999000/9.000000:9.000000/15.999000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%steel_bars,state=west:false/east:true/south:true/north:false,box=7.000000/0.001000/7.000000:9.000000/0.001000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:d/0/7.000000/7.000000/9.000000/9.000000,box=7.000000/15.999000/7.000000:9.000000/15.999000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:d/0/7.000000/7.000000/9.000000/9.000000,box=8.000000/0.000000/0.000000:8.000000/16.000000/8.000000:w/1/16.000000/0.000000/8.000000/16.000000:e/1/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=7.000000/0.000000/0.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000:R/0/90/0,box=7.000000/0.001000/0.000000:9.000000/0.001000/7.000000:u/0/7.000000/0.000000/9.000000/7.000000:d/0/9.000000/0.000000/7.000000/7.000000:R/0/90/0,box=7.000000/15.999000/0.000000:9.000000/15.999000/7.000000:u/0/7.000000/0.000000/9.000000/7.000000:d/0/9.000000/0.000000/7.000000/7.000000:R/0/90/0,box=8.000000/0.000000/8.000000:8.000000/16.000000/16.000000:w/1/8.000000/0.000000/0.000000/16.000000:e/1/0.000000/0.000000/8.000000/16.000000,box=7.000000/0.000000/9.000000:9.000000/16.000000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000,box=7.000000/0.001000/9.000000:9.000000/0.001000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000,box=7.000000/15.999000/9.000000:9.000000/15.999000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000
|
|
||||||
modellist:id=%steel_bars,state=west:true/east:true/south:false/north:false,box=7.000000/0.001000/7.000000:9.000000/0.001000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:d/0/7.000000/7.000000/9.000000/9.000000,box=7.000000/15.999000/7.000000:9.000000/15.999000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:d/0/7.000000/7.000000/9.000000/9.000000,box=8.000000/0.000000/0.000000:8.000000/16.000000/8.000000:w/1/16.000000/0.000000/8.000000/16.000000:e/1/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=7.000000/0.000000/0.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000:R/0/90/0,box=7.000000/0.001000/0.000000:9.000000/0.001000/7.000000:u/0/7.000000/0.000000/9.000000/7.000000:d/0/9.000000/0.000000/7.000000/7.000000:R/0/90/0,box=7.000000/15.999000/0.000000:9.000000/15.999000/7.000000:u/0/7.000000/0.000000/9.000000/7.000000:d/0/9.000000/0.000000/7.000000/7.000000:R/0/90/0,box=8.000000/0.000000/8.000000:8.000000/16.000000/16.000000:w/1/8.000000/0.000000/0.000000/16.000000:e/1/0.000000/0.000000/8.000000/16.000000:R/0/90/0,box=7.000000/0.000000/9.000000:9.000000/16.000000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:R/0/90/0,box=7.000000/0.001000/9.000000:9.000000/0.001000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:R/0/90/0,box=7.000000/15.999000/9.000000:9.000000/15.999000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%steel_bars,state=west:false/east:true/south:false/north:false,box=7.000000/0.001000/7.000000:9.000000/0.001000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:d/0/7.000000/7.000000/9.000000/9.000000,box=7.000000/15.999000/7.000000:9.000000/15.999000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:d/0/7.000000/7.000000/9.000000/9.000000,box=8.000000/0.000000/0.000000:8.000000/16.000000/8.000000:w/1/16.000000/0.000000/8.000000/16.000000:e/1/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=7.000000/0.000000/0.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000:R/0/90/0,box=7.000000/0.001000/0.000000:9.000000/0.001000/7.000000:u/0/7.000000/0.000000/9.000000/7.000000:d/0/9.000000/0.000000/7.000000/7.000000:R/0/90/0,box=7.000000/15.999000/0.000000:9.000000/15.999000/7.000000:u/0/7.000000/0.000000/9.000000/7.000000:d/0/9.000000/0.000000/7.000000/7.000000:R/0/90/0
|
|
||||||
modellist:id=%steel_bars,state=west:true/east:false/south:true/north:true,box=7.000000/0.001000/7.000000:9.000000/0.001000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:d/0/7.000000/7.000000/9.000000/9.000000,box=7.000000/15.999000/7.000000:9.000000/15.999000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:d/0/7.000000/7.000000/9.000000/9.000000,box=8.000000/0.000000/0.000000:8.000000/16.000000/8.000000:w/1/16.000000/0.000000/8.000000/16.000000:e/1/8.000000/0.000000/16.000000/16.000000,box=7.000000/0.000000/0.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000,box=7.000000/0.001000/0.000000:9.000000/0.001000/7.000000:u/0/7.000000/0.000000/9.000000/7.000000:d/0/9.000000/0.000000/7.000000/7.000000,box=7.000000/15.999000/0.000000:9.000000/15.999000/7.000000:u/0/7.000000/0.000000/9.000000/7.000000:d/0/9.000000/0.000000/7.000000/7.000000,box=8.000000/0.000000/8.000000:8.000000/16.000000/16.000000:w/1/8.000000/0.000000/0.000000/16.000000:e/1/0.000000/0.000000/8.000000/16.000000,box=7.000000/0.000000/9.000000:9.000000/16.000000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000,box=7.000000/0.001000/9.000000:9.000000/0.001000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000,box=7.000000/15.999000/9.000000:9.000000/15.999000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000,box=8.000000/0.000000/8.000000:8.000000/16.000000/16.000000:w/1/8.000000/0.000000/0.000000/16.000000:e/1/0.000000/0.000000/8.000000/16.000000:R/0/90/0,box=7.000000/0.000000/9.000000:9.000000/16.000000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:R/0/90/0,box=7.000000/0.001000/9.000000:9.000000/0.001000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:R/0/90/0,box=7.000000/15.999000/9.000000:9.000000/15.999000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%steel_bars,state=west:false/east:false/south:true/north:true,box=7.000000/0.001000/7.000000:9.000000/0.001000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:d/0/7.000000/7.000000/9.000000/9.000000,box=7.000000/15.999000/7.000000:9.000000/15.999000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:d/0/7.000000/7.000000/9.000000/9.000000,box=8.000000/0.000000/0.000000:8.000000/16.000000/8.000000:w/1/16.000000/0.000000/8.000000/16.000000:e/1/8.000000/0.000000/16.000000/16.000000,box=7.000000/0.000000/0.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000,box=7.000000/0.001000/0.000000:9.000000/0.001000/7.000000:u/0/7.000000/0.000000/9.000000/7.000000:d/0/9.000000/0.000000/7.000000/7.000000,box=7.000000/15.999000/0.000000:9.000000/15.999000/7.000000:u/0/7.000000/0.000000/9.000000/7.000000:d/0/9.000000/0.000000/7.000000/7.000000,box=8.000000/0.000000/8.000000:8.000000/16.000000/16.000000:w/1/8.000000/0.000000/0.000000/16.000000:e/1/0.000000/0.000000/8.000000/16.000000,box=7.000000/0.000000/9.000000:9.000000/16.000000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000,box=7.000000/0.001000/9.000000:9.000000/0.001000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000,box=7.000000/15.999000/9.000000:9.000000/15.999000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000
|
|
||||||
modellist:id=%steel_bars,state=west:true/east:false/south:false/north:true,box=7.000000/0.001000/7.000000:9.000000/0.001000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:d/0/7.000000/7.000000/9.000000/9.000000,box=7.000000/15.999000/7.000000:9.000000/15.999000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:d/0/7.000000/7.000000/9.000000/9.000000,box=8.000000/0.000000/0.000000:8.000000/16.000000/8.000000:w/1/16.000000/0.000000/8.000000/16.000000:e/1/8.000000/0.000000/16.000000/16.000000,box=7.000000/0.000000/0.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000,box=7.000000/0.001000/0.000000:9.000000/0.001000/7.000000:u/0/7.000000/0.000000/9.000000/7.000000:d/0/9.000000/0.000000/7.000000/7.000000,box=7.000000/15.999000/0.000000:9.000000/15.999000/7.000000:u/0/7.000000/0.000000/9.000000/7.000000:d/0/9.000000/0.000000/7.000000/7.000000,box=8.000000/0.000000/8.000000:8.000000/16.000000/16.000000:w/1/8.000000/0.000000/0.000000/16.000000:e/1/0.000000/0.000000/8.000000/16.000000:R/0/90/0,box=7.000000/0.000000/9.000000:9.000000/16.000000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:R/0/90/0,box=7.000000/0.001000/9.000000:9.000000/0.001000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:R/0/90/0,box=7.000000/15.999000/9.000000:9.000000/15.999000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%steel_bars,state=west:false/east:false/south:false/north:true,box=7.000000/0.001000/7.000000:9.000000/0.001000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:d/0/7.000000/7.000000/9.000000/9.000000,box=7.000000/15.999000/7.000000:9.000000/15.999000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:d/0/7.000000/7.000000/9.000000/9.000000,box=8.000000/0.000000/0.000000:8.000000/16.000000/8.000000:w/1/16.000000/0.000000/8.000000/16.000000:e/1/8.000000/0.000000/16.000000/16.000000,box=7.000000/0.000000/0.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000,box=7.000000/0.001000/0.000000:9.000000/0.001000/7.000000:u/0/7.000000/0.000000/9.000000/7.000000:d/0/9.000000/0.000000/7.000000/7.000000,box=7.000000/15.999000/0.000000:9.000000/15.999000/7.000000:u/0/7.000000/0.000000/9.000000/7.000000:d/0/9.000000/0.000000/7.000000/7.000000
|
|
||||||
modellist:id=%steel_bars,state=west:true/east:false/south:true/north:false,box=7.000000/0.001000/7.000000:9.000000/0.001000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:d/0/7.000000/7.000000/9.000000/9.000000,box=7.000000/15.999000/7.000000:9.000000/15.999000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:d/0/7.000000/7.000000/9.000000/9.000000,box=8.000000/0.000000/8.000000:8.000000/16.000000/16.000000:w/1/8.000000/0.000000/0.000000/16.000000:e/1/0.000000/0.000000/8.000000/16.000000,box=7.000000/0.000000/9.000000:9.000000/16.000000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000,box=7.000000/0.001000/9.000000:9.000000/0.001000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000,box=7.000000/15.999000/9.000000:9.000000/15.999000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000,box=8.000000/0.000000/8.000000:8.000000/16.000000/16.000000:w/1/8.000000/0.000000/0.000000/16.000000:e/1/0.000000/0.000000/8.000000/16.000000:R/0/90/0,box=7.000000/0.000000/9.000000:9.000000/16.000000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:R/0/90/0,box=7.000000/0.001000/9.000000:9.000000/0.001000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:R/0/90/0,box=7.000000/15.999000/9.000000:9.000000/15.999000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%steel_bars,state=west:false/east:false/south:true/north:false,box=7.000000/0.001000/7.000000:9.000000/0.001000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:d/0/7.000000/7.000000/9.000000/9.000000,box=7.000000/15.999000/7.000000:9.000000/15.999000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:d/0/7.000000/7.000000/9.000000/9.000000,box=8.000000/0.000000/8.000000:8.000000/16.000000/16.000000:w/1/8.000000/0.000000/0.000000/16.000000:e/1/0.000000/0.000000/8.000000/16.000000,box=7.000000/0.000000/9.000000:9.000000/16.000000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000,box=7.000000/0.001000/9.000000:9.000000/0.001000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000,box=7.000000/15.999000/9.000000:9.000000/15.999000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000
|
|
||||||
modellist:id=%steel_bars,state=west:true/east:false/south:false/north:false,box=7.000000/0.001000/7.000000:9.000000/0.001000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:d/0/7.000000/7.000000/9.000000/9.000000,box=7.000000/15.999000/7.000000:9.000000/15.999000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:d/0/7.000000/7.000000/9.000000/9.000000,box=8.000000/0.000000/8.000000:8.000000/16.000000/16.000000:w/1/8.000000/0.000000/0.000000/16.000000:e/1/0.000000/0.000000/8.000000/16.000000:R/0/90/0,box=7.000000/0.000000/9.000000:9.000000/16.000000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:R/0/90/0,box=7.000000/0.001000/9.000000:9.000000/0.001000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:R/0/90/0,box=7.000000/15.999000/9.000000:9.000000/15.999000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%steel_bars,state=west:false/east:false/south:false/north:false,box=8.000000/0.000000/7.000000:8.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/16.000000:e/0/9.000000/0.000000/7.000000/16.000000,box=7.000000/0.000000/8.000000:9.000000/16.000000/8.000000:s/0/9.000000/0.000000/7.000000/16.000000:n/0/7.000000/0.000000/9.000000/16.000000,box=7.000000/0.001000/7.000000:9.000000/0.001000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:d/0/7.000000/7.000000/9.000000/9.000000,box=7.000000/15.999000/7.000000:9.000000/15.999000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:d/0/7.000000/7.000000/9.000000/9.000000
|
|
||||||
modellist:id=%steel_catwalk,state=west:true/east:true/south:true/bottom:true/north:true,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s90/0/0.000000/0.000000/2.000000/16.000000:w90/0/0.000000/0.000000/2.000000/16.000000:e90/0/0.000000/0.000000/2.000000/16.000000:d180/0/16.000000/16.000000/0.000000/0.000000:n90/0/0.000000/0.000000/2.000000/16.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u90/1/0.000000/0.000000/16.000000/2.000000:s/1/6.000000/2.000000/8.000000/4.000000:w/1/0.000000/2.000000/16.000000/4.000000:e/1/0.000000/2.000000/16.000000/4.000000:d90/1/16.000000/3.000000/0.000000/4.000000:n/1/1.000000/2.000000/3.000000/4.000000:R/0/90/0,box=0.000000/2.000000/11.000000:2.000000/14.000000/13.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/5.000000/4.000000/3.000000/16.000000:w/1/5.000000/4.000000/3.000000/16.000000:e/1/5.000000/4.000000/3.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/5.000000/4.000000/3.000000/16.000000:R/0/90/0,box=0.000000/2.000000/3.000000:2.000000/14.000000/5.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/14.000000/4.000000/12.000000/16.000000:w/1/14.000000/4.000000/12.000000/16.000000:e/1/14.000000/4.000000/12.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/14.000000/4.000000/12.000000/16.000000:R/0/90/0,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u90/1/0.000000/0.000000/16.000000/2.000000:s/1/6.000000/2.000000/8.000000/4.000000:w/1/0.000000/2.000000/16.000000/4.000000:e/1/0.000000/2.000000/16.000000/4.000000:d90/1/16.000000/3.000000/0.000000/4.000000:n/1/1.000000/2.000000/3.000000/4.000000:R/0/-90/0,box=0.000000/2.000000/11.000000:2.000000/14.000000/13.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/5.000000/4.000000/3.000000/16.000000:w/1/5.000000/4.000000/3.000000/16.000000:e/1/5.000000/4.000000/3.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/5.000000/4.000000/3.000000/16.000000:R/0/-90/0,box=0.000000/2.000000/3.000000:2.000000/14.000000/5.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/14.000000/4.000000/12.000000/16.000000:w/1/14.000000/4.000000/12.000000/16.000000:e/1/14.000000/4.000000/12.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/14.000000/4.000000/12.000000/16.000000:R/0/-90/0,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u90/1/0.000000/0.000000/16.000000/2.000000:s/1/6.000000/2.000000/8.000000/4.000000:w/1/0.000000/2.000000/16.000000/4.000000:e/1/0.000000/2.000000/16.000000/4.000000:d90/1/16.000000/3.000000/0.000000/4.000000:n/1/1.000000/2.000000/3.000000/4.000000:R/0/180/0,box=0.000000/2.000000/11.000000:2.000000/14.000000/13.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/5.000000/4.000000/3.000000/16.000000:w/1/5.000000/4.000000/3.000000/16.000000:e/1/5.000000/4.000000/3.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/5.000000/4.000000/3.000000/16.000000:R/0/180/0,box=0.000000/2.000000/3.000000:2.000000/14.000000/5.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/14.000000/4.000000/12.000000/16.000000:w/1/14.000000/4.000000/12.000000/16.000000:e/1/14.000000/4.000000/12.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/14.000000/4.000000/12.000000/16.000000:R/0/180/0,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u90/1/0.000000/0.000000/16.000000/2.000000:s/1/6.000000/2.000000/8.000000/4.000000:w/1/0.000000/2.000000/16.000000/4.000000:e/1/0.000000/2.000000/16.000000/4.000000:d90/1/16.000000/3.000000/0.000000/4.000000:n/1/1.000000/2.000000/3.000000/4.000000,box=0.000000/2.000000/11.000000:2.000000/14.000000/13.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/5.000000/4.000000/3.000000/16.000000:w/1/5.000000/4.000000/3.000000/16.000000:e/1/5.000000/4.000000/3.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/5.000000/4.000000/3.000000/16.000000,box=0.000000/2.000000/3.000000:2.000000/14.000000/5.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/14.000000/4.000000/12.000000/16.000000:w/1/14.000000/4.000000/12.000000/16.000000:e/1/14.000000/4.000000/12.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/14.000000/4.000000/12.000000/16.000000
|
|
||||||
modellist:id=%steel_catwalk,state=west:false/east:true/south:true/bottom:true/north:true,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s90/0/0.000000/0.000000/2.000000/16.000000:w90/0/0.000000/0.000000/2.000000/16.000000:e90/0/0.000000/0.000000/2.000000/16.000000:d180/0/16.000000/16.000000/0.000000/0.000000:n90/0/0.000000/0.000000/2.000000/16.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u90/1/0.000000/0.000000/16.000000/2.000000:s/1/6.000000/2.000000/8.000000/4.000000:w/1/0.000000/2.000000/16.000000/4.000000:e/1/0.000000/2.000000/16.000000/4.000000:d90/1/16.000000/3.000000/0.000000/4.000000:n/1/1.000000/2.000000/3.000000/4.000000:R/0/90/0,box=0.000000/2.000000/11.000000:2.000000/14.000000/13.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/5.000000/4.000000/3.000000/16.000000:w/1/5.000000/4.000000/3.000000/16.000000:e/1/5.000000/4.000000/3.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/5.000000/4.000000/3.000000/16.000000:R/0/90/0,box=0.000000/2.000000/3.000000:2.000000/14.000000/5.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/14.000000/4.000000/12.000000/16.000000:w/1/14.000000/4.000000/12.000000/16.000000:e/1/14.000000/4.000000/12.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/14.000000/4.000000/12.000000/16.000000:R/0/90/0,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u90/1/0.000000/0.000000/16.000000/2.000000:s/1/6.000000/2.000000/8.000000/4.000000:w/1/0.000000/2.000000/16.000000/4.000000:e/1/0.000000/2.000000/16.000000/4.000000:d90/1/16.000000/3.000000/0.000000/4.000000:n/1/1.000000/2.000000/3.000000/4.000000:R/0/-90/0,box=0.000000/2.000000/11.000000:2.000000/14.000000/13.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/5.000000/4.000000/3.000000/16.000000:w/1/5.000000/4.000000/3.000000/16.000000:e/1/5.000000/4.000000/3.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/5.000000/4.000000/3.000000/16.000000:R/0/-90/0,box=0.000000/2.000000/3.000000:2.000000/14.000000/5.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/14.000000/4.000000/12.000000/16.000000:w/1/14.000000/4.000000/12.000000/16.000000:e/1/14.000000/4.000000/12.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/14.000000/4.000000/12.000000/16.000000:R/0/-90/0,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u90/1/0.000000/0.000000/16.000000/2.000000:s/1/6.000000/2.000000/8.000000/4.000000:w/1/0.000000/2.000000/16.000000/4.000000:e/1/0.000000/2.000000/16.000000/4.000000:d90/1/16.000000/3.000000/0.000000/4.000000:n/1/1.000000/2.000000/3.000000/4.000000:R/0/180/0,box=0.000000/2.000000/11.000000:2.000000/14.000000/13.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/5.000000/4.000000/3.000000/16.000000:w/1/5.000000/4.000000/3.000000/16.000000:e/1/5.000000/4.000000/3.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/5.000000/4.000000/3.000000/16.000000:R/0/180/0,box=0.000000/2.000000/3.000000:2.000000/14.000000/5.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/14.000000/4.000000/12.000000/16.000000:w/1/14.000000/4.000000/12.000000/16.000000:e/1/14.000000/4.000000/12.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/14.000000/4.000000/12.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%steel_catwalk,state=west:true/east:true/south:false/bottom:true/north:true,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s90/0/0.000000/0.000000/2.000000/16.000000:w90/0/0.000000/0.000000/2.000000/16.000000:e90/0/0.000000/0.000000/2.000000/16.000000:d180/0/16.000000/16.000000/0.000000/0.000000:n90/0/0.000000/0.000000/2.000000/16.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u90/1/0.000000/0.000000/16.000000/2.000000:s/1/6.000000/2.000000/8.000000/4.000000:w/1/0.000000/2.000000/16.000000/4.000000:e/1/0.000000/2.000000/16.000000/4.000000:d90/1/16.000000/3.000000/0.000000/4.000000:n/1/1.000000/2.000000/3.000000/4.000000:R/0/90/0,box=0.000000/2.000000/11.000000:2.000000/14.000000/13.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/5.000000/4.000000/3.000000/16.000000:w/1/5.000000/4.000000/3.000000/16.000000:e/1/5.000000/4.000000/3.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/5.000000/4.000000/3.000000/16.000000:R/0/90/0,box=0.000000/2.000000/3.000000:2.000000/14.000000/5.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/14.000000/4.000000/12.000000/16.000000:w/1/14.000000/4.000000/12.000000/16.000000:e/1/14.000000/4.000000/12.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/14.000000/4.000000/12.000000/16.000000:R/0/90/0,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u90/1/0.000000/0.000000/16.000000/2.000000:s/1/6.000000/2.000000/8.000000/4.000000:w/1/0.000000/2.000000/16.000000/4.000000:e/1/0.000000/2.000000/16.000000/4.000000:d90/1/16.000000/3.000000/0.000000/4.000000:n/1/1.000000/2.000000/3.000000/4.000000:R/0/180/0,box=0.000000/2.000000/11.000000:2.000000/14.000000/13.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/5.000000/4.000000/3.000000/16.000000:w/1/5.000000/4.000000/3.000000/16.000000:e/1/5.000000/4.000000/3.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/5.000000/4.000000/3.000000/16.000000:R/0/180/0,box=0.000000/2.000000/3.000000:2.000000/14.000000/5.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/14.000000/4.000000/12.000000/16.000000:w/1/14.000000/4.000000/12.000000/16.000000:e/1/14.000000/4.000000/12.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/14.000000/4.000000/12.000000/16.000000:R/0/180/0,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u90/1/0.000000/0.000000/16.000000/2.000000:s/1/6.000000/2.000000/8.000000/4.000000:w/1/0.000000/2.000000/16.000000/4.000000:e/1/0.000000/2.000000/16.000000/4.000000:d90/1/16.000000/3.000000/0.000000/4.000000:n/1/1.000000/2.000000/3.000000/4.000000,box=0.000000/2.000000/11.000000:2.000000/14.000000/13.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/5.000000/4.000000/3.000000/16.000000:w/1/5.000000/4.000000/3.000000/16.000000:e/1/5.000000/4.000000/3.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/5.000000/4.000000/3.000000/16.000000,box=0.000000/2.000000/3.000000:2.000000/14.000000/5.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/14.000000/4.000000/12.000000/16.000000:w/1/14.000000/4.000000/12.000000/16.000000:e/1/14.000000/4.000000/12.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/14.000000/4.000000/12.000000/16.000000
|
|
||||||
modellist:id=%steel_catwalk,state=west:false/east:true/south:false/bottom:true/north:true,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s90/0/0.000000/0.000000/2.000000/16.000000:w90/0/0.000000/0.000000/2.000000/16.000000:e90/0/0.000000/0.000000/2.000000/16.000000:d180/0/16.000000/16.000000/0.000000/0.000000:n90/0/0.000000/0.000000/2.000000/16.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u90/1/0.000000/0.000000/16.000000/2.000000:s/1/6.000000/2.000000/8.000000/4.000000:w/1/0.000000/2.000000/16.000000/4.000000:e/1/0.000000/2.000000/16.000000/4.000000:d90/1/16.000000/3.000000/0.000000/4.000000:n/1/1.000000/2.000000/3.000000/4.000000:R/0/90/0,box=0.000000/2.000000/11.000000:2.000000/14.000000/13.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/5.000000/4.000000/3.000000/16.000000:w/1/5.000000/4.000000/3.000000/16.000000:e/1/5.000000/4.000000/3.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/5.000000/4.000000/3.000000/16.000000:R/0/90/0,box=0.000000/2.000000/3.000000:2.000000/14.000000/5.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/14.000000/4.000000/12.000000/16.000000:w/1/14.000000/4.000000/12.000000/16.000000:e/1/14.000000/4.000000/12.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/14.000000/4.000000/12.000000/16.000000:R/0/90/0,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u90/1/0.000000/0.000000/16.000000/2.000000:s/1/6.000000/2.000000/8.000000/4.000000:w/1/0.000000/2.000000/16.000000/4.000000:e/1/0.000000/2.000000/16.000000/4.000000:d90/1/16.000000/3.000000/0.000000/4.000000:n/1/1.000000/2.000000/3.000000/4.000000:R/0/180/0,box=0.000000/2.000000/11.000000:2.000000/14.000000/13.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/5.000000/4.000000/3.000000/16.000000:w/1/5.000000/4.000000/3.000000/16.000000:e/1/5.000000/4.000000/3.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/5.000000/4.000000/3.000000/16.000000:R/0/180/0,box=0.000000/2.000000/3.000000:2.000000/14.000000/5.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/14.000000/4.000000/12.000000/16.000000:w/1/14.000000/4.000000/12.000000/16.000000:e/1/14.000000/4.000000/12.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/14.000000/4.000000/12.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%steel_catwalk,state=west:true/east:true/south:true/bottom:true/north:false,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s90/0/0.000000/0.000000/2.000000/16.000000:w90/0/0.000000/0.000000/2.000000/16.000000:e90/0/0.000000/0.000000/2.000000/16.000000:d180/0/16.000000/16.000000/0.000000/0.000000:n90/0/0.000000/0.000000/2.000000/16.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u90/1/0.000000/0.000000/16.000000/2.000000:s/1/6.000000/2.000000/8.000000/4.000000:w/1/0.000000/2.000000/16.000000/4.000000:e/1/0.000000/2.000000/16.000000/4.000000:d90/1/16.000000/3.000000/0.000000/4.000000:n/1/1.000000/2.000000/3.000000/4.000000:R/0/-90/0,box=0.000000/2.000000/11.000000:2.000000/14.000000/13.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/5.000000/4.000000/3.000000/16.000000:w/1/5.000000/4.000000/3.000000/16.000000:e/1/5.000000/4.000000/3.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/5.000000/4.000000/3.000000/16.000000:R/0/-90/0,box=0.000000/2.000000/3.000000:2.000000/14.000000/5.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/14.000000/4.000000/12.000000/16.000000:w/1/14.000000/4.000000/12.000000/16.000000:e/1/14.000000/4.000000/12.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/14.000000/4.000000/12.000000/16.000000:R/0/-90/0,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u90/1/0.000000/0.000000/16.000000/2.000000:s/1/6.000000/2.000000/8.000000/4.000000:w/1/0.000000/2.000000/16.000000/4.000000:e/1/0.000000/2.000000/16.000000/4.000000:d90/1/16.000000/3.000000/0.000000/4.000000:n/1/1.000000/2.000000/3.000000/4.000000:R/0/180/0,box=0.000000/2.000000/11.000000:2.000000/14.000000/13.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/5.000000/4.000000/3.000000/16.000000:w/1/5.000000/4.000000/3.000000/16.000000:e/1/5.000000/4.000000/3.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/5.000000/4.000000/3.000000/16.000000:R/0/180/0,box=0.000000/2.000000/3.000000:2.000000/14.000000/5.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/14.000000/4.000000/12.000000/16.000000:w/1/14.000000/4.000000/12.000000/16.000000:e/1/14.000000/4.000000/12.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/14.000000/4.000000/12.000000/16.000000:R/0/180/0,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u90/1/0.000000/0.000000/16.000000/2.000000:s/1/6.000000/2.000000/8.000000/4.000000:w/1/0.000000/2.000000/16.000000/4.000000:e/1/0.000000/2.000000/16.000000/4.000000:d90/1/16.000000/3.000000/0.000000/4.000000:n/1/1.000000/2.000000/3.000000/4.000000,box=0.000000/2.000000/11.000000:2.000000/14.000000/13.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/5.000000/4.000000/3.000000/16.000000:w/1/5.000000/4.000000/3.000000/16.000000:e/1/5.000000/4.000000/3.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/5.000000/4.000000/3.000000/16.000000,box=0.000000/2.000000/3.000000:2.000000/14.000000/5.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/14.000000/4.000000/12.000000/16.000000:w/1/14.000000/4.000000/12.000000/16.000000:e/1/14.000000/4.000000/12.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/14.000000/4.000000/12.000000/16.000000
|
|
||||||
modellist:id=%steel_catwalk,state=west:false/east:true/south:true/bottom:true/north:false,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s90/0/0.000000/0.000000/2.000000/16.000000:w90/0/0.000000/0.000000/2.000000/16.000000:e90/0/0.000000/0.000000/2.000000/16.000000:d180/0/16.000000/16.000000/0.000000/0.000000:n90/0/0.000000/0.000000/2.000000/16.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u90/1/0.000000/0.000000/16.000000/2.000000:s/1/6.000000/2.000000/8.000000/4.000000:w/1/0.000000/2.000000/16.000000/4.000000:e/1/0.000000/2.000000/16.000000/4.000000:d90/1/16.000000/3.000000/0.000000/4.000000:n/1/1.000000/2.000000/3.000000/4.000000:R/0/-90/0,box=0.000000/2.000000/11.000000:2.000000/14.000000/13.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/5.000000/4.000000/3.000000/16.000000:w/1/5.000000/4.000000/3.000000/16.000000:e/1/5.000000/4.000000/3.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/5.000000/4.000000/3.000000/16.000000:R/0/-90/0,box=0.000000/2.000000/3.000000:2.000000/14.000000/5.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/14.000000/4.000000/12.000000/16.000000:w/1/14.000000/4.000000/12.000000/16.000000:e/1/14.000000/4.000000/12.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/14.000000/4.000000/12.000000/16.000000:R/0/-90/0,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u90/1/0.000000/0.000000/16.000000/2.000000:s/1/6.000000/2.000000/8.000000/4.000000:w/1/0.000000/2.000000/16.000000/4.000000:e/1/0.000000/2.000000/16.000000/4.000000:d90/1/16.000000/3.000000/0.000000/4.000000:n/1/1.000000/2.000000/3.000000/4.000000:R/0/180/0,box=0.000000/2.000000/11.000000:2.000000/14.000000/13.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/5.000000/4.000000/3.000000/16.000000:w/1/5.000000/4.000000/3.000000/16.000000:e/1/5.000000/4.000000/3.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/5.000000/4.000000/3.000000/16.000000:R/0/180/0,box=0.000000/2.000000/3.000000:2.000000/14.000000/5.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/14.000000/4.000000/12.000000/16.000000:w/1/14.000000/4.000000/12.000000/16.000000:e/1/14.000000/4.000000/12.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/14.000000/4.000000/12.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%steel_catwalk,state=west:true/east:true/south:false/bottom:true/north:false,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s90/0/0.000000/0.000000/2.000000/16.000000:w90/0/0.000000/0.000000/2.000000/16.000000:e90/0/0.000000/0.000000/2.000000/16.000000:d180/0/16.000000/16.000000/0.000000/0.000000:n90/0/0.000000/0.000000/2.000000/16.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u90/1/0.000000/0.000000/16.000000/2.000000:s/1/6.000000/2.000000/8.000000/4.000000:w/1/0.000000/2.000000/16.000000/4.000000:e/1/0.000000/2.000000/16.000000/4.000000:d90/1/16.000000/3.000000/0.000000/4.000000:n/1/1.000000/2.000000/3.000000/4.000000:R/0/180/0,box=0.000000/2.000000/11.000000:2.000000/14.000000/13.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/5.000000/4.000000/3.000000/16.000000:w/1/5.000000/4.000000/3.000000/16.000000:e/1/5.000000/4.000000/3.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/5.000000/4.000000/3.000000/16.000000:R/0/180/0,box=0.000000/2.000000/3.000000:2.000000/14.000000/5.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/14.000000/4.000000/12.000000/16.000000:w/1/14.000000/4.000000/12.000000/16.000000:e/1/14.000000/4.000000/12.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/14.000000/4.000000/12.000000/16.000000:R/0/180/0,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u90/1/0.000000/0.000000/16.000000/2.000000:s/1/6.000000/2.000000/8.000000/4.000000:w/1/0.000000/2.000000/16.000000/4.000000:e/1/0.000000/2.000000/16.000000/4.000000:d90/1/16.000000/3.000000/0.000000/4.000000:n/1/1.000000/2.000000/3.000000/4.000000,box=0.000000/2.000000/11.000000:2.000000/14.000000/13.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/5.000000/4.000000/3.000000/16.000000:w/1/5.000000/4.000000/3.000000/16.000000:e/1/5.000000/4.000000/3.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/5.000000/4.000000/3.000000/16.000000,box=0.000000/2.000000/3.000000:2.000000/14.000000/5.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/14.000000/4.000000/12.000000/16.000000:w/1/14.000000/4.000000/12.000000/16.000000:e/1/14.000000/4.000000/12.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/14.000000/4.000000/12.000000/16.000000
|
|
||||||
modellist:id=%steel_catwalk,state=west:false/east:true/south:false/bottom:true/north:false,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s90/0/0.000000/0.000000/2.000000/16.000000:w90/0/0.000000/0.000000/2.000000/16.000000:e90/0/0.000000/0.000000/2.000000/16.000000:d180/0/16.000000/16.000000/0.000000/0.000000:n90/0/0.000000/0.000000/2.000000/16.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u90/1/0.000000/0.000000/16.000000/2.000000:s/1/6.000000/2.000000/8.000000/4.000000:w/1/0.000000/2.000000/16.000000/4.000000:e/1/0.000000/2.000000/16.000000/4.000000:d90/1/16.000000/3.000000/0.000000/4.000000:n/1/1.000000/2.000000/3.000000/4.000000:R/0/180/0,box=0.000000/2.000000/11.000000:2.000000/14.000000/13.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/5.000000/4.000000/3.000000/16.000000:w/1/5.000000/4.000000/3.000000/16.000000:e/1/5.000000/4.000000/3.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/5.000000/4.000000/3.000000/16.000000:R/0/180/0,box=0.000000/2.000000/3.000000:2.000000/14.000000/5.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/14.000000/4.000000/12.000000/16.000000:w/1/14.000000/4.000000/12.000000/16.000000:e/1/14.000000/4.000000/12.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/14.000000/4.000000/12.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%steel_catwalk,state=west:true/east:false/south:true/bottom:true/north:true,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s90/0/0.000000/0.000000/2.000000/16.000000:w90/0/0.000000/0.000000/2.000000/16.000000:e90/0/0.000000/0.000000/2.000000/16.000000:d180/0/16.000000/16.000000/0.000000/0.000000:n90/0/0.000000/0.000000/2.000000/16.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u90/1/0.000000/0.000000/16.000000/2.000000:s/1/6.000000/2.000000/8.000000/4.000000:w/1/0.000000/2.000000/16.000000/4.000000:e/1/0.000000/2.000000/16.000000/4.000000:d90/1/16.000000/3.000000/0.000000/4.000000:n/1/1.000000/2.000000/3.000000/4.000000:R/0/90/0,box=0.000000/2.000000/11.000000:2.000000/14.000000/13.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/5.000000/4.000000/3.000000/16.000000:w/1/5.000000/4.000000/3.000000/16.000000:e/1/5.000000/4.000000/3.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/5.000000/4.000000/3.000000/16.000000:R/0/90/0,box=0.000000/2.000000/3.000000:2.000000/14.000000/5.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/14.000000/4.000000/12.000000/16.000000:w/1/14.000000/4.000000/12.000000/16.000000:e/1/14.000000/4.000000/12.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/14.000000/4.000000/12.000000/16.000000:R/0/90/0,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u90/1/0.000000/0.000000/16.000000/2.000000:s/1/6.000000/2.000000/8.000000/4.000000:w/1/0.000000/2.000000/16.000000/4.000000:e/1/0.000000/2.000000/16.000000/4.000000:d90/1/16.000000/3.000000/0.000000/4.000000:n/1/1.000000/2.000000/3.000000/4.000000:R/0/-90/0,box=0.000000/2.000000/11.000000:2.000000/14.000000/13.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/5.000000/4.000000/3.000000/16.000000:w/1/5.000000/4.000000/3.000000/16.000000:e/1/5.000000/4.000000/3.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/5.000000/4.000000/3.000000/16.000000:R/0/-90/0,box=0.000000/2.000000/3.000000:2.000000/14.000000/5.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/14.000000/4.000000/12.000000/16.000000:w/1/14.000000/4.000000/12.000000/16.000000:e/1/14.000000/4.000000/12.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/14.000000/4.000000/12.000000/16.000000:R/0/-90/0,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u90/1/0.000000/0.000000/16.000000/2.000000:s/1/6.000000/2.000000/8.000000/4.000000:w/1/0.000000/2.000000/16.000000/4.000000:e/1/0.000000/2.000000/16.000000/4.000000:d90/1/16.000000/3.000000/0.000000/4.000000:n/1/1.000000/2.000000/3.000000/4.000000,box=0.000000/2.000000/11.000000:2.000000/14.000000/13.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/5.000000/4.000000/3.000000/16.000000:w/1/5.000000/4.000000/3.000000/16.000000:e/1/5.000000/4.000000/3.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/5.000000/4.000000/3.000000/16.000000,box=0.000000/2.000000/3.000000:2.000000/14.000000/5.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/14.000000/4.000000/12.000000/16.000000:w/1/14.000000/4.000000/12.000000/16.000000:e/1/14.000000/4.000000/12.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/14.000000/4.000000/12.000000/16.000000
|
|
||||||
modellist:id=%steel_catwalk,state=west:false/east:false/south:true/bottom:true/north:true,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s90/0/0.000000/0.000000/2.000000/16.000000:w90/0/0.000000/0.000000/2.000000/16.000000:e90/0/0.000000/0.000000/2.000000/16.000000:d180/0/16.000000/16.000000/0.000000/0.000000:n90/0/0.000000/0.000000/2.000000/16.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u90/1/0.000000/0.000000/16.000000/2.000000:s/1/6.000000/2.000000/8.000000/4.000000:w/1/0.000000/2.000000/16.000000/4.000000:e/1/0.000000/2.000000/16.000000/4.000000:d90/1/16.000000/3.000000/0.000000/4.000000:n/1/1.000000/2.000000/3.000000/4.000000:R/0/90/0,box=0.000000/2.000000/11.000000:2.000000/14.000000/13.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/5.000000/4.000000/3.000000/16.000000:w/1/5.000000/4.000000/3.000000/16.000000:e/1/5.000000/4.000000/3.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/5.000000/4.000000/3.000000/16.000000:R/0/90/0,box=0.000000/2.000000/3.000000:2.000000/14.000000/5.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/14.000000/4.000000/12.000000/16.000000:w/1/14.000000/4.000000/12.000000/16.000000:e/1/14.000000/4.000000/12.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/14.000000/4.000000/12.000000/16.000000:R/0/90/0,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u90/1/0.000000/0.000000/16.000000/2.000000:s/1/6.000000/2.000000/8.000000/4.000000:w/1/0.000000/2.000000/16.000000/4.000000:e/1/0.000000/2.000000/16.000000/4.000000:d90/1/16.000000/3.000000/0.000000/4.000000:n/1/1.000000/2.000000/3.000000/4.000000:R/0/-90/0,box=0.000000/2.000000/11.000000:2.000000/14.000000/13.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/5.000000/4.000000/3.000000/16.000000:w/1/5.000000/4.000000/3.000000/16.000000:e/1/5.000000/4.000000/3.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/5.000000/4.000000/3.000000/16.000000:R/0/-90/0,box=0.000000/2.000000/3.000000:2.000000/14.000000/5.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/14.000000/4.000000/12.000000/16.000000:w/1/14.000000/4.000000/12.000000/16.000000:e/1/14.000000/4.000000/12.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/14.000000/4.000000/12.000000/16.000000:R/0/-90/0
|
|
||||||
modellist:id=%steel_catwalk,state=west:true/east:false/south:false/bottom:true/north:true,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s90/0/0.000000/0.000000/2.000000/16.000000:w90/0/0.000000/0.000000/2.000000/16.000000:e90/0/0.000000/0.000000/2.000000/16.000000:d180/0/16.000000/16.000000/0.000000/0.000000:n90/0/0.000000/0.000000/2.000000/16.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u90/1/0.000000/0.000000/16.000000/2.000000:s/1/6.000000/2.000000/8.000000/4.000000:w/1/0.000000/2.000000/16.000000/4.000000:e/1/0.000000/2.000000/16.000000/4.000000:d90/1/16.000000/3.000000/0.000000/4.000000:n/1/1.000000/2.000000/3.000000/4.000000:R/0/90/0,box=0.000000/2.000000/11.000000:2.000000/14.000000/13.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/5.000000/4.000000/3.000000/16.000000:w/1/5.000000/4.000000/3.000000/16.000000:e/1/5.000000/4.000000/3.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/5.000000/4.000000/3.000000/16.000000:R/0/90/0,box=0.000000/2.000000/3.000000:2.000000/14.000000/5.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/14.000000/4.000000/12.000000/16.000000:w/1/14.000000/4.000000/12.000000/16.000000:e/1/14.000000/4.000000/12.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/14.000000/4.000000/12.000000/16.000000:R/0/90/0,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u90/1/0.000000/0.000000/16.000000/2.000000:s/1/6.000000/2.000000/8.000000/4.000000:w/1/0.000000/2.000000/16.000000/4.000000:e/1/0.000000/2.000000/16.000000/4.000000:d90/1/16.000000/3.000000/0.000000/4.000000:n/1/1.000000/2.000000/3.000000/4.000000,box=0.000000/2.000000/11.000000:2.000000/14.000000/13.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/5.000000/4.000000/3.000000/16.000000:w/1/5.000000/4.000000/3.000000/16.000000:e/1/5.000000/4.000000/3.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/5.000000/4.000000/3.000000/16.000000,box=0.000000/2.000000/3.000000:2.000000/14.000000/5.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/14.000000/4.000000/12.000000/16.000000:w/1/14.000000/4.000000/12.000000/16.000000:e/1/14.000000/4.000000/12.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/14.000000/4.000000/12.000000/16.000000
|
|
||||||
modellist:id=%steel_catwalk,state=west:false/east:false/south:false/bottom:true/north:true,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s90/0/0.000000/0.000000/2.000000/16.000000:w90/0/0.000000/0.000000/2.000000/16.000000:e90/0/0.000000/0.000000/2.000000/16.000000:d180/0/16.000000/16.000000/0.000000/0.000000:n90/0/0.000000/0.000000/2.000000/16.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u90/1/0.000000/0.000000/16.000000/2.000000:s/1/6.000000/2.000000/8.000000/4.000000:w/1/0.000000/2.000000/16.000000/4.000000:e/1/0.000000/2.000000/16.000000/4.000000:d90/1/16.000000/3.000000/0.000000/4.000000:n/1/1.000000/2.000000/3.000000/4.000000:R/0/90/0,box=0.000000/2.000000/11.000000:2.000000/14.000000/13.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/5.000000/4.000000/3.000000/16.000000:w/1/5.000000/4.000000/3.000000/16.000000:e/1/5.000000/4.000000/3.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/5.000000/4.000000/3.000000/16.000000:R/0/90/0,box=0.000000/2.000000/3.000000:2.000000/14.000000/5.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/14.000000/4.000000/12.000000/16.000000:w/1/14.000000/4.000000/12.000000/16.000000:e/1/14.000000/4.000000/12.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/14.000000/4.000000/12.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%steel_catwalk,state=west:true/east:false/south:true/bottom:true/north:false,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s90/0/0.000000/0.000000/2.000000/16.000000:w90/0/0.000000/0.000000/2.000000/16.000000:e90/0/0.000000/0.000000/2.000000/16.000000:d180/0/16.000000/16.000000/0.000000/0.000000:n90/0/0.000000/0.000000/2.000000/16.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u90/1/0.000000/0.000000/16.000000/2.000000:s/1/6.000000/2.000000/8.000000/4.000000:w/1/0.000000/2.000000/16.000000/4.000000:e/1/0.000000/2.000000/16.000000/4.000000:d90/1/16.000000/3.000000/0.000000/4.000000:n/1/1.000000/2.000000/3.000000/4.000000:R/0/-90/0,box=0.000000/2.000000/11.000000:2.000000/14.000000/13.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/5.000000/4.000000/3.000000/16.000000:w/1/5.000000/4.000000/3.000000/16.000000:e/1/5.000000/4.000000/3.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/5.000000/4.000000/3.000000/16.000000:R/0/-90/0,box=0.000000/2.000000/3.000000:2.000000/14.000000/5.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/14.000000/4.000000/12.000000/16.000000:w/1/14.000000/4.000000/12.000000/16.000000:e/1/14.000000/4.000000/12.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/14.000000/4.000000/12.000000/16.000000:R/0/-90/0,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u90/1/0.000000/0.000000/16.000000/2.000000:s/1/6.000000/2.000000/8.000000/4.000000:w/1/0.000000/2.000000/16.000000/4.000000:e/1/0.000000/2.000000/16.000000/4.000000:d90/1/16.000000/3.000000/0.000000/4.000000:n/1/1.000000/2.000000/3.000000/4.000000,box=0.000000/2.000000/11.000000:2.000000/14.000000/13.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/5.000000/4.000000/3.000000/16.000000:w/1/5.000000/4.000000/3.000000/16.000000:e/1/5.000000/4.000000/3.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/5.000000/4.000000/3.000000/16.000000,box=0.000000/2.000000/3.000000:2.000000/14.000000/5.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/14.000000/4.000000/12.000000/16.000000:w/1/14.000000/4.000000/12.000000/16.000000:e/1/14.000000/4.000000/12.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/14.000000/4.000000/12.000000/16.000000
|
|
||||||
modellist:id=%steel_catwalk,state=west:false/east:false/south:true/bottom:true/north:false,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s90/0/0.000000/0.000000/2.000000/16.000000:w90/0/0.000000/0.000000/2.000000/16.000000:e90/0/0.000000/0.000000/2.000000/16.000000:d180/0/16.000000/16.000000/0.000000/0.000000:n90/0/0.000000/0.000000/2.000000/16.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u90/1/0.000000/0.000000/16.000000/2.000000:s/1/6.000000/2.000000/8.000000/4.000000:w/1/0.000000/2.000000/16.000000/4.000000:e/1/0.000000/2.000000/16.000000/4.000000:d90/1/16.000000/3.000000/0.000000/4.000000:n/1/1.000000/2.000000/3.000000/4.000000:R/0/-90/0,box=0.000000/2.000000/11.000000:2.000000/14.000000/13.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/5.000000/4.000000/3.000000/16.000000:w/1/5.000000/4.000000/3.000000/16.000000:e/1/5.000000/4.000000/3.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/5.000000/4.000000/3.000000/16.000000:R/0/-90/0,box=0.000000/2.000000/3.000000:2.000000/14.000000/5.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/14.000000/4.000000/12.000000/16.000000:w/1/14.000000/4.000000/12.000000/16.000000:e/1/14.000000/4.000000/12.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/14.000000/4.000000/12.000000/16.000000:R/0/-90/0
|
|
||||||
modellist:id=%steel_catwalk,state=west:true/east:false/south:false/bottom:true/north:false,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s90/0/0.000000/0.000000/2.000000/16.000000:w90/0/0.000000/0.000000/2.000000/16.000000:e90/0/0.000000/0.000000/2.000000/16.000000:d180/0/16.000000/16.000000/0.000000/0.000000:n90/0/0.000000/0.000000/2.000000/16.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u90/1/0.000000/0.000000/16.000000/2.000000:s/1/6.000000/2.000000/8.000000/4.000000:w/1/0.000000/2.000000/16.000000/4.000000:e/1/0.000000/2.000000/16.000000/4.000000:d90/1/16.000000/3.000000/0.000000/4.000000:n/1/1.000000/2.000000/3.000000/4.000000,box=0.000000/2.000000/11.000000:2.000000/14.000000/13.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/5.000000/4.000000/3.000000/16.000000:w/1/5.000000/4.000000/3.000000/16.000000:e/1/5.000000/4.000000/3.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/5.000000/4.000000/3.000000/16.000000,box=0.000000/2.000000/3.000000:2.000000/14.000000/5.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/14.000000/4.000000/12.000000/16.000000:w/1/14.000000/4.000000/12.000000/16.000000:e/1/14.000000/4.000000/12.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/14.000000/4.000000/12.000000/16.000000
|
|
||||||
modellist:id=%steel_catwalk,state=west:false/east:false/south:false/bottom:true/north:false,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s90/0/0.000000/0.000000/2.000000/16.000000:w90/0/0.000000/0.000000/2.000000/16.000000:e90/0/0.000000/0.000000/2.000000/16.000000:d180/0/16.000000/16.000000/0.000000/0.000000:n90/0/0.000000/0.000000/2.000000/16.000000
|
|
||||||
modellist:id=%steel_catwalk,state=west:true/east:true/south:true/bottom:false/north:true,box=0.000000/-2.000000/0.000000:16.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s90/0/0.000000/0.000000/2.000000/16.000000:w90/0/0.000000/0.000000/2.000000/16.000000:e90/0/0.000000/0.000000/2.000000/16.000000:d180/0/16.000000/16.000000/0.000000/0.000000:n90/0/0.000000/0.000000/2.000000/16.000000,box=0.000000/12.000000/0.000000:2.000000/14.000000/16.000000:u90/1/0.000000/0.000000/16.000000/2.000000:s/1/6.000000/2.000000/8.000000/4.000000:w/1/0.000000/2.000000/16.000000/4.000000:e/1/0.000000/2.000000/16.000000/4.000000:d90/1/16.000000/3.000000/0.000000/4.000000:n/1/1.000000/2.000000/3.000000/4.000000:R/0/90/0,box=0.000000/0.000000/11.000000:2.000000/12.000000/13.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/5.000000/4.000000/3.000000/16.000000:w/1/5.000000/4.000000/3.000000/16.000000:e/1/5.000000/4.000000/3.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/5.000000/4.000000/3.000000/16.000000:R/0/90/0,box=0.000000/0.000000/3.000000:2.000000/12.000000/5.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/14.000000/4.000000/12.000000/16.000000:w/1/14.000000/4.000000/12.000000/16.000000:e/1/14.000000/4.000000/12.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/14.000000/4.000000/12.000000/16.000000:R/0/90/0,box=0.000000/12.000000/0.000000:2.000000/14.000000/16.000000:u90/1/0.000000/0.000000/16.000000/2.000000:s/1/6.000000/2.000000/8.000000/4.000000:w/1/0.000000/2.000000/16.000000/4.000000:e/1/0.000000/2.000000/16.000000/4.000000:d90/1/16.000000/3.000000/0.000000/4.000000:n/1/1.000000/2.000000/3.000000/4.000000:R/0/-90/0,box=0.000000/0.000000/11.000000:2.000000/12.000000/13.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/5.000000/4.000000/3.000000/16.000000:w/1/5.000000/4.000000/3.000000/16.000000:e/1/5.000000/4.000000/3.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/5.000000/4.000000/3.000000/16.000000:R/0/-90/0,box=0.000000/0.000000/3.000000:2.000000/12.000000/5.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/14.000000/4.000000/12.000000/16.000000:w/1/14.000000/4.000000/12.000000/16.000000:e/1/14.000000/4.000000/12.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/14.000000/4.000000/12.000000/16.000000:R/0/-90/0,box=0.000000/12.000000/0.000000:2.000000/14.000000/16.000000:u90/1/0.000000/0.000000/16.000000/2.000000:s/1/6.000000/2.000000/8.000000/4.000000:w/1/0.000000/2.000000/16.000000/4.000000:e/1/0.000000/2.000000/16.000000/4.000000:d90/1/16.000000/3.000000/0.000000/4.000000:n/1/1.000000/2.000000/3.000000/4.000000:R/0/180/0,box=0.000000/0.000000/11.000000:2.000000/12.000000/13.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/5.000000/4.000000/3.000000/16.000000:w/1/5.000000/4.000000/3.000000/16.000000:e/1/5.000000/4.000000/3.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/5.000000/4.000000/3.000000/16.000000:R/0/180/0,box=0.000000/0.000000/3.000000:2.000000/12.000000/5.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/14.000000/4.000000/12.000000/16.000000:w/1/14.000000/4.000000/12.000000/16.000000:e/1/14.000000/4.000000/12.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/14.000000/4.000000/12.000000/16.000000:R/0/180/0,box=0.000000/12.000000/0.000000:2.000000/14.000000/16.000000:u90/1/0.000000/0.000000/16.000000/2.000000:s/1/6.000000/2.000000/8.000000/4.000000:w/1/0.000000/2.000000/16.000000/4.000000:e/1/0.000000/2.000000/16.000000/4.000000:d90/1/16.000000/3.000000/0.000000/4.000000:n/1/1.000000/2.000000/3.000000/4.000000,box=0.000000/0.000000/11.000000:2.000000/12.000000/13.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/5.000000/4.000000/3.000000/16.000000:w/1/5.000000/4.000000/3.000000/16.000000:e/1/5.000000/4.000000/3.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/5.000000/4.000000/3.000000/16.000000,box=0.000000/0.000000/3.000000:2.000000/12.000000/5.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/14.000000/4.000000/12.000000/16.000000:w/1/14.000000/4.000000/12.000000/16.000000:e/1/14.000000/4.000000/12.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/14.000000/4.000000/12.000000/16.000000
|
|
||||||
modellist:id=%steel_catwalk,state=west:false/east:true/south:true/bottom:false/north:true,box=0.000000/-2.000000/0.000000:16.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s90/0/0.000000/0.000000/2.000000/16.000000:w90/0/0.000000/0.000000/2.000000/16.000000:e90/0/0.000000/0.000000/2.000000/16.000000:d180/0/16.000000/16.000000/0.000000/0.000000:n90/0/0.000000/0.000000/2.000000/16.000000,box=0.000000/12.000000/0.000000:2.000000/14.000000/16.000000:u90/1/0.000000/0.000000/16.000000/2.000000:s/1/6.000000/2.000000/8.000000/4.000000:w/1/0.000000/2.000000/16.000000/4.000000:e/1/0.000000/2.000000/16.000000/4.000000:d90/1/16.000000/3.000000/0.000000/4.000000:n/1/1.000000/2.000000/3.000000/4.000000:R/0/90/0,box=0.000000/0.000000/11.000000:2.000000/12.000000/13.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/5.000000/4.000000/3.000000/16.000000:w/1/5.000000/4.000000/3.000000/16.000000:e/1/5.000000/4.000000/3.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/5.000000/4.000000/3.000000/16.000000:R/0/90/0,box=0.000000/0.000000/3.000000:2.000000/12.000000/5.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/14.000000/4.000000/12.000000/16.000000:w/1/14.000000/4.000000/12.000000/16.000000:e/1/14.000000/4.000000/12.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/14.000000/4.000000/12.000000/16.000000:R/0/90/0,box=0.000000/12.000000/0.000000:2.000000/14.000000/16.000000:u90/1/0.000000/0.000000/16.000000/2.000000:s/1/6.000000/2.000000/8.000000/4.000000:w/1/0.000000/2.000000/16.000000/4.000000:e/1/0.000000/2.000000/16.000000/4.000000:d90/1/16.000000/3.000000/0.000000/4.000000:n/1/1.000000/2.000000/3.000000/4.000000:R/0/-90/0,box=0.000000/0.000000/11.000000:2.000000/12.000000/13.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/5.000000/4.000000/3.000000/16.000000:w/1/5.000000/4.000000/3.000000/16.000000:e/1/5.000000/4.000000/3.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/5.000000/4.000000/3.000000/16.000000:R/0/-90/0,box=0.000000/0.000000/3.000000:2.000000/12.000000/5.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/14.000000/4.000000/12.000000/16.000000:w/1/14.000000/4.000000/12.000000/16.000000:e/1/14.000000/4.000000/12.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/14.000000/4.000000/12.000000/16.000000:R/0/-90/0,box=0.000000/12.000000/0.000000:2.000000/14.000000/16.000000:u90/1/0.000000/0.000000/16.000000/2.000000:s/1/6.000000/2.000000/8.000000/4.000000:w/1/0.000000/2.000000/16.000000/4.000000:e/1/0.000000/2.000000/16.000000/4.000000:d90/1/16.000000/3.000000/0.000000/4.000000:n/1/1.000000/2.000000/3.000000/4.000000:R/0/180/0,box=0.000000/0.000000/11.000000:2.000000/12.000000/13.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/5.000000/4.000000/3.000000/16.000000:w/1/5.000000/4.000000/3.000000/16.000000:e/1/5.000000/4.000000/3.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/5.000000/4.000000/3.000000/16.000000:R/0/180/0,box=0.000000/0.000000/3.000000:2.000000/12.000000/5.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/14.000000/4.000000/12.000000/16.000000:w/1/14.000000/4.000000/12.000000/16.000000:e/1/14.000000/4.000000/12.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/14.000000/4.000000/12.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%steel_catwalk,state=west:true/east:true/south:false/bottom:false/north:true,box=0.000000/-2.000000/0.000000:16.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s90/0/0.000000/0.000000/2.000000/16.000000:w90/0/0.000000/0.000000/2.000000/16.000000:e90/0/0.000000/0.000000/2.000000/16.000000:d180/0/16.000000/16.000000/0.000000/0.000000:n90/0/0.000000/0.000000/2.000000/16.000000,box=0.000000/12.000000/0.000000:2.000000/14.000000/16.000000:u90/1/0.000000/0.000000/16.000000/2.000000:s/1/6.000000/2.000000/8.000000/4.000000:w/1/0.000000/2.000000/16.000000/4.000000:e/1/0.000000/2.000000/16.000000/4.000000:d90/1/16.000000/3.000000/0.000000/4.000000:n/1/1.000000/2.000000/3.000000/4.000000:R/0/90/0,box=0.000000/0.000000/11.000000:2.000000/12.000000/13.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/5.000000/4.000000/3.000000/16.000000:w/1/5.000000/4.000000/3.000000/16.000000:e/1/5.000000/4.000000/3.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/5.000000/4.000000/3.000000/16.000000:R/0/90/0,box=0.000000/0.000000/3.000000:2.000000/12.000000/5.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/14.000000/4.000000/12.000000/16.000000:w/1/14.000000/4.000000/12.000000/16.000000:e/1/14.000000/4.000000/12.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/14.000000/4.000000/12.000000/16.000000:R/0/90/0,box=0.000000/12.000000/0.000000:2.000000/14.000000/16.000000:u90/1/0.000000/0.000000/16.000000/2.000000:s/1/6.000000/2.000000/8.000000/4.000000:w/1/0.000000/2.000000/16.000000/4.000000:e/1/0.000000/2.000000/16.000000/4.000000:d90/1/16.000000/3.000000/0.000000/4.000000:n/1/1.000000/2.000000/3.000000/4.000000:R/0/180/0,box=0.000000/0.000000/11.000000:2.000000/12.000000/13.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/5.000000/4.000000/3.000000/16.000000:w/1/5.000000/4.000000/3.000000/16.000000:e/1/5.000000/4.000000/3.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/5.000000/4.000000/3.000000/16.000000:R/0/180/0,box=0.000000/0.000000/3.000000:2.000000/12.000000/5.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/14.000000/4.000000/12.000000/16.000000:w/1/14.000000/4.000000/12.000000/16.000000:e/1/14.000000/4.000000/12.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/14.000000/4.000000/12.000000/16.000000:R/0/180/0,box=0.000000/12.000000/0.000000:2.000000/14.000000/16.000000:u90/1/0.000000/0.000000/16.000000/2.000000:s/1/6.000000/2.000000/8.000000/4.000000:w/1/0.000000/2.000000/16.000000/4.000000:e/1/0.000000/2.000000/16.000000/4.000000:d90/1/16.000000/3.000000/0.000000/4.000000:n/1/1.000000/2.000000/3.000000/4.000000,box=0.000000/0.000000/11.000000:2.000000/12.000000/13.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/5.000000/4.000000/3.000000/16.000000:w/1/5.000000/4.000000/3.000000/16.000000:e/1/5.000000/4.000000/3.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/5.000000/4.000000/3.000000/16.000000,box=0.000000/0.000000/3.000000:2.000000/12.000000/5.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/14.000000/4.000000/12.000000/16.000000:w/1/14.000000/4.000000/12.000000/16.000000:e/1/14.000000/4.000000/12.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/14.000000/4.000000/12.000000/16.000000
|
|
||||||
modellist:id=%steel_catwalk,state=west:false/east:true/south:false/bottom:false/north:true,box=0.000000/-2.000000/0.000000:16.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s90/0/0.000000/0.000000/2.000000/16.000000:w90/0/0.000000/0.000000/2.000000/16.000000:e90/0/0.000000/0.000000/2.000000/16.000000:d180/0/16.000000/16.000000/0.000000/0.000000:n90/0/0.000000/0.000000/2.000000/16.000000,box=0.000000/12.000000/0.000000:2.000000/14.000000/16.000000:u90/1/0.000000/0.000000/16.000000/2.000000:s/1/6.000000/2.000000/8.000000/4.000000:w/1/0.000000/2.000000/16.000000/4.000000:e/1/0.000000/2.000000/16.000000/4.000000:d90/1/16.000000/3.000000/0.000000/4.000000:n/1/1.000000/2.000000/3.000000/4.000000:R/0/90/0,box=0.000000/0.000000/11.000000:2.000000/12.000000/13.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/5.000000/4.000000/3.000000/16.000000:w/1/5.000000/4.000000/3.000000/16.000000:e/1/5.000000/4.000000/3.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/5.000000/4.000000/3.000000/16.000000:R/0/90/0,box=0.000000/0.000000/3.000000:2.000000/12.000000/5.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/14.000000/4.000000/12.000000/16.000000:w/1/14.000000/4.000000/12.000000/16.000000:e/1/14.000000/4.000000/12.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/14.000000/4.000000/12.000000/16.000000:R/0/90/0,box=0.000000/12.000000/0.000000:2.000000/14.000000/16.000000:u90/1/0.000000/0.000000/16.000000/2.000000:s/1/6.000000/2.000000/8.000000/4.000000:w/1/0.000000/2.000000/16.000000/4.000000:e/1/0.000000/2.000000/16.000000/4.000000:d90/1/16.000000/3.000000/0.000000/4.000000:n/1/1.000000/2.000000/3.000000/4.000000:R/0/180/0,box=0.000000/0.000000/11.000000:2.000000/12.000000/13.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/5.000000/4.000000/3.000000/16.000000:w/1/5.000000/4.000000/3.000000/16.000000:e/1/5.000000/4.000000/3.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/5.000000/4.000000/3.000000/16.000000:R/0/180/0,box=0.000000/0.000000/3.000000:2.000000/12.000000/5.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/14.000000/4.000000/12.000000/16.000000:w/1/14.000000/4.000000/12.000000/16.000000:e/1/14.000000/4.000000/12.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/14.000000/4.000000/12.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%steel_catwalk,state=west:true/east:true/south:true/bottom:false/north:false,box=0.000000/-2.000000/0.000000:16.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s90/0/0.000000/0.000000/2.000000/16.000000:w90/0/0.000000/0.000000/2.000000/16.000000:e90/0/0.000000/0.000000/2.000000/16.000000:d180/0/16.000000/16.000000/0.000000/0.000000:n90/0/0.000000/0.000000/2.000000/16.000000,box=0.000000/12.000000/0.000000:2.000000/14.000000/16.000000:u90/1/0.000000/0.000000/16.000000/2.000000:s/1/6.000000/2.000000/8.000000/4.000000:w/1/0.000000/2.000000/16.000000/4.000000:e/1/0.000000/2.000000/16.000000/4.000000:d90/1/16.000000/3.000000/0.000000/4.000000:n/1/1.000000/2.000000/3.000000/4.000000:R/0/-90/0,box=0.000000/0.000000/11.000000:2.000000/12.000000/13.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/5.000000/4.000000/3.000000/16.000000:w/1/5.000000/4.000000/3.000000/16.000000:e/1/5.000000/4.000000/3.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/5.000000/4.000000/3.000000/16.000000:R/0/-90/0,box=0.000000/0.000000/3.000000:2.000000/12.000000/5.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/14.000000/4.000000/12.000000/16.000000:w/1/14.000000/4.000000/12.000000/16.000000:e/1/14.000000/4.000000/12.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/14.000000/4.000000/12.000000/16.000000:R/0/-90/0,box=0.000000/12.000000/0.000000:2.000000/14.000000/16.000000:u90/1/0.000000/0.000000/16.000000/2.000000:s/1/6.000000/2.000000/8.000000/4.000000:w/1/0.000000/2.000000/16.000000/4.000000:e/1/0.000000/2.000000/16.000000/4.000000:d90/1/16.000000/3.000000/0.000000/4.000000:n/1/1.000000/2.000000/3.000000/4.000000:R/0/180/0,box=0.000000/0.000000/11.000000:2.000000/12.000000/13.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/5.000000/4.000000/3.000000/16.000000:w/1/5.000000/4.000000/3.000000/16.000000:e/1/5.000000/4.000000/3.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/5.000000/4.000000/3.000000/16.000000:R/0/180/0,box=0.000000/0.000000/3.000000:2.000000/12.000000/5.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/14.000000/4.000000/12.000000/16.000000:w/1/14.000000/4.000000/12.000000/16.000000:e/1/14.000000/4.000000/12.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/14.000000/4.000000/12.000000/16.000000:R/0/180/0,box=0.000000/12.000000/0.000000:2.000000/14.000000/16.000000:u90/1/0.000000/0.000000/16.000000/2.000000:s/1/6.000000/2.000000/8.000000/4.000000:w/1/0.000000/2.000000/16.000000/4.000000:e/1/0.000000/2.000000/16.000000/4.000000:d90/1/16.000000/3.000000/0.000000/4.000000:n/1/1.000000/2.000000/3.000000/4.000000,box=0.000000/0.000000/11.000000:2.000000/12.000000/13.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/5.000000/4.000000/3.000000/16.000000:w/1/5.000000/4.000000/3.000000/16.000000:e/1/5.000000/4.000000/3.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/5.000000/4.000000/3.000000/16.000000,box=0.000000/0.000000/3.000000:2.000000/12.000000/5.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/14.000000/4.000000/12.000000/16.000000:w/1/14.000000/4.000000/12.000000/16.000000:e/1/14.000000/4.000000/12.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/14.000000/4.000000/12.000000/16.000000
|
|
||||||
modellist:id=%steel_catwalk,state=west:false/east:true/south:true/bottom:false/north:false,box=0.000000/-2.000000/0.000000:16.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s90/0/0.000000/0.000000/2.000000/16.000000:w90/0/0.000000/0.000000/2.000000/16.000000:e90/0/0.000000/0.000000/2.000000/16.000000:d180/0/16.000000/16.000000/0.000000/0.000000:n90/0/0.000000/0.000000/2.000000/16.000000,box=0.000000/12.000000/0.000000:2.000000/14.000000/16.000000:u90/1/0.000000/0.000000/16.000000/2.000000:s/1/6.000000/2.000000/8.000000/4.000000:w/1/0.000000/2.000000/16.000000/4.000000:e/1/0.000000/2.000000/16.000000/4.000000:d90/1/16.000000/3.000000/0.000000/4.000000:n/1/1.000000/2.000000/3.000000/4.000000:R/0/-90/0,box=0.000000/0.000000/11.000000:2.000000/12.000000/13.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/5.000000/4.000000/3.000000/16.000000:w/1/5.000000/4.000000/3.000000/16.000000:e/1/5.000000/4.000000/3.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/5.000000/4.000000/3.000000/16.000000:R/0/-90/0,box=0.000000/0.000000/3.000000:2.000000/12.000000/5.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/14.000000/4.000000/12.000000/16.000000:w/1/14.000000/4.000000/12.000000/16.000000:e/1/14.000000/4.000000/12.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/14.000000/4.000000/12.000000/16.000000:R/0/-90/0,box=0.000000/12.000000/0.000000:2.000000/14.000000/16.000000:u90/1/0.000000/0.000000/16.000000/2.000000:s/1/6.000000/2.000000/8.000000/4.000000:w/1/0.000000/2.000000/16.000000/4.000000:e/1/0.000000/2.000000/16.000000/4.000000:d90/1/16.000000/3.000000/0.000000/4.000000:n/1/1.000000/2.000000/3.000000/4.000000:R/0/180/0,box=0.000000/0.000000/11.000000:2.000000/12.000000/13.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/5.000000/4.000000/3.000000/16.000000:w/1/5.000000/4.000000/3.000000/16.000000:e/1/5.000000/4.000000/3.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/5.000000/4.000000/3.000000/16.000000:R/0/180/0,box=0.000000/0.000000/3.000000:2.000000/12.000000/5.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/14.000000/4.000000/12.000000/16.000000:w/1/14.000000/4.000000/12.000000/16.000000:e/1/14.000000/4.000000/12.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/14.000000/4.000000/12.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%steel_catwalk,state=west:true/east:true/south:false/bottom:false/north:false,box=0.000000/-2.000000/0.000000:16.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s90/0/0.000000/0.000000/2.000000/16.000000:w90/0/0.000000/0.000000/2.000000/16.000000:e90/0/0.000000/0.000000/2.000000/16.000000:d180/0/16.000000/16.000000/0.000000/0.000000:n90/0/0.000000/0.000000/2.000000/16.000000,box=0.000000/12.000000/0.000000:2.000000/14.000000/16.000000:u90/1/0.000000/0.000000/16.000000/2.000000:s/1/6.000000/2.000000/8.000000/4.000000:w/1/0.000000/2.000000/16.000000/4.000000:e/1/0.000000/2.000000/16.000000/4.000000:d90/1/16.000000/3.000000/0.000000/4.000000:n/1/1.000000/2.000000/3.000000/4.000000:R/0/180/0,box=0.000000/0.000000/11.000000:2.000000/12.000000/13.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/5.000000/4.000000/3.000000/16.000000:w/1/5.000000/4.000000/3.000000/16.000000:e/1/5.000000/4.000000/3.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/5.000000/4.000000/3.000000/16.000000:R/0/180/0,box=0.000000/0.000000/3.000000:2.000000/12.000000/5.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/14.000000/4.000000/12.000000/16.000000:w/1/14.000000/4.000000/12.000000/16.000000:e/1/14.000000/4.000000/12.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/14.000000/4.000000/12.000000/16.000000:R/0/180/0,box=0.000000/12.000000/0.000000:2.000000/14.000000/16.000000:u90/1/0.000000/0.000000/16.000000/2.000000:s/1/6.000000/2.000000/8.000000/4.000000:w/1/0.000000/2.000000/16.000000/4.000000:e/1/0.000000/2.000000/16.000000/4.000000:d90/1/16.000000/3.000000/0.000000/4.000000:n/1/1.000000/2.000000/3.000000/4.000000,box=0.000000/0.000000/11.000000:2.000000/12.000000/13.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/5.000000/4.000000/3.000000/16.000000:w/1/5.000000/4.000000/3.000000/16.000000:e/1/5.000000/4.000000/3.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/5.000000/4.000000/3.000000/16.000000,box=0.000000/0.000000/3.000000:2.000000/12.000000/5.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/14.000000/4.000000/12.000000/16.000000:w/1/14.000000/4.000000/12.000000/16.000000:e/1/14.000000/4.000000/12.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/14.000000/4.000000/12.000000/16.000000
|
|
||||||
modellist:id=%steel_catwalk,state=west:false/east:true/south:false/bottom:false/north:false,box=0.000000/-2.000000/0.000000:16.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s90/0/0.000000/0.000000/2.000000/16.000000:w90/0/0.000000/0.000000/2.000000/16.000000:e90/0/0.000000/0.000000/2.000000/16.000000:d180/0/16.000000/16.000000/0.000000/0.000000:n90/0/0.000000/0.000000/2.000000/16.000000,box=0.000000/12.000000/0.000000:2.000000/14.000000/16.000000:u90/1/0.000000/0.000000/16.000000/2.000000:s/1/6.000000/2.000000/8.000000/4.000000:w/1/0.000000/2.000000/16.000000/4.000000:e/1/0.000000/2.000000/16.000000/4.000000:d90/1/16.000000/3.000000/0.000000/4.000000:n/1/1.000000/2.000000/3.000000/4.000000:R/0/180/0,box=0.000000/0.000000/11.000000:2.000000/12.000000/13.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/5.000000/4.000000/3.000000/16.000000:w/1/5.000000/4.000000/3.000000/16.000000:e/1/5.000000/4.000000/3.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/5.000000/4.000000/3.000000/16.000000:R/0/180/0,box=0.000000/0.000000/3.000000:2.000000/12.000000/5.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/14.000000/4.000000/12.000000/16.000000:w/1/14.000000/4.000000/12.000000/16.000000:e/1/14.000000/4.000000/12.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/14.000000/4.000000/12.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%steel_catwalk,state=west:true/east:false/south:true/bottom:false/north:true,box=0.000000/-2.000000/0.000000:16.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s90/0/0.000000/0.000000/2.000000/16.000000:w90/0/0.000000/0.000000/2.000000/16.000000:e90/0/0.000000/0.000000/2.000000/16.000000:d180/0/16.000000/16.000000/0.000000/0.000000:n90/0/0.000000/0.000000/2.000000/16.000000,box=0.000000/12.000000/0.000000:2.000000/14.000000/16.000000:u90/1/0.000000/0.000000/16.000000/2.000000:s/1/6.000000/2.000000/8.000000/4.000000:w/1/0.000000/2.000000/16.000000/4.000000:e/1/0.000000/2.000000/16.000000/4.000000:d90/1/16.000000/3.000000/0.000000/4.000000:n/1/1.000000/2.000000/3.000000/4.000000:R/0/90/0,box=0.000000/0.000000/11.000000:2.000000/12.000000/13.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/5.000000/4.000000/3.000000/16.000000:w/1/5.000000/4.000000/3.000000/16.000000:e/1/5.000000/4.000000/3.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/5.000000/4.000000/3.000000/16.000000:R/0/90/0,box=0.000000/0.000000/3.000000:2.000000/12.000000/5.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/14.000000/4.000000/12.000000/16.000000:w/1/14.000000/4.000000/12.000000/16.000000:e/1/14.000000/4.000000/12.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/14.000000/4.000000/12.000000/16.000000:R/0/90/0,box=0.000000/12.000000/0.000000:2.000000/14.000000/16.000000:u90/1/0.000000/0.000000/16.000000/2.000000:s/1/6.000000/2.000000/8.000000/4.000000:w/1/0.000000/2.000000/16.000000/4.000000:e/1/0.000000/2.000000/16.000000/4.000000:d90/1/16.000000/3.000000/0.000000/4.000000:n/1/1.000000/2.000000/3.000000/4.000000:R/0/-90/0,box=0.000000/0.000000/11.000000:2.000000/12.000000/13.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/5.000000/4.000000/3.000000/16.000000:w/1/5.000000/4.000000/3.000000/16.000000:e/1/5.000000/4.000000/3.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/5.000000/4.000000/3.000000/16.000000:R/0/-90/0,box=0.000000/0.000000/3.000000:2.000000/12.000000/5.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/14.000000/4.000000/12.000000/16.000000:w/1/14.000000/4.000000/12.000000/16.000000:e/1/14.000000/4.000000/12.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/14.000000/4.000000/12.000000/16.000000:R/0/-90/0,box=0.000000/12.000000/0.000000:2.000000/14.000000/16.000000:u90/1/0.000000/0.000000/16.000000/2.000000:s/1/6.000000/2.000000/8.000000/4.000000:w/1/0.000000/2.000000/16.000000/4.000000:e/1/0.000000/2.000000/16.000000/4.000000:d90/1/16.000000/3.000000/0.000000/4.000000:n/1/1.000000/2.000000/3.000000/4.000000,box=0.000000/0.000000/11.000000:2.000000/12.000000/13.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/5.000000/4.000000/3.000000/16.000000:w/1/5.000000/4.000000/3.000000/16.000000:e/1/5.000000/4.000000/3.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/5.000000/4.000000/3.000000/16.000000,box=0.000000/0.000000/3.000000:2.000000/12.000000/5.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/14.000000/4.000000/12.000000/16.000000:w/1/14.000000/4.000000/12.000000/16.000000:e/1/14.000000/4.000000/12.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/14.000000/4.000000/12.000000/16.000000
|
|
||||||
modellist:id=%steel_catwalk,state=west:false/east:false/south:true/bottom:false/north:true,box=0.000000/-2.000000/0.000000:16.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s90/0/0.000000/0.000000/2.000000/16.000000:w90/0/0.000000/0.000000/2.000000/16.000000:e90/0/0.000000/0.000000/2.000000/16.000000:d180/0/16.000000/16.000000/0.000000/0.000000:n90/0/0.000000/0.000000/2.000000/16.000000,box=0.000000/12.000000/0.000000:2.000000/14.000000/16.000000:u90/1/0.000000/0.000000/16.000000/2.000000:s/1/6.000000/2.000000/8.000000/4.000000:w/1/0.000000/2.000000/16.000000/4.000000:e/1/0.000000/2.000000/16.000000/4.000000:d90/1/16.000000/3.000000/0.000000/4.000000:n/1/1.000000/2.000000/3.000000/4.000000:R/0/90/0,box=0.000000/0.000000/11.000000:2.000000/12.000000/13.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/5.000000/4.000000/3.000000/16.000000:w/1/5.000000/4.000000/3.000000/16.000000:e/1/5.000000/4.000000/3.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/5.000000/4.000000/3.000000/16.000000:R/0/90/0,box=0.000000/0.000000/3.000000:2.000000/12.000000/5.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/14.000000/4.000000/12.000000/16.000000:w/1/14.000000/4.000000/12.000000/16.000000:e/1/14.000000/4.000000/12.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/14.000000/4.000000/12.000000/16.000000:R/0/90/0,box=0.000000/12.000000/0.000000:2.000000/14.000000/16.000000:u90/1/0.000000/0.000000/16.000000/2.000000:s/1/6.000000/2.000000/8.000000/4.000000:w/1/0.000000/2.000000/16.000000/4.000000:e/1/0.000000/2.000000/16.000000/4.000000:d90/1/16.000000/3.000000/0.000000/4.000000:n/1/1.000000/2.000000/3.000000/4.000000:R/0/-90/0,box=0.000000/0.000000/11.000000:2.000000/12.000000/13.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/5.000000/4.000000/3.000000/16.000000:w/1/5.000000/4.000000/3.000000/16.000000:e/1/5.000000/4.000000/3.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/5.000000/4.000000/3.000000/16.000000:R/0/-90/0,box=0.000000/0.000000/3.000000:2.000000/12.000000/5.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/14.000000/4.000000/12.000000/16.000000:w/1/14.000000/4.000000/12.000000/16.000000:e/1/14.000000/4.000000/12.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/14.000000/4.000000/12.000000/16.000000:R/0/-90/0
|
|
||||||
modellist:id=%steel_catwalk,state=west:true/east:false/south:false/bottom:false/north:true,box=0.000000/-2.000000/0.000000:16.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s90/0/0.000000/0.000000/2.000000/16.000000:w90/0/0.000000/0.000000/2.000000/16.000000:e90/0/0.000000/0.000000/2.000000/16.000000:d180/0/16.000000/16.000000/0.000000/0.000000:n90/0/0.000000/0.000000/2.000000/16.000000,box=0.000000/12.000000/0.000000:2.000000/14.000000/16.000000:u90/1/0.000000/0.000000/16.000000/2.000000:s/1/6.000000/2.000000/8.000000/4.000000:w/1/0.000000/2.000000/16.000000/4.000000:e/1/0.000000/2.000000/16.000000/4.000000:d90/1/16.000000/3.000000/0.000000/4.000000:n/1/1.000000/2.000000/3.000000/4.000000:R/0/90/0,box=0.000000/0.000000/11.000000:2.000000/12.000000/13.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/5.000000/4.000000/3.000000/16.000000:w/1/5.000000/4.000000/3.000000/16.000000:e/1/5.000000/4.000000/3.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/5.000000/4.000000/3.000000/16.000000:R/0/90/0,box=0.000000/0.000000/3.000000:2.000000/12.000000/5.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/14.000000/4.000000/12.000000/16.000000:w/1/14.000000/4.000000/12.000000/16.000000:e/1/14.000000/4.000000/12.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/14.000000/4.000000/12.000000/16.000000:R/0/90/0,box=0.000000/12.000000/0.000000:2.000000/14.000000/16.000000:u90/1/0.000000/0.000000/16.000000/2.000000:s/1/6.000000/2.000000/8.000000/4.000000:w/1/0.000000/2.000000/16.000000/4.000000:e/1/0.000000/2.000000/16.000000/4.000000:d90/1/16.000000/3.000000/0.000000/4.000000:n/1/1.000000/2.000000/3.000000/4.000000,box=0.000000/0.000000/11.000000:2.000000/12.000000/13.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/5.000000/4.000000/3.000000/16.000000:w/1/5.000000/4.000000/3.000000/16.000000:e/1/5.000000/4.000000/3.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/5.000000/4.000000/3.000000/16.000000,box=0.000000/0.000000/3.000000:2.000000/12.000000/5.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/14.000000/4.000000/12.000000/16.000000:w/1/14.000000/4.000000/12.000000/16.000000:e/1/14.000000/4.000000/12.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/14.000000/4.000000/12.000000/16.000000
|
|
||||||
modellist:id=%steel_catwalk,state=west:false/east:false/south:false/bottom:false/north:true,box=0.000000/-2.000000/0.000000:16.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s90/0/0.000000/0.000000/2.000000/16.000000:w90/0/0.000000/0.000000/2.000000/16.000000:e90/0/0.000000/0.000000/2.000000/16.000000:d180/0/16.000000/16.000000/0.000000/0.000000:n90/0/0.000000/0.000000/2.000000/16.000000,box=0.000000/12.000000/0.000000:2.000000/14.000000/16.000000:u90/1/0.000000/0.000000/16.000000/2.000000:s/1/6.000000/2.000000/8.000000/4.000000:w/1/0.000000/2.000000/16.000000/4.000000:e/1/0.000000/2.000000/16.000000/4.000000:d90/1/16.000000/3.000000/0.000000/4.000000:n/1/1.000000/2.000000/3.000000/4.000000:R/0/90/0,box=0.000000/0.000000/11.000000:2.000000/12.000000/13.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/5.000000/4.000000/3.000000/16.000000:w/1/5.000000/4.000000/3.000000/16.000000:e/1/5.000000/4.000000/3.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/5.000000/4.000000/3.000000/16.000000:R/0/90/0,box=0.000000/0.000000/3.000000:2.000000/12.000000/5.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/14.000000/4.000000/12.000000/16.000000:w/1/14.000000/4.000000/12.000000/16.000000:e/1/14.000000/4.000000/12.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/14.000000/4.000000/12.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%steel_catwalk,state=west:true/east:false/south:true/bottom:false/north:false,box=0.000000/-2.000000/0.000000:16.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s90/0/0.000000/0.000000/2.000000/16.000000:w90/0/0.000000/0.000000/2.000000/16.000000:e90/0/0.000000/0.000000/2.000000/16.000000:d180/0/16.000000/16.000000/0.000000/0.000000:n90/0/0.000000/0.000000/2.000000/16.000000,box=0.000000/12.000000/0.000000:2.000000/14.000000/16.000000:u90/1/0.000000/0.000000/16.000000/2.000000:s/1/6.000000/2.000000/8.000000/4.000000:w/1/0.000000/2.000000/16.000000/4.000000:e/1/0.000000/2.000000/16.000000/4.000000:d90/1/16.000000/3.000000/0.000000/4.000000:n/1/1.000000/2.000000/3.000000/4.000000:R/0/-90/0,box=0.000000/0.000000/11.000000:2.000000/12.000000/13.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/5.000000/4.000000/3.000000/16.000000:w/1/5.000000/4.000000/3.000000/16.000000:e/1/5.000000/4.000000/3.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/5.000000/4.000000/3.000000/16.000000:R/0/-90/0,box=0.000000/0.000000/3.000000:2.000000/12.000000/5.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/14.000000/4.000000/12.000000/16.000000:w/1/14.000000/4.000000/12.000000/16.000000:e/1/14.000000/4.000000/12.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/14.000000/4.000000/12.000000/16.000000:R/0/-90/0,box=0.000000/12.000000/0.000000:2.000000/14.000000/16.000000:u90/1/0.000000/0.000000/16.000000/2.000000:s/1/6.000000/2.000000/8.000000/4.000000:w/1/0.000000/2.000000/16.000000/4.000000:e/1/0.000000/2.000000/16.000000/4.000000:d90/1/16.000000/3.000000/0.000000/4.000000:n/1/1.000000/2.000000/3.000000/4.000000,box=0.000000/0.000000/11.000000:2.000000/12.000000/13.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/5.000000/4.000000/3.000000/16.000000:w/1/5.000000/4.000000/3.000000/16.000000:e/1/5.000000/4.000000/3.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/5.000000/4.000000/3.000000/16.000000,box=0.000000/0.000000/3.000000:2.000000/12.000000/5.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/14.000000/4.000000/12.000000/16.000000:w/1/14.000000/4.000000/12.000000/16.000000:e/1/14.000000/4.000000/12.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/14.000000/4.000000/12.000000/16.000000
|
|
||||||
modellist:id=%steel_catwalk,state=west:false/east:false/south:true/bottom:false/north:false,box=0.000000/-2.000000/0.000000:16.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s90/0/0.000000/0.000000/2.000000/16.000000:w90/0/0.000000/0.000000/2.000000/16.000000:e90/0/0.000000/0.000000/2.000000/16.000000:d180/0/16.000000/16.000000/0.000000/0.000000:n90/0/0.000000/0.000000/2.000000/16.000000,box=0.000000/12.000000/0.000000:2.000000/14.000000/16.000000:u90/1/0.000000/0.000000/16.000000/2.000000:s/1/6.000000/2.000000/8.000000/4.000000:w/1/0.000000/2.000000/16.000000/4.000000:e/1/0.000000/2.000000/16.000000/4.000000:d90/1/16.000000/3.000000/0.000000/4.000000:n/1/1.000000/2.000000/3.000000/4.000000:R/0/-90/0,box=0.000000/0.000000/11.000000:2.000000/12.000000/13.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/5.000000/4.000000/3.000000/16.000000:w/1/5.000000/4.000000/3.000000/16.000000:e/1/5.000000/4.000000/3.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/5.000000/4.000000/3.000000/16.000000:R/0/-90/0,box=0.000000/0.000000/3.000000:2.000000/12.000000/5.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/14.000000/4.000000/12.000000/16.000000:w/1/14.000000/4.000000/12.000000/16.000000:e/1/14.000000/4.000000/12.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/14.000000/4.000000/12.000000/16.000000:R/0/-90/0
|
|
||||||
modellist:id=%steel_catwalk,state=west:true/east:false/south:false/bottom:false/north:false,box=0.000000/-2.000000/0.000000:16.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s90/0/0.000000/0.000000/2.000000/16.000000:w90/0/0.000000/0.000000/2.000000/16.000000:e90/0/0.000000/0.000000/2.000000/16.000000:d180/0/16.000000/16.000000/0.000000/0.000000:n90/0/0.000000/0.000000/2.000000/16.000000,box=0.000000/12.000000/0.000000:2.000000/14.000000/16.000000:u90/1/0.000000/0.000000/16.000000/2.000000:s/1/6.000000/2.000000/8.000000/4.000000:w/1/0.000000/2.000000/16.000000/4.000000:e/1/0.000000/2.000000/16.000000/4.000000:d90/1/16.000000/3.000000/0.000000/4.000000:n/1/1.000000/2.000000/3.000000/4.000000,box=0.000000/0.000000/11.000000:2.000000/12.000000/13.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/5.000000/4.000000/3.000000/16.000000:w/1/5.000000/4.000000/3.000000/16.000000:e/1/5.000000/4.000000/3.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/5.000000/4.000000/3.000000/16.000000,box=0.000000/0.000000/3.000000:2.000000/12.000000/5.000000:u/1/3.000000/3.000000/5.000000/5.000000:s/1/14.000000/4.000000/12.000000/16.000000:w/1/14.000000/4.000000/12.000000/16.000000:e/1/14.000000/4.000000/12.000000/16.000000:d180/1/3.000000/3.000000/5.000000/5.000000:n/1/14.000000/4.000000/12.000000/16.000000
|
|
||||||
modellist:id=%steel_catwalk,state=west:false/east:false/south:false/bottom:false/north:false,box=0.000000/-2.000000/0.000000:16.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s90/0/0.000000/0.000000/2.000000/16.000000:w90/0/0.000000/0.000000/2.000000/16.000000:e90/0/0.000000/0.000000/2.000000/16.000000:d180/0/16.000000/16.000000/0.000000/0.000000:n90/0/0.000000/0.000000/2.000000/16.000000
|
|
||||||
modellist:id=%steel_sheet_vertical_slab,state=type:top/facing:north
|
|
||||||
modellist:id=%steel_sheet_vertical_slab,state=type:bottom/facing:north,box=0.000000/0.000000/0.000000:16.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/8.000000/16.000000:e/0/0.000000/0.000000/8.000000/16.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%steel_sheet_vertical_slab,state=type:double/facing:north,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/0:w/0:e/0:d/0:n/0,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/0:w/0:e/0:d/0:n/0:R/0/180/0,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/0:w/0:e/0:d/0:n/0:R/0/-90/0,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/0:w/0:e/0:d/0:n/0:R/0/90/0
|
|
||||||
modellist:id=%steel_sheet_vertical_slab,state=type:top/facing:south
|
|
||||||
modellist:id=%steel_sheet_vertical_slab,state=type:bottom/facing:south,box=0.000000/0.000000/0.000000:16.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/8.000000/16.000000:e/0/0.000000/0.000000/8.000000/16.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%steel_sheet_vertical_slab,state=type:double/facing:south,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/0:w/0:e/0:d/0:n/0,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/0:w/0:e/0:d/0:n/0:R/0/180/0,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/0:w/0:e/0:d/0:n/0:R/0/-90/0,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/0:w/0:e/0:d/0:n/0:R/0/90/0
|
|
||||||
modellist:id=%steel_sheet_vertical_slab,state=type:top/facing:west
|
|
||||||
modellist:id=%steel_sheet_vertical_slab,state=type:bottom/facing:west,box=0.000000/0.000000/0.000000:16.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/8.000000/16.000000:e/0/0.000000/0.000000/8.000000/16.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/-90/0
|
|
||||||
modellist:id=%steel_sheet_vertical_slab,state=type:double/facing:west,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/0:w/0:e/0:d/0:n/0,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/0:w/0:e/0:d/0:n/0:R/0/180/0,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/0:w/0:e/0:d/0:n/0:R/0/-90/0,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/0:w/0:e/0:d/0:n/0:R/0/90/0
|
|
||||||
modellist:id=%steel_sheet_vertical_slab,state=type:top/facing:east
|
|
||||||
modellist:id=%steel_sheet_vertical_slab,state=type:bottom/facing:east,box=0.000000/0.000000/0.000000:16.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/8.000000/16.000000:e/0/0.000000/0.000000/8.000000/16.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%steel_sheet_vertical_slab,state=type:double/facing:east,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/0:w/0:e/0:d/0:n/0,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/0:w/0:e/0:d/0:n/0:R/0/180/0,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/0:w/0:e/0:d/0:n/0:R/0/-90/0,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/0:w/0:e/0:d/0:n/0:R/0/90/0
|
|
||||||
modellist:id=%steel_mesh_fence,state=west:true/east:true/waterlogged:true/south:true/north:true,box=8.000000/0.000000/8.000000:16.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/0.000000:s/0/8.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/0.000000/16.000000:d/0/0.000000/0.000000/16.000000/0.000000:n/0/0.000000/0.000000/8.000000/16.000000,box=0.000000/0.000000/8.000000:8.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/0.000000:s/0/0.000000/0.000000/8.000000/16.000000:w/0/0.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/0.000000/16.000000:d/0/0.000000/0.000000/16.000000/0.000000:n/0/8.000000/0.000000/16.000000/16.000000,box=8.000000/0.000000/0.000000:8.000000/16.000000/8.000000:u90/0/0.000000/0.000000/16.000000/0.000000:s/0/0.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/8.000000/16.000000:e/0/8.000000/0.000000/16.000000/16.000000:d270/0/0.000000/0.000000/16.000000/0.000000:n/0/0.000000/0.000000/0.000000/16.000000,box=8.000000/0.000000/8.000000:8.000000/16.000000/16.000000:u90/0/0.000000/0.000000/16.000000/0.000000:s/0/0.000000/0.000000/0.000000/16.000000:w/0/8.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/8.000000/16.000000:d270/0/0.000000/0.000000/16.000000/0.000000:n/0/0.000000/0.000000/0.000000/16.000000,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/1/0.000000/0.000000/4.000000/4.000000:s/1/0.000000/0.000000/4.000000/16.000000:w/1/0.000000/0.000000/4.000000/16.000000:e/1/0.000000/0.000000/4.000000/16.000000:d/1/0.000000/0.000000/4.000000/4.000000:n/1/0.000000/0.000000/4.000000/16.000000
|
|
||||||
modellist:id=%steel_mesh_fence,state=west:false/east:true/waterlogged:true/south:true/north:true,box=8.000000/0.000000/8.000000:16.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/0.000000:s/0/8.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/0.000000/16.000000:d/0/0.000000/0.000000/16.000000/0.000000:n/0/0.000000/0.000000/8.000000/16.000000:R/0/90/0,box=0.000000/0.000000/8.000000:8.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/0.000000:s/0/0.000000/0.000000/8.000000/16.000000:w/0/0.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/0.000000/16.000000:d/0/0.000000/0.000000/16.000000/0.000000:n/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/0.000000/0.000000:8.000000/16.000000/8.000000:u90/0/0.000000/0.000000/16.000000/0.000000:s/0/0.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/8.000000/16.000000:e/0/8.000000/0.000000/16.000000/16.000000:d270/0/0.000000/0.000000/16.000000/0.000000:n/0/0.000000/0.000000/0.000000/16.000000:R/0/90/0,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/1/0.000000/0.000000/4.000000/4.000000:s/1/0.000000/0.000000/4.000000/16.000000:w/1/0.000000/0.000000/4.000000/16.000000:e/1/0.000000/0.000000/4.000000/16.000000:d/1/0.000000/0.000000/4.000000/4.000000:n/1/0.000000/0.000000/4.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%steel_mesh_fence,state=west:true/east:true/waterlogged:false/south:true/north:true,box=8.000000/0.000000/8.000000:16.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/0.000000:s/0/8.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/0.000000/16.000000:d/0/0.000000/0.000000/16.000000/0.000000:n/0/0.000000/0.000000/8.000000/16.000000,box=0.000000/0.000000/8.000000:8.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/0.000000:s/0/0.000000/0.000000/8.000000/16.000000:w/0/0.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/0.000000/16.000000:d/0/0.000000/0.000000/16.000000/0.000000:n/0/8.000000/0.000000/16.000000/16.000000,box=8.000000/0.000000/0.000000:8.000000/16.000000/8.000000:u90/0/0.000000/0.000000/16.000000/0.000000:s/0/0.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/8.000000/16.000000:e/0/8.000000/0.000000/16.000000/16.000000:d270/0/0.000000/0.000000/16.000000/0.000000:n/0/0.000000/0.000000/0.000000/16.000000,box=8.000000/0.000000/8.000000:8.000000/16.000000/16.000000:u90/0/0.000000/0.000000/16.000000/0.000000:s/0/0.000000/0.000000/0.000000/16.000000:w/0/8.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/8.000000/16.000000:d270/0/0.000000/0.000000/16.000000/0.000000:n/0/0.000000/0.000000/0.000000/16.000000,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/1/0.000000/0.000000/4.000000/4.000000:s/1/0.000000/0.000000/4.000000/16.000000:w/1/0.000000/0.000000/4.000000/16.000000:e/1/0.000000/0.000000/4.000000/16.000000:d/1/0.000000/0.000000/4.000000/4.000000:n/1/0.000000/0.000000/4.000000/16.000000
|
|
||||||
modellist:id=%steel_mesh_fence,state=west:false/east:true/waterlogged:false/south:true/north:true,box=8.000000/0.000000/8.000000:16.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/0.000000:s/0/8.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/0.000000/16.000000:d/0/0.000000/0.000000/16.000000/0.000000:n/0/0.000000/0.000000/8.000000/16.000000:R/0/90/0,box=0.000000/0.000000/8.000000:8.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/0.000000:s/0/0.000000/0.000000/8.000000/16.000000:w/0/0.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/0.000000/16.000000:d/0/0.000000/0.000000/16.000000/0.000000:n/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/0.000000/0.000000:8.000000/16.000000/8.000000:u90/0/0.000000/0.000000/16.000000/0.000000:s/0/0.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/8.000000/16.000000:e/0/8.000000/0.000000/16.000000/16.000000:d270/0/0.000000/0.000000/16.000000/0.000000:n/0/0.000000/0.000000/0.000000/16.000000:R/0/90/0,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/1/0.000000/0.000000/4.000000/4.000000:s/1/0.000000/0.000000/4.000000/16.000000:w/1/0.000000/0.000000/4.000000/16.000000:e/1/0.000000/0.000000/4.000000/16.000000:d/1/0.000000/0.000000/4.000000/4.000000:n/1/0.000000/0.000000/4.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%steel_mesh_fence,state=west:true/east:true/waterlogged:true/south:false/north:true,box=8.000000/0.000000/8.000000:16.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/0.000000:s/0/8.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/0.000000/16.000000:d/0/0.000000/0.000000/16.000000/0.000000:n/0/0.000000/0.000000/8.000000/16.000000,box=0.000000/0.000000/8.000000:8.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/0.000000:s/0/0.000000/0.000000/8.000000/16.000000:w/0/0.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/0.000000/16.000000:d/0/0.000000/0.000000/16.000000/0.000000:n/0/8.000000/0.000000/16.000000/16.000000,box=8.000000/0.000000/0.000000:8.000000/16.000000/8.000000:u90/0/0.000000/0.000000/16.000000/0.000000:s/0/0.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/8.000000/16.000000:e/0/8.000000/0.000000/16.000000/16.000000:d270/0/0.000000/0.000000/16.000000/0.000000:n/0/0.000000/0.000000/0.000000/16.000000,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/1/0.000000/0.000000/4.000000/4.000000:s/1/0.000000/0.000000/4.000000/16.000000:w/1/0.000000/0.000000/4.000000/16.000000:e/1/0.000000/0.000000/4.000000/16.000000:d/1/0.000000/0.000000/4.000000/4.000000:n/1/0.000000/0.000000/4.000000/16.000000
|
|
||||||
modellist:id=%steel_mesh_fence,state=west:false/east:true/waterlogged:true/south:false/north:true,box=8.000000/0.000000/8.000000:16.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/0.000000:s/0/8.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/0.000000/16.000000:d/0/0.000000/0.000000/16.000000/0.000000:n/0/0.000000/0.000000/8.000000/16.000000,box=8.000000/0.000000/0.000000:8.000000/16.000000/8.000000:u90/0/0.000000/0.000000/16.000000/0.000000:s/0/0.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/8.000000/16.000000:e/0/8.000000/0.000000/16.000000/16.000000:d270/0/0.000000/0.000000/16.000000/0.000000:n/0/0.000000/0.000000/0.000000/16.000000,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/1/0.000000/0.000000/4.000000/4.000000:s/1/0.000000/0.000000/4.000000/16.000000:w/1/0.000000/0.000000/4.000000/16.000000:e/1/0.000000/0.000000/4.000000/16.000000:d/1/0.000000/0.000000/4.000000/4.000000:n/1/0.000000/0.000000/4.000000/16.000000
|
|
||||||
modellist:id=%steel_mesh_fence,state=west:true/east:true/waterlogged:false/south:false/north:true,box=8.000000/0.000000/8.000000:16.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/0.000000:s/0/8.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/0.000000/16.000000:d/0/0.000000/0.000000/16.000000/0.000000:n/0/0.000000/0.000000/8.000000/16.000000,box=0.000000/0.000000/8.000000:8.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/0.000000:s/0/0.000000/0.000000/8.000000/16.000000:w/0/0.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/0.000000/16.000000:d/0/0.000000/0.000000/16.000000/0.000000:n/0/8.000000/0.000000/16.000000/16.000000,box=8.000000/0.000000/0.000000:8.000000/16.000000/8.000000:u90/0/0.000000/0.000000/16.000000/0.000000:s/0/0.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/8.000000/16.000000:e/0/8.000000/0.000000/16.000000/16.000000:d270/0/0.000000/0.000000/16.000000/0.000000:n/0/0.000000/0.000000/0.000000/16.000000,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/1/0.000000/0.000000/4.000000/4.000000:s/1/0.000000/0.000000/4.000000/16.000000:w/1/0.000000/0.000000/4.000000/16.000000:e/1/0.000000/0.000000/4.000000/16.000000:d/1/0.000000/0.000000/4.000000/4.000000:n/1/0.000000/0.000000/4.000000/16.000000
|
|
||||||
modellist:id=%steel_mesh_fence,state=west:false/east:true/waterlogged:false/south:false/north:true,box=8.000000/0.000000/8.000000:16.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/0.000000:s/0/8.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/0.000000/16.000000:d/0/0.000000/0.000000/16.000000/0.000000:n/0/0.000000/0.000000/8.000000/16.000000,box=8.000000/0.000000/0.000000:8.000000/16.000000/8.000000:u90/0/0.000000/0.000000/16.000000/0.000000:s/0/0.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/8.000000/16.000000:e/0/8.000000/0.000000/16.000000/16.000000:d270/0/0.000000/0.000000/16.000000/0.000000:n/0/0.000000/0.000000/0.000000/16.000000,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/1/0.000000/0.000000/4.000000/4.000000:s/1/0.000000/0.000000/4.000000/16.000000:w/1/0.000000/0.000000/4.000000/16.000000:e/1/0.000000/0.000000/4.000000/16.000000:d/1/0.000000/0.000000/4.000000/4.000000:n/1/0.000000/0.000000/4.000000/16.000000
|
|
||||||
modellist:id=%steel_mesh_fence,state=west:true/east:true/waterlogged:true/south:true/north:false,box=8.000000/0.000000/8.000000:16.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/0.000000:s/0/8.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/0.000000/16.000000:d/0/0.000000/0.000000/16.000000/0.000000:n/0/0.000000/0.000000/8.000000/16.000000:R/0/180/0,box=0.000000/0.000000/8.000000:8.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/0.000000:s/0/0.000000/0.000000/8.000000/16.000000:w/0/0.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/0.000000/16.000000:d/0/0.000000/0.000000/16.000000/0.000000:n/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/0.000000/0.000000:8.000000/16.000000/8.000000:u90/0/0.000000/0.000000/16.000000/0.000000:s/0/0.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/8.000000/16.000000:e/0/8.000000/0.000000/16.000000/16.000000:d270/0/0.000000/0.000000/16.000000/0.000000:n/0/0.000000/0.000000/0.000000/16.000000:R/0/180/0,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/1/0.000000/0.000000/4.000000/4.000000:s/1/0.000000/0.000000/4.000000/16.000000:w/1/0.000000/0.000000/4.000000/16.000000:e/1/0.000000/0.000000/4.000000/16.000000:d/1/0.000000/0.000000/4.000000/4.000000:n/1/0.000000/0.000000/4.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%steel_mesh_fence,state=west:false/east:true/waterlogged:true/south:true/north:false,box=8.000000/0.000000/8.000000:16.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/0.000000:s/0/8.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/0.000000/16.000000:d/0/0.000000/0.000000/16.000000/0.000000:n/0/0.000000/0.000000/8.000000/16.000000:R/0/90/0,box=8.000000/0.000000/0.000000:8.000000/16.000000/8.000000:u90/0/0.000000/0.000000/16.000000/0.000000:s/0/0.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/8.000000/16.000000:e/0/8.000000/0.000000/16.000000/16.000000:d270/0/0.000000/0.000000/16.000000/0.000000:n/0/0.000000/0.000000/0.000000/16.000000:R/0/90/0,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/1/0.000000/0.000000/4.000000/4.000000:s/1/0.000000/0.000000/4.000000/16.000000:w/1/0.000000/0.000000/4.000000/16.000000:e/1/0.000000/0.000000/4.000000/16.000000:d/1/0.000000/0.000000/4.000000/4.000000:n/1/0.000000/0.000000/4.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%steel_mesh_fence,state=west:true/east:true/waterlogged:false/south:true/north:false,box=8.000000/0.000000/8.000000:16.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/0.000000:s/0/8.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/0.000000/16.000000:d/0/0.000000/0.000000/16.000000/0.000000:n/0/0.000000/0.000000/8.000000/16.000000:R/0/180/0,box=0.000000/0.000000/8.000000:8.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/0.000000:s/0/0.000000/0.000000/8.000000/16.000000:w/0/0.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/0.000000/16.000000:d/0/0.000000/0.000000/16.000000/0.000000:n/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/0.000000/0.000000:8.000000/16.000000/8.000000:u90/0/0.000000/0.000000/16.000000/0.000000:s/0/0.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/8.000000/16.000000:e/0/8.000000/0.000000/16.000000/16.000000:d270/0/0.000000/0.000000/16.000000/0.000000:n/0/0.000000/0.000000/0.000000/16.000000:R/0/180/0,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/1/0.000000/0.000000/4.000000/4.000000:s/1/0.000000/0.000000/4.000000/16.000000:w/1/0.000000/0.000000/4.000000/16.000000:e/1/0.000000/0.000000/4.000000/16.000000:d/1/0.000000/0.000000/4.000000/4.000000:n/1/0.000000/0.000000/4.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%steel_mesh_fence,state=west:false/east:true/waterlogged:false/south:true/north:false,box=8.000000/0.000000/8.000000:16.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/0.000000:s/0/8.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/0.000000/16.000000:d/0/0.000000/0.000000/16.000000/0.000000:n/0/0.000000/0.000000/8.000000/16.000000:R/0/90/0,box=8.000000/0.000000/0.000000:8.000000/16.000000/8.000000:u90/0/0.000000/0.000000/16.000000/0.000000:s/0/0.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/8.000000/16.000000:e/0/8.000000/0.000000/16.000000/16.000000:d270/0/0.000000/0.000000/16.000000/0.000000:n/0/0.000000/0.000000/0.000000/16.000000:R/0/90/0,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/1/0.000000/0.000000/4.000000/4.000000:s/1/0.000000/0.000000/4.000000/16.000000:w/1/0.000000/0.000000/4.000000/16.000000:e/1/0.000000/0.000000/4.000000/16.000000:d/1/0.000000/0.000000/4.000000/4.000000:n/1/0.000000/0.000000/4.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%steel_mesh_fence,state=west:true/east:true/waterlogged:true/south:false/north:false,box=8.000000/0.000000/8.000000:16.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/0.000000:s/0/8.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/0.000000/16.000000:d/0/0.000000/0.000000/16.000000/0.000000:n/0/0.000000/0.000000/8.000000/16.000000,box=0.000000/0.000000/8.000000:8.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/0.000000:s/0/0.000000/0.000000/8.000000/16.000000:w/0/0.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/0.000000/16.000000:d/0/0.000000/0.000000/16.000000/0.000000:n/0/8.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%steel_mesh_fence,state=west:false/east:true/waterlogged:true/south:false/north:false,box=8.000000/0.000000/8.000000:16.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/0.000000:s/0/8.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/0.000000/16.000000:d/0/0.000000/0.000000/16.000000/0.000000:n/0/0.000000/0.000000/8.000000/16.000000,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/1/0.000000/0.000000/4.000000/4.000000:s/1/0.000000/0.000000/4.000000/16.000000:w/1/0.000000/0.000000/4.000000/16.000000:e/1/0.000000/0.000000/4.000000/16.000000:d/1/0.000000/0.000000/4.000000/4.000000:n/1/0.000000/0.000000/4.000000/16.000000
|
|
||||||
modellist:id=%steel_mesh_fence,state=west:true/east:true/waterlogged:false/south:false/north:false,box=8.000000/0.000000/8.000000:16.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/0.000000:s/0/8.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/0.000000/16.000000:d/0/0.000000/0.000000/16.000000/0.000000:n/0/0.000000/0.000000/8.000000/16.000000,box=0.000000/0.000000/8.000000:8.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/0.000000:s/0/0.000000/0.000000/8.000000/16.000000:w/0/0.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/0.000000/16.000000:d/0/0.000000/0.000000/16.000000/0.000000:n/0/8.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%steel_mesh_fence,state=west:false/east:true/waterlogged:false/south:false/north:false,box=8.000000/0.000000/8.000000:16.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/0.000000:s/0/8.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/0.000000/16.000000:d/0/0.000000/0.000000/16.000000/0.000000:n/0/0.000000/0.000000/8.000000/16.000000,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/1/0.000000/0.000000/4.000000/4.000000:s/1/0.000000/0.000000/4.000000/16.000000:w/1/0.000000/0.000000/4.000000/16.000000:e/1/0.000000/0.000000/4.000000/16.000000:d/1/0.000000/0.000000/4.000000/4.000000:n/1/0.000000/0.000000/4.000000/16.000000
|
|
||||||
modellist:id=%steel_mesh_fence,state=west:true/east:false/waterlogged:true/south:true/north:true,box=8.000000/0.000000/8.000000:16.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/0.000000:s/0/8.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/0.000000/16.000000:d/0/0.000000/0.000000/16.000000/0.000000:n/0/0.000000/0.000000/8.000000/16.000000:R/0/-90/0,box=0.000000/0.000000/8.000000:8.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/0.000000:s/0/0.000000/0.000000/8.000000/16.000000:w/0/0.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/0.000000/16.000000:d/0/0.000000/0.000000/16.000000/0.000000:n/0/8.000000/0.000000/16.000000/16.000000:R/0/-90/0,box=8.000000/0.000000/0.000000:8.000000/16.000000/8.000000:u90/0/0.000000/0.000000/16.000000/0.000000:s/0/0.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/8.000000/16.000000:e/0/8.000000/0.000000/16.000000/16.000000:d270/0/0.000000/0.000000/16.000000/0.000000:n/0/0.000000/0.000000/0.000000/16.000000:R/0/-90/0,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/1/0.000000/0.000000/4.000000/4.000000:s/1/0.000000/0.000000/4.000000/16.000000:w/1/0.000000/0.000000/4.000000/16.000000:e/1/0.000000/0.000000/4.000000/16.000000:d/1/0.000000/0.000000/4.000000/4.000000:n/1/0.000000/0.000000/4.000000/16.000000:R/0/-90/0
|
|
||||||
modellist:id=%steel_mesh_fence,state=west:false/east:false/waterlogged:true/south:true/north:true,box=8.000000/0.000000/8.000000:16.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/0.000000:s/0/8.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/0.000000/16.000000:d/0/0.000000/0.000000/16.000000/0.000000:n/0/0.000000/0.000000/8.000000/16.000000:R/0/90/0,box=0.000000/0.000000/8.000000:8.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/0.000000:s/0/0.000000/0.000000/8.000000/16.000000:w/0/0.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/0.000000/16.000000:d/0/0.000000/0.000000/16.000000/0.000000:n/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%steel_mesh_fence,state=west:true/east:false/waterlogged:false/south:true/north:true,box=8.000000/0.000000/8.000000:16.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/0.000000:s/0/8.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/0.000000/16.000000:d/0/0.000000/0.000000/16.000000/0.000000:n/0/0.000000/0.000000/8.000000/16.000000:R/0/-90/0,box=0.000000/0.000000/8.000000:8.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/0.000000:s/0/0.000000/0.000000/8.000000/16.000000:w/0/0.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/0.000000/16.000000:d/0/0.000000/0.000000/16.000000/0.000000:n/0/8.000000/0.000000/16.000000/16.000000:R/0/-90/0,box=8.000000/0.000000/0.000000:8.000000/16.000000/8.000000:u90/0/0.000000/0.000000/16.000000/0.000000:s/0/0.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/8.000000/16.000000:e/0/8.000000/0.000000/16.000000/16.000000:d270/0/0.000000/0.000000/16.000000/0.000000:n/0/0.000000/0.000000/0.000000/16.000000:R/0/-90/0,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/1/0.000000/0.000000/4.000000/4.000000:s/1/0.000000/0.000000/4.000000/16.000000:w/1/0.000000/0.000000/4.000000/16.000000:e/1/0.000000/0.000000/4.000000/16.000000:d/1/0.000000/0.000000/4.000000/4.000000:n/1/0.000000/0.000000/4.000000/16.000000:R/0/-90/0
|
|
||||||
modellist:id=%steel_mesh_fence,state=west:false/east:false/waterlogged:false/south:true/north:true,box=8.000000/0.000000/8.000000:16.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/0.000000:s/0/8.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/0.000000/16.000000:d/0/0.000000/0.000000/16.000000/0.000000:n/0/0.000000/0.000000/8.000000/16.000000:R/0/90/0,box=0.000000/0.000000/8.000000:8.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/0.000000:s/0/0.000000/0.000000/8.000000/16.000000:w/0/0.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/0.000000/16.000000:d/0/0.000000/0.000000/16.000000/0.000000:n/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%steel_mesh_fence,state=west:true/east:false/waterlogged:true/south:false/north:true,box=8.000000/0.000000/8.000000:16.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/0.000000:s/0/8.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/0.000000/16.000000:d/0/0.000000/0.000000/16.000000/0.000000:n/0/0.000000/0.000000/8.000000/16.000000:R/0/-90/0,box=8.000000/0.000000/0.000000:8.000000/16.000000/8.000000:u90/0/0.000000/0.000000/16.000000/0.000000:s/0/0.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/8.000000/16.000000:e/0/8.000000/0.000000/16.000000/16.000000:d270/0/0.000000/0.000000/16.000000/0.000000:n/0/0.000000/0.000000/0.000000/16.000000:R/0/-90/0,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/1/0.000000/0.000000/4.000000/4.000000:s/1/0.000000/0.000000/4.000000/16.000000:w/1/0.000000/0.000000/4.000000/16.000000:e/1/0.000000/0.000000/4.000000/16.000000:d/1/0.000000/0.000000/4.000000/4.000000:n/1/0.000000/0.000000/4.000000/16.000000:R/0/-90/0
|
|
||||||
modellist:id=%steel_mesh_fence,state=west:false/east:false/waterlogged:true/south:false/north:true,box=8.000000/0.000000/8.000000:16.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/0.000000:s/0/8.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/0.000000/16.000000:d/0/0.000000/0.000000/16.000000/0.000000:n/0/0.000000/0.000000/8.000000/16.000000:R/0/-90/0,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/1/0.000000/0.000000/4.000000/4.000000:s/1/0.000000/0.000000/4.000000/16.000000:w/1/0.000000/0.000000/4.000000/16.000000:e/1/0.000000/0.000000/4.000000/16.000000:d/1/0.000000/0.000000/4.000000/4.000000:n/1/0.000000/0.000000/4.000000/16.000000:R/0/-90/0
|
|
||||||
modellist:id=%steel_mesh_fence,state=west:true/east:false/waterlogged:false/south:false/north:true,box=8.000000/0.000000/8.000000:16.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/0.000000:s/0/8.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/0.000000/16.000000:d/0/0.000000/0.000000/16.000000/0.000000:n/0/0.000000/0.000000/8.000000/16.000000:R/0/-90/0,box=8.000000/0.000000/0.000000:8.000000/16.000000/8.000000:u90/0/0.000000/0.000000/16.000000/0.000000:s/0/0.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/8.000000/16.000000:e/0/8.000000/0.000000/16.000000/16.000000:d270/0/0.000000/0.000000/16.000000/0.000000:n/0/0.000000/0.000000/0.000000/16.000000:R/0/-90/0,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/1/0.000000/0.000000/4.000000/4.000000:s/1/0.000000/0.000000/4.000000/16.000000:w/1/0.000000/0.000000/4.000000/16.000000:e/1/0.000000/0.000000/4.000000/16.000000:d/1/0.000000/0.000000/4.000000/4.000000:n/1/0.000000/0.000000/4.000000/16.000000:R/0/-90/0
|
|
||||||
modellist:id=%steel_mesh_fence,state=west:false/east:false/waterlogged:false/south:false/north:true,box=8.000000/0.000000/8.000000:16.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/0.000000:s/0/8.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/0.000000/16.000000:d/0/0.000000/0.000000/16.000000/0.000000:n/0/0.000000/0.000000/8.000000/16.000000:R/0/-90/0,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/1/0.000000/0.000000/4.000000/4.000000:s/1/0.000000/0.000000/4.000000/16.000000:w/1/0.000000/0.000000/4.000000/16.000000:e/1/0.000000/0.000000/4.000000/16.000000:d/1/0.000000/0.000000/4.000000/4.000000:n/1/0.000000/0.000000/4.000000/16.000000:R/0/-90/0
|
|
||||||
modellist:id=%steel_mesh_fence,state=west:true/east:false/waterlogged:true/south:true/north:false,box=8.000000/0.000000/8.000000:16.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/0.000000:s/0/8.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/0.000000/16.000000:d/0/0.000000/0.000000/16.000000/0.000000:n/0/0.000000/0.000000/8.000000/16.000000:R/0/180/0,box=8.000000/0.000000/0.000000:8.000000/16.000000/8.000000:u90/0/0.000000/0.000000/16.000000/0.000000:s/0/0.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/8.000000/16.000000:e/0/8.000000/0.000000/16.000000/16.000000:d270/0/0.000000/0.000000/16.000000/0.000000:n/0/0.000000/0.000000/0.000000/16.000000:R/0/180/0,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/1/0.000000/0.000000/4.000000/4.000000:s/1/0.000000/0.000000/4.000000/16.000000:w/1/0.000000/0.000000/4.000000/16.000000:e/1/0.000000/0.000000/4.000000/16.000000:d/1/0.000000/0.000000/4.000000/4.000000:n/1/0.000000/0.000000/4.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%steel_mesh_fence,state=west:false/east:false/waterlogged:true/south:true/north:false,box=8.000000/0.000000/8.000000:16.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/0.000000:s/0/8.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/0.000000/16.000000:d/0/0.000000/0.000000/16.000000/0.000000:n/0/0.000000/0.000000/8.000000/16.000000:R/0/90/0,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/1/0.000000/0.000000/4.000000/4.000000:s/1/0.000000/0.000000/4.000000/16.000000:w/1/0.000000/0.000000/4.000000/16.000000:e/1/0.000000/0.000000/4.000000/16.000000:d/1/0.000000/0.000000/4.000000/4.000000:n/1/0.000000/0.000000/4.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%steel_mesh_fence,state=west:true/east:false/waterlogged:false/south:true/north:false,box=8.000000/0.000000/8.000000:16.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/0.000000:s/0/8.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/0.000000/16.000000:d/0/0.000000/0.000000/16.000000/0.000000:n/0/0.000000/0.000000/8.000000/16.000000:R/0/180/0,box=8.000000/0.000000/0.000000:8.000000/16.000000/8.000000:u90/0/0.000000/0.000000/16.000000/0.000000:s/0/0.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/8.000000/16.000000:e/0/8.000000/0.000000/16.000000/16.000000:d270/0/0.000000/0.000000/16.000000/0.000000:n/0/0.000000/0.000000/0.000000/16.000000:R/0/180/0,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/1/0.000000/0.000000/4.000000/4.000000:s/1/0.000000/0.000000/4.000000/16.000000:w/1/0.000000/0.000000/4.000000/16.000000:e/1/0.000000/0.000000/4.000000/16.000000:d/1/0.000000/0.000000/4.000000/4.000000:n/1/0.000000/0.000000/4.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%steel_mesh_fence,state=west:false/east:false/waterlogged:false/south:true/north:false,box=8.000000/0.000000/8.000000:16.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/0.000000:s/0/8.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/0.000000/16.000000:d/0/0.000000/0.000000/16.000000/0.000000:n/0/0.000000/0.000000/8.000000/16.000000:R/0/90/0,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/1/0.000000/0.000000/4.000000/4.000000:s/1/0.000000/0.000000/4.000000/16.000000:w/1/0.000000/0.000000/4.000000/16.000000:e/1/0.000000/0.000000/4.000000/16.000000:d/1/0.000000/0.000000/4.000000/4.000000:n/1/0.000000/0.000000/4.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%steel_mesh_fence,state=west:true/east:false/waterlogged:true/south:false/north:false,box=8.000000/0.000000/8.000000:16.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/0.000000:s/0/8.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/0.000000/16.000000:d/0/0.000000/0.000000/16.000000/0.000000:n/0/0.000000/0.000000/8.000000/16.000000:R/0/180/0,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/1/0.000000/0.000000/4.000000/4.000000:s/1/0.000000/0.000000/4.000000/16.000000:w/1/0.000000/0.000000/4.000000/16.000000:e/1/0.000000/0.000000/4.000000/16.000000:d/1/0.000000/0.000000/4.000000/4.000000:n/1/0.000000/0.000000/4.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%steel_mesh_fence,state=west:false/east:false/waterlogged:true/south:false/north:false,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/0.000000/0.000000/4.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000
|
|
||||||
modellist:id=%steel_mesh_fence,state=west:true/east:false/waterlogged:false/south:false/north:false,box=8.000000/0.000000/8.000000:16.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/0.000000:s/0/8.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/0.000000/16.000000:d/0/0.000000/0.000000/16.000000/0.000000:n/0/0.000000/0.000000/8.000000/16.000000:R/0/180/0,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/1/0.000000/0.000000/4.000000/4.000000:s/1/0.000000/0.000000/4.000000/16.000000:w/1/0.000000/0.000000/4.000000/16.000000:e/1/0.000000/0.000000/4.000000/16.000000:d/1/0.000000/0.000000/4.000000/4.000000:n/1/0.000000/0.000000/4.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%steel_mesh_fence,state=west:false/east:false/waterlogged:false/south:false/north:false,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/0.000000/0.000000/4.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000
|
|
@ -1,228 +0,0 @@
|
|||||||
modname:alloyed
|
|
||||||
|
|
||||||
texture:id=bronze_block,filename=assets/alloyed/textures/block/bronze/bronze_block.png,xcount=1,ycount=1
|
|
||||||
texture:id=exposed_bronze_block,filename=assets/alloyed/textures/block/bronze/exposed_bronze_block.png,xcount=1,ycount=1
|
|
||||||
texture:id=weathered_bronze_block,filename=assets/alloyed/textures/block/bronze/weathered_bronze_block.png,xcount=1,ycount=1
|
|
||||||
texture:id=oxidized_bronze_block,filename=assets/alloyed/textures/block/bronze/oxidized_bronze_block.png,xcount=1,ycount=1
|
|
||||||
texture:id=bronze_bell,filename=assets/alloyed/textures/block/bronze_bell.png,xcount=1,ycount=1
|
|
||||||
texture:id=steel_block,filename=assets/alloyed/textures/block/steel_block.png,xcount=1,ycount=1
|
|
||||||
texture:id=bottom,filename=assets/alloyed/textures/block/steel_door/bottom.png,xcount=1,ycount=1
|
|
||||||
texture:id=top,filename=assets/alloyed/textures/block/steel_door/top.png,xcount=1,ycount=1
|
|
||||||
texture:id=bottom1,filename=assets/alloyed/textures/block/locked_steel_door/bottom.png,xcount=1,ycount=1
|
|
||||||
texture:id=top1,filename=assets/alloyed/textures/block/locked_steel_door/top.png,xcount=1,ycount=1
|
|
||||||
texture:id=steel_sheet_metal,filename=assets/alloyed/textures/block/steel_sheet_metal.png,xcount=1,ycount=1
|
|
||||||
texture:id=post,filename=assets/alloyed/textures/block/steel_bars/post.png,xcount=1,ycount=1
|
|
||||||
texture:id=block,filename=assets/alloyed/textures/block/steel_bars/block.png,xcount=1,ycount=1
|
|
||||||
texture:id=steel_catwalk,filename=assets/alloyed/textures/block/steel_catwalk.png,xcount=1,ycount=1
|
|
||||||
texture:id=steel_catwalk_rail,filename=assets/alloyed/textures/block/steel_catwalk_rail.png,xcount=1,ycount=1
|
|
||||||
texture:id=steel_chain_link,filename=assets/alloyed/textures/block/steel_chain_link.png,xcount=1,ycount=1
|
|
||||||
block:id=%bronze_block,patch0=0:bronze_block,patch1=0:bronze_block,patch2=0:bronze_block,patch3=0:bronze_block,patch4=0:bronze_block,patch5=0:bronze_block,stdrot=true
|
|
||||||
block:id=%exposed_bronze_block,patch0=0:exposed_bronze_block,patch1=0:exposed_bronze_block,patch2=0:exposed_bronze_block,patch3=0:exposed_bronze_block,patch4=0:exposed_bronze_block,patch5=0:exposed_bronze_block,stdrot=true
|
|
||||||
block:id=%weathered_bronze_block,patch0=0:weathered_bronze_block,patch1=0:weathered_bronze_block,patch2=0:weathered_bronze_block,patch3=0:weathered_bronze_block,patch4=0:weathered_bronze_block,patch5=0:weathered_bronze_block,stdrot=true
|
|
||||||
block:id=%oxidized_bronze_block,patch0=0:oxidized_bronze_block,patch1=0:oxidized_bronze_block,patch2=0:oxidized_bronze_block,patch3=0:oxidized_bronze_block,patch4=0:oxidized_bronze_block,patch5=0:oxidized_bronze_block,stdrot=true
|
|
||||||
block:id=%waxed_bronze_block,patch0=0:bronze_block,patch1=0:bronze_block,patch2=0:bronze_block,patch3=0:bronze_block,patch4=0:bronze_block,patch5=0:bronze_block,stdrot=true
|
|
||||||
block:id=%waxed_exposed_bronze_block,patch0=0:exposed_bronze_block,patch1=0:exposed_bronze_block,patch2=0:exposed_bronze_block,patch3=0:exposed_bronze_block,patch4=0:exposed_bronze_block,patch5=0:exposed_bronze_block,stdrot=true
|
|
||||||
block:id=%waxed_weathered_bronze_block,patch0=0:weathered_bronze_block,patch1=0:weathered_bronze_block,patch2=0:weathered_bronze_block,patch3=0:weathered_bronze_block,patch4=0:weathered_bronze_block,patch5=0:weathered_bronze_block,stdrot=true
|
|
||||||
block:id=%waxed_oxidized_bronze_block,patch0=0:oxidized_bronze_block,patch1=0:oxidized_bronze_block,patch2=0:oxidized_bronze_block,patch3=0:oxidized_bronze_block,patch4=0:oxidized_bronze_block,patch5=0:oxidized_bronze_block,stdrot=true
|
|
||||||
block:id=%bronze_bell,patch0=0:bronze_bell,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_block,patch0=0:steel_block,patch1=0:steel_block,patch2=0:steel_block,patch3=0:steel_block,patch4=0:steel_block,patch5=0:steel_block,stdrot=true
|
|
||||||
block:id=%steel_door,state=facing:north/hinge:left/half:upper/open:true,patch0=0:bottom,patch1=0:top,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_door,state=facing:north/hinge:left/half:upper/open:false,patch0=0:bottom,patch1=0:top,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_door,state=facing:north/hinge:right/half:upper/open:true,patch0=0:bottom,patch1=0:top,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_door,state=facing:north/hinge:right/half:upper/open:false,patch0=0:bottom,patch1=0:top,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_door,state=facing:north/hinge:left/half:lower/open:true,patch0=0:bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_door,state=facing:north/hinge:left/half:lower/open:false,patch0=0:bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_door,state=facing:north/hinge:right/half:lower/open:true,patch0=0:bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_door,state=facing:north/hinge:right/half:lower/open:false,patch0=0:bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_door,state=facing:south/hinge:left/half:upper/open:true,patch0=0:bottom,patch1=0:top,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_door,state=facing:south/hinge:left/half:upper/open:false,patch0=0:bottom,patch1=0:top,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_door,state=facing:south/hinge:right/half:upper/open:true,patch0=0:bottom,patch1=0:top,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_door,state=facing:south/hinge:right/half:upper/open:false,patch0=0:bottom,patch1=0:top,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_door,state=facing:south/hinge:left/half:lower/open:true,patch0=0:bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_door,state=facing:south/hinge:left/half:lower/open:false,patch0=0:bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_door,state=facing:south/hinge:right/half:lower/open:true,patch0=0:bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_door,state=facing:south/hinge:right/half:lower/open:false,patch0=0:bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_door,state=facing:west/hinge:left/half:upper/open:true,patch0=0:bottom,patch1=0:top,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_door,state=facing:west/hinge:left/half:upper/open:false,patch0=0:bottom,patch1=0:top,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_door,state=facing:west/hinge:right/half:upper/open:true,patch0=0:bottom,patch1=0:top,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_door,state=facing:west/hinge:right/half:upper/open:false,patch0=0:bottom,patch1=0:top,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_door,state=facing:west/hinge:left/half:lower/open:true,patch0=0:bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_door,state=facing:west/hinge:left/half:lower/open:false,patch0=0:bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_door,state=facing:west/hinge:right/half:lower/open:true,patch0=0:bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_door,state=facing:west/hinge:right/half:lower/open:false,patch0=0:bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_door,state=facing:east/hinge:left/half:upper/open:true,patch0=0:bottom,patch1=0:top,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_door,state=facing:east/hinge:left/half:upper/open:false,patch0=0:bottom,patch1=0:top,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_door,state=facing:east/hinge:right/half:upper/open:true,patch0=0:bottom,patch1=0:top,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_door,state=facing:east/hinge:right/half:upper/open:false,patch0=0:bottom,patch1=0:top,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_door,state=facing:east/hinge:left/half:lower/open:true,patch0=0:bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_door,state=facing:east/hinge:left/half:lower/open:false,patch0=0:bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_door,state=facing:east/hinge:right/half:lower/open:true,patch0=0:bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_door,state=facing:east/hinge:right/half:lower/open:false,patch0=0:bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%locked_steel_door,state=facing:north/hinge:left/half:upper/open:true,patch0=0:bottom1,patch1=0:top1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%locked_steel_door,state=facing:north/hinge:left/half:upper/open:false,patch0=0:bottom1,patch1=0:top1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%locked_steel_door,state=facing:north/hinge:right/half:upper/open:true,patch0=0:bottom1,patch1=0:top1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%locked_steel_door,state=facing:north/hinge:right/half:upper/open:false,patch0=0:bottom1,patch1=0:top1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%locked_steel_door,state=facing:north/hinge:left/half:lower/open:true,patch0=0:bottom1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%locked_steel_door,state=facing:north/hinge:left/half:lower/open:false,patch0=0:bottom1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%locked_steel_door,state=facing:north/hinge:right/half:lower/open:true,patch0=0:bottom1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%locked_steel_door,state=facing:north/hinge:right/half:lower/open:false,patch0=0:bottom1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%locked_steel_door,state=facing:south/hinge:left/half:upper/open:true,patch0=0:bottom1,patch1=0:top1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%locked_steel_door,state=facing:south/hinge:left/half:upper/open:false,patch0=0:bottom1,patch1=0:top1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%locked_steel_door,state=facing:south/hinge:right/half:upper/open:true,patch0=0:bottom1,patch1=0:top1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%locked_steel_door,state=facing:south/hinge:right/half:upper/open:false,patch0=0:bottom1,patch1=0:top1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%locked_steel_door,state=facing:south/hinge:left/half:lower/open:true,patch0=0:bottom1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%locked_steel_door,state=facing:south/hinge:left/half:lower/open:false,patch0=0:bottom1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%locked_steel_door,state=facing:south/hinge:right/half:lower/open:true,patch0=0:bottom1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%locked_steel_door,state=facing:south/hinge:right/half:lower/open:false,patch0=0:bottom1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%locked_steel_door,state=facing:west/hinge:left/half:upper/open:true,patch0=0:bottom1,patch1=0:top1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%locked_steel_door,state=facing:west/hinge:left/half:upper/open:false,patch0=0:bottom1,patch1=0:top1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%locked_steel_door,state=facing:west/hinge:right/half:upper/open:true,patch0=0:bottom1,patch1=0:top1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%locked_steel_door,state=facing:west/hinge:right/half:upper/open:false,patch0=0:bottom1,patch1=0:top1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%locked_steel_door,state=facing:west/hinge:left/half:lower/open:true,patch0=0:bottom1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%locked_steel_door,state=facing:west/hinge:left/half:lower/open:false,patch0=0:bottom1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%locked_steel_door,state=facing:west/hinge:right/half:lower/open:true,patch0=0:bottom1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%locked_steel_door,state=facing:west/hinge:right/half:lower/open:false,patch0=0:bottom1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%locked_steel_door,state=facing:east/hinge:left/half:upper/open:true,patch0=0:bottom1,patch1=0:top1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%locked_steel_door,state=facing:east/hinge:left/half:upper/open:false,patch0=0:bottom1,patch1=0:top1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%locked_steel_door,state=facing:east/hinge:right/half:upper/open:true,patch0=0:bottom1,patch1=0:top1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%locked_steel_door,state=facing:east/hinge:right/half:upper/open:false,patch0=0:bottom1,patch1=0:top1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%locked_steel_door,state=facing:east/hinge:left/half:lower/open:true,patch0=0:bottom1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%locked_steel_door,state=facing:east/hinge:left/half:lower/open:false,patch0=0:bottom1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%locked_steel_door,state=facing:east/hinge:right/half:lower/open:true,patch0=0:bottom1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%locked_steel_door,state=facing:east/hinge:right/half:lower/open:false,patch0=0:bottom1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_sheet_metal,patch0=0:steel_sheet_metal,patch1=0:steel_sheet_metal,patch2=0:steel_sheet_metal,patch3=0:steel_sheet_metal,patch4=0:steel_sheet_metal,patch5=0:steel_sheet_metal,stdrot=true
|
|
||||||
block:id=%steel_sheet_stairs,state=facing:north/half:top/shape:straight,patch0=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_sheet_stairs,state=facing:north/half:top/shape:inner_left,patch0=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_sheet_stairs,state=facing:north/half:top/shape:inner_right,patch0=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_sheet_stairs,state=facing:north/half:top/shape:outer_left,patch0=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_sheet_stairs,state=facing:north/half:top/shape:outer_right,patch0=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_sheet_stairs,state=facing:north/half:bottom/shape:straight,patch0=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_sheet_stairs,state=facing:north/half:bottom/shape:inner_left,patch0=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_sheet_stairs,state=facing:north/half:bottom/shape:inner_right,patch0=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_sheet_stairs,state=facing:north/half:bottom/shape:outer_left,patch0=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_sheet_stairs,state=facing:north/half:bottom/shape:outer_right,patch0=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_sheet_stairs,state=facing:south/half:top/shape:straight,patch0=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_sheet_stairs,state=facing:south/half:top/shape:inner_left,patch0=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_sheet_stairs,state=facing:south/half:top/shape:inner_right,patch0=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_sheet_stairs,state=facing:south/half:top/shape:outer_left,patch0=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_sheet_stairs,state=facing:south/half:top/shape:outer_right,patch0=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_sheet_stairs,state=facing:south/half:bottom/shape:straight,patch0=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_sheet_stairs,state=facing:south/half:bottom/shape:inner_left,patch0=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_sheet_stairs,state=facing:south/half:bottom/shape:inner_right,patch0=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_sheet_stairs,state=facing:south/half:bottom/shape:outer_left,patch0=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_sheet_stairs,state=facing:south/half:bottom/shape:outer_right,patch0=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_sheet_stairs,state=facing:west/half:top/shape:straight,patch0=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_sheet_stairs,state=facing:west/half:top/shape:inner_left,patch0=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_sheet_stairs,state=facing:west/half:top/shape:inner_right,patch0=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_sheet_stairs,state=facing:west/half:top/shape:outer_left,patch0=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_sheet_stairs,state=facing:west/half:top/shape:outer_right,patch0=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_sheet_stairs,state=facing:west/half:bottom/shape:straight,patch0=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_sheet_stairs,state=facing:west/half:bottom/shape:inner_left,patch0=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_sheet_stairs,state=facing:west/half:bottom/shape:inner_right,patch0=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_sheet_stairs,state=facing:west/half:bottom/shape:outer_left,patch0=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_sheet_stairs,state=facing:west/half:bottom/shape:outer_right,patch0=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_sheet_stairs,state=facing:east/half:top/shape:straight,patch0=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_sheet_stairs,state=facing:east/half:top/shape:inner_left,patch0=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_sheet_stairs,state=facing:east/half:top/shape:inner_right,patch0=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_sheet_stairs,state=facing:east/half:top/shape:outer_left,patch0=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_sheet_stairs,state=facing:east/half:top/shape:outer_right,patch0=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_sheet_stairs,state=facing:east/half:bottom/shape:straight,patch0=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_sheet_stairs,state=facing:east/half:bottom/shape:inner_left,patch0=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_sheet_stairs,state=facing:east/half:bottom/shape:inner_right,patch0=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_sheet_stairs,state=facing:east/half:bottom/shape:outer_left,patch0=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_sheet_stairs,state=facing:east/half:bottom/shape:outer_right,patch0=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_sheet_slab,state=type:top,patch0=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_sheet_slab,state=type:bottom,patch0=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_sheet_slab,state=type:double,patch0=0:steel_sheet_metal,patch1=0:steel_sheet_metal,patch2=0:steel_sheet_metal,patch3=0:steel_sheet_metal,patch4=0:steel_sheet_metal,patch5=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_bars,state=west:true/east:true/south:true/north:true,patch0=0:post,patch1=0:block,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_bars,state=west:false/east:true/south:true/north:true,patch0=0:post,patch1=0:block,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_bars,state=west:true/east:true/south:false/north:true,patch0=0:post,patch1=0:block,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_bars,state=west:false/east:true/south:false/north:true,patch0=0:post,patch1=0:block,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_bars,state=west:true/east:true/south:true/north:false,patch0=0:post,patch1=0:block,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_bars,state=west:false/east:true/south:true/north:false,patch0=0:post,patch1=0:block,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_bars,state=west:true/east:true/south:false/north:false,patch0=0:post,patch1=0:block,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_bars,state=west:false/east:true/south:false/north:false,patch0=0:post,patch1=0:block,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_bars,state=west:true/east:false/south:true/north:true,patch0=0:post,patch1=0:block,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_bars,state=west:false/east:false/south:true/north:true,patch0=0:post,patch1=0:block,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_bars,state=west:true/east:false/south:false/north:true,patch0=0:post,patch1=0:block,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_bars,state=west:false/east:false/south:false/north:true,patch0=0:post,patch1=0:block,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_bars,state=west:true/east:false/south:true/north:false,patch0=0:post,patch1=0:block,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_bars,state=west:false/east:false/south:true/north:false,patch0=0:post,patch1=0:block,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_bars,state=west:true/east:false/south:false/north:false,patch0=0:post,patch1=0:block,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_bars,state=west:false/east:false/south:false/north:false,patch0=0:post,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_catwalk,state=west:true/east:true/south:true/bottom:true/north:true,patch0=0:steel_catwalk,patch1=0:steel_catwalk_rail,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_catwalk,state=west:false/east:true/south:true/bottom:true/north:true,patch0=0:steel_catwalk,patch1=0:steel_catwalk_rail,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_catwalk,state=west:true/east:true/south:false/bottom:true/north:true,patch0=0:steel_catwalk,patch1=0:steel_catwalk_rail,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_catwalk,state=west:false/east:true/south:false/bottom:true/north:true,patch0=0:steel_catwalk,patch1=0:steel_catwalk_rail,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_catwalk,state=west:true/east:true/south:true/bottom:true/north:false,patch0=0:steel_catwalk,patch1=0:steel_catwalk_rail,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_catwalk,state=west:false/east:true/south:true/bottom:true/north:false,patch0=0:steel_catwalk,patch1=0:steel_catwalk_rail,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_catwalk,state=west:true/east:true/south:false/bottom:true/north:false,patch0=0:steel_catwalk,patch1=0:steel_catwalk_rail,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_catwalk,state=west:false/east:true/south:false/bottom:true/north:false,patch0=0:steel_catwalk,patch1=0:steel_catwalk_rail,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_catwalk,state=west:true/east:false/south:true/bottom:true/north:true,patch0=0:steel_catwalk,patch1=0:steel_catwalk_rail,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_catwalk,state=west:false/east:false/south:true/bottom:true/north:true,patch0=0:steel_catwalk,patch1=0:steel_catwalk_rail,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_catwalk,state=west:true/east:false/south:false/bottom:true/north:true,patch0=0:steel_catwalk,patch1=0:steel_catwalk_rail,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_catwalk,state=west:false/east:false/south:false/bottom:true/north:true,patch0=0:steel_catwalk,patch1=0:steel_catwalk_rail,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_catwalk,state=west:true/east:false/south:true/bottom:true/north:false,patch0=0:steel_catwalk,patch1=0:steel_catwalk_rail,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_catwalk,state=west:false/east:false/south:true/bottom:true/north:false,patch0=0:steel_catwalk,patch1=0:steel_catwalk_rail,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_catwalk,state=west:true/east:false/south:false/bottom:true/north:false,patch0=0:steel_catwalk,patch1=0:steel_catwalk_rail,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_catwalk,state=west:false/east:false/south:false/bottom:true/north:false,patch0=0:steel_catwalk,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_catwalk,state=west:true/east:true/south:true/bottom:false/north:true,patch0=0:steel_catwalk,patch1=0:steel_catwalk_rail,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_catwalk,state=west:false/east:true/south:true/bottom:false/north:true,patch0=0:steel_catwalk,patch1=0:steel_catwalk_rail,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_catwalk,state=west:true/east:true/south:false/bottom:false/north:true,patch0=0:steel_catwalk,patch1=0:steel_catwalk_rail,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_catwalk,state=west:false/east:true/south:false/bottom:false/north:true,patch0=0:steel_catwalk,patch1=0:steel_catwalk_rail,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_catwalk,state=west:true/east:true/south:true/bottom:false/north:false,patch0=0:steel_catwalk,patch1=0:steel_catwalk_rail,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_catwalk,state=west:false/east:true/south:true/bottom:false/north:false,patch0=0:steel_catwalk,patch1=0:steel_catwalk_rail,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_catwalk,state=west:true/east:true/south:false/bottom:false/north:false,patch0=0:steel_catwalk,patch1=0:steel_catwalk_rail,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_catwalk,state=west:false/east:true/south:false/bottom:false/north:false,patch0=0:steel_catwalk,patch1=0:steel_catwalk_rail,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_catwalk,state=west:true/east:false/south:true/bottom:false/north:true,patch0=0:steel_catwalk,patch1=0:steel_catwalk_rail,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_catwalk,state=west:false/east:false/south:true/bottom:false/north:true,patch0=0:steel_catwalk,patch1=0:steel_catwalk_rail,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_catwalk,state=west:true/east:false/south:false/bottom:false/north:true,patch0=0:steel_catwalk,patch1=0:steel_catwalk_rail,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_catwalk,state=west:false/east:false/south:false/bottom:false/north:true,patch0=0:steel_catwalk,patch1=0:steel_catwalk_rail,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_catwalk,state=west:true/east:false/south:true/bottom:false/north:false,patch0=0:steel_catwalk,patch1=0:steel_catwalk_rail,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_catwalk,state=west:false/east:false/south:true/bottom:false/north:false,patch0=0:steel_catwalk,patch1=0:steel_catwalk_rail,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_catwalk,state=west:true/east:false/south:false/bottom:false/north:false,patch0=0:steel_catwalk,patch1=0:steel_catwalk_rail,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_catwalk,state=west:false/east:false/south:false/bottom:false/north:false,patch0=0:steel_catwalk,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_sheet_vertical_slab,state=type:top/facing:north,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_sheet_vertical_slab,state=type:bottom/facing:north,patch0=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_sheet_vertical_slab,state=type:double/facing:north,patch0=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_sheet_vertical_slab,state=type:top/facing:south,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_sheet_vertical_slab,state=type:bottom/facing:south,patch0=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_sheet_vertical_slab,state=type:double/facing:south,patch0=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_sheet_vertical_slab,state=type:top/facing:west,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_sheet_vertical_slab,state=type:bottom/facing:west,patch0=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_sheet_vertical_slab,state=type:double/facing:west,patch0=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_sheet_vertical_slab,state=type:top/facing:east,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_sheet_vertical_slab,state=type:bottom/facing:east,patch0=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_sheet_vertical_slab,state=type:double/facing:east,patch0=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_mesh_fence,state=west:true/east:true/waterlogged:true/south:true/north:true,patch0=0:steel_chain_link,patch1=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_mesh_fence,state=west:false/east:true/waterlogged:true/south:true/north:true,patch0=0:steel_chain_link,patch1=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_mesh_fence,state=west:true/east:true/waterlogged:false/south:true/north:true,patch0=0:steel_chain_link,patch1=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_mesh_fence,state=west:false/east:true/waterlogged:false/south:true/north:true,patch0=0:steel_chain_link,patch1=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_mesh_fence,state=west:true/east:true/waterlogged:true/south:false/north:true,patch0=0:steel_chain_link,patch1=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_mesh_fence,state=west:false/east:true/waterlogged:true/south:false/north:true,patch0=0:steel_chain_link,patch1=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_mesh_fence,state=west:true/east:true/waterlogged:false/south:false/north:true,patch0=0:steel_chain_link,patch1=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_mesh_fence,state=west:false/east:true/waterlogged:false/south:false/north:true,patch0=0:steel_chain_link,patch1=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_mesh_fence,state=west:true/east:true/waterlogged:true/south:true/north:false,patch0=0:steel_chain_link,patch1=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_mesh_fence,state=west:false/east:true/waterlogged:true/south:true/north:false,patch0=0:steel_chain_link,patch1=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_mesh_fence,state=west:true/east:true/waterlogged:false/south:true/north:false,patch0=0:steel_chain_link,patch1=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_mesh_fence,state=west:false/east:true/waterlogged:false/south:true/north:false,patch0=0:steel_chain_link,patch1=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_mesh_fence,state=west:true/east:true/waterlogged:true/south:false/north:false,patch0=0:steel_chain_link,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_mesh_fence,state=west:false/east:true/waterlogged:true/south:false/north:false,patch0=0:steel_chain_link,patch1=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_mesh_fence,state=west:true/east:true/waterlogged:false/south:false/north:false,patch0=0:steel_chain_link,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_mesh_fence,state=west:false/east:true/waterlogged:false/south:false/north:false,patch0=0:steel_chain_link,patch1=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_mesh_fence,state=west:true/east:false/waterlogged:true/south:true/north:true,patch0=0:steel_chain_link,patch1=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_mesh_fence,state=west:false/east:false/waterlogged:true/south:true/north:true,patch0=0:steel_chain_link,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_mesh_fence,state=west:true/east:false/waterlogged:false/south:true/north:true,patch0=0:steel_chain_link,patch1=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_mesh_fence,state=west:false/east:false/waterlogged:false/south:true/north:true,patch0=0:steel_chain_link,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_mesh_fence,state=west:true/east:false/waterlogged:true/south:false/north:true,patch0=0:steel_chain_link,patch1=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_mesh_fence,state=west:false/east:false/waterlogged:true/south:false/north:true,patch0=0:steel_chain_link,patch1=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_mesh_fence,state=west:true/east:false/waterlogged:false/south:false/north:true,patch0=0:steel_chain_link,patch1=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_mesh_fence,state=west:false/east:false/waterlogged:false/south:false/north:true,patch0=0:steel_chain_link,patch1=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_mesh_fence,state=west:true/east:false/waterlogged:true/south:true/north:false,patch0=0:steel_chain_link,patch1=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_mesh_fence,state=west:false/east:false/waterlogged:true/south:true/north:false,patch0=0:steel_chain_link,patch1=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_mesh_fence,state=west:true/east:false/waterlogged:false/south:true/north:false,patch0=0:steel_chain_link,patch1=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_mesh_fence,state=west:false/east:false/waterlogged:false/south:true/north:false,patch0=0:steel_chain_link,patch1=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_mesh_fence,state=west:true/east:false/waterlogged:true/south:false/north:false,patch0=0:steel_chain_link,patch1=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_mesh_fence,state=west:false/east:false/waterlogged:true/south:false/north:false,patch0=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_mesh_fence,state=west:true/east:false/waterlogged:false/south:false/north:false,patch0=0:steel_chain_link,patch1=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%steel_mesh_fence,state=west:false/east:false/waterlogged:false/south:false/north:false,patch0=0:steel_sheet_metal,transparency=SEMITRANSPARENT,stdrot=true
|
|
File diff suppressed because one or more lines are too long
@ -1,401 +0,0 @@
|
|||||||
modname:ars_nouveau
|
|
||||||
|
|
||||||
texture:id=source_jar,filename=assets/ars_nouveau/textures/blocks/source_jar.png,xcount=1,ycount=1
|
|
||||||
texture:id=mana_still,filename=assets/ars_nouveau/textures/blocks/mana_still.png,xcount=1,ycount=1
|
|
||||||
texture:id=stage1,filename=assets/ars_nouveau/textures/blocks/manabloom/stage1.png,xcount=1,ycount=1
|
|
||||||
texture:id=stage2,filename=assets/ars_nouveau/textures/blocks/manabloom/stage2.png,xcount=1,ycount=1
|
|
||||||
texture:id=stage3,filename=assets/ars_nouveau/textures/blocks/manabloom/stage3.png,xcount=1,ycount=1
|
|
||||||
texture:id=stage4,filename=assets/ars_nouveau/textures/blocks/manabloom/stage4.png,xcount=1,ycount=1
|
|
||||||
texture:id=arcane_pedestal,filename=assets/ars_nouveau/textures/blocks/arcane_pedestal.png,xcount=1,ycount=1
|
|
||||||
texture:id=arcane_bricks,filename=assets/ars_nouveau/textures/blocks/arcane_bricks.png,xcount=1,ycount=1
|
|
||||||
texture:id=ab_alternating,filename=assets/ars_nouveau/textures/blocks/ab_alternating.png,xcount=1,ycount=1
|
|
||||||
texture:id=arcane_stone,filename=assets/ars_nouveau/textures/blocks/arcane_stone.png,xcount=1,ycount=1
|
|
||||||
texture:id=ab_basket,filename=assets/ars_nouveau/textures/blocks/ab_basket.png,xcount=1,ycount=1
|
|
||||||
texture:id=ab_herring,filename=assets/ars_nouveau/textures/blocks/ab_herring.png,xcount=1,ycount=1
|
|
||||||
texture:id=ab_mosaic,filename=assets/ars_nouveau/textures/blocks/ab_mosaic.png,xcount=1,ycount=1
|
|
||||||
texture:id=lily_stone,filename=assets/ars_nouveau/textures/blocks/volcanic/lily_stone.png,xcount=1,ycount=1
|
|
||||||
texture:id=lily_magma,filename=assets/ars_nouveau/textures/blocks/volcanic/lily_magma.png,xcount=1,ycount=1
|
|
||||||
texture:id=lily_source,filename=assets/ars_nouveau/textures/blocks/volcanic/lily_source.png,xcount=1,ycount=1
|
|
||||||
texture:id=sourceberry0,filename=assets/ars_nouveau/textures/blocks/sourceberry/sourceberry0.png,xcount=1,ycount=1
|
|
||||||
texture:id=sourceberry1,filename=assets/ars_nouveau/textures/blocks/sourceberry/sourceberry1.png,xcount=1,ycount=1
|
|
||||||
texture:id=sourceberry2,filename=assets/ars_nouveau/textures/blocks/sourceberry/sourceberry2.png,xcount=1,ycount=1
|
|
||||||
texture:id=sourceberry3,filename=assets/ars_nouveau/textures/blocks/sourceberry/sourceberry3.png,xcount=1,ycount=1
|
|
||||||
texture:id=blue_archwood_sapling,filename=assets/ars_nouveau/textures/blocks/blue_archwood_sapling.png,xcount=1,ycount=1
|
|
||||||
texture:id=red_archwood_sapling,filename=assets/ars_nouveau/textures/blocks/red_archwood_sapling.png,xcount=1,ycount=1
|
|
||||||
texture:id=purple_archwood_sapling,filename=assets/ars_nouveau/textures/blocks/purple_archwood_sapling.png,xcount=1,ycount=1
|
|
||||||
texture:id=green_archwood_sapling,filename=assets/ars_nouveau/textures/blocks/green_archwood_sapling.png,xcount=1,ycount=1
|
|
||||||
texture:id=wixie_cauldron,filename=assets/ars_nouveau/textures/blocks/wixie_cauldron.png,xcount=1,ycount=1
|
|
||||||
texture:id=cauldron_top,filename=assets/minecraft/textures/block/cauldron_top.png,xcount=1,ycount=1
|
|
||||||
texture:id=cauldron_side,filename=assets/minecraft/textures/block/cauldron_side.png,xcount=1,ycount=1
|
|
||||||
texture:id=cauldron_inner,filename=assets/minecraft/textures/block/cauldron_inner.png,xcount=1,ycount=1
|
|
||||||
texture:id=cauldron_bottom,filename=assets/minecraft/textures/block/cauldron_bottom.png,xcount=1,ycount=1
|
|
||||||
texture:id=ab_smooth,filename=assets/ars_nouveau/textures/blocks/ab_smooth.png,xcount=1,ycount=1
|
|
||||||
texture:id=ab_smooth_slab,filename=assets/ars_nouveau/textures/blocks/ab_smooth_slab.png,xcount=1,ycount=1
|
|
||||||
texture:id=ab_clover,filename=assets/ars_nouveau/textures/blocks/ab_clover.png,xcount=1,ycount=1
|
|
||||||
texture:id=blue_archwood_log_top,filename=assets/ars_nouveau/textures/blocks/blue_archwood_log_top.png,xcount=1,ycount=1
|
|
||||||
texture:id=blue_archwood_log,filename=assets/ars_nouveau/textures/blocks/blue_archwood_log.png,xcount=1,ycount=1
|
|
||||||
texture:id=blue_archwood_leaves,filename=assets/ars_nouveau/textures/blocks/blue_archwood_leaves.png,xcount=1,ycount=1
|
|
||||||
texture:id=red_archwood_log_top,filename=assets/ars_nouveau/textures/blocks/red_archwood_log_top.png,xcount=1,ycount=1
|
|
||||||
texture:id=red_archwood_log,filename=assets/ars_nouveau/textures/blocks/red_archwood_log.png,xcount=1,ycount=1
|
|
||||||
texture:id=red_archwood_leaves,filename=assets/ars_nouveau/textures/blocks/red_archwood_leaves.png,xcount=1,ycount=1
|
|
||||||
texture:id=green_archwood_log_top,filename=assets/ars_nouveau/textures/blocks/green_archwood_log_top.png,xcount=1,ycount=1
|
|
||||||
texture:id=green_archwood_log,filename=assets/ars_nouveau/textures/blocks/green_archwood_log.png,xcount=1,ycount=1
|
|
||||||
texture:id=green_archwood_leaves,filename=assets/ars_nouveau/textures/blocks/green_archwood_leaves.png,xcount=1,ycount=1
|
|
||||||
texture:id=purple_archwood_log_top,filename=assets/ars_nouveau/textures/blocks/purple_archwood_log_top.png,xcount=1,ycount=1
|
|
||||||
texture:id=purple_archwood_log,filename=assets/ars_nouveau/textures/blocks/purple_archwood_log.png,xcount=1,ycount=1
|
|
||||||
texture:id=purple_archwood_leaves,filename=assets/ars_nouveau/textures/blocks/purple_archwood_leaves.png,xcount=1,ycount=1
|
|
||||||
texture:id=archwood_planks,filename=assets/ars_nouveau/textures/blocks/archwood_planks.png,xcount=1,ycount=1
|
|
||||||
texture:id=archwood_door_bottom,filename=assets/ars_nouveau/textures/blocks/archwood_door_bottom.png,xcount=1,ycount=1
|
|
||||||
texture:id=archwood_door_top,filename=assets/ars_nouveau/textures/blocks/archwood_door_top.png,xcount=1,ycount=1
|
|
||||||
texture:id=archwood_trapdoor,filename=assets/ars_nouveau/textures/blocks/archwood_trapdoor.png,xcount=1,ycount=1
|
|
||||||
texture:id=stripped_archwood_log_top,filename=assets/ars_nouveau/textures/blocks/stripped_archwood_log_top.png,xcount=1,ycount=1
|
|
||||||
texture:id=stripped_blue_archwood_log,filename=assets/ars_nouveau/textures/blocks/stripped_blue_archwood_log.png,xcount=1,ycount=1
|
|
||||||
texture:id=stripped_green_archwood_log,filename=assets/ars_nouveau/textures/blocks/stripped_green_archwood_log.png,xcount=1,ycount=1
|
|
||||||
texture:id=stripped_red_archwood_log,filename=assets/ars_nouveau/textures/blocks/stripped_red_archwood_log.png,xcount=1,ycount=1
|
|
||||||
texture:id=stripped_purple_archwood_log,filename=assets/ars_nouveau/textures/blocks/stripped_purple_archwood_log.png,xcount=1,ycount=1
|
|
||||||
texture:id=source_gem_block,filename=assets/ars_nouveau/textures/blocks/source_gem_block.png,xcount=1,ycount=1
|
|
||||||
texture:id=potion_jar,filename=assets/ars_nouveau/textures/blocks/potion_jar.png,xcount=1,ycount=1
|
|
||||||
texture:id=potion_still,filename=assets/ars_nouveau/textures/blocks/potion_still.png,xcount=1,ycount=1
|
|
||||||
texture:id=sas_basket,filename=assets/ars_nouveau/textures/blocks/sas_basket.png,xcount=1,ycount=1
|
|
||||||
texture:id=sas_clover,filename=assets/ars_nouveau/textures/blocks/sas_clover.png,xcount=1,ycount=1
|
|
||||||
texture:id=sas_herring,filename=assets/ars_nouveau/textures/blocks/sas_herring.png,xcount=1,ycount=1
|
|
||||||
texture:id=sas_mosaic,filename=assets/ars_nouveau/textures/blocks/sas_mosaic.png,xcount=1,ycount=1
|
|
||||||
texture:id=sas_alternating,filename=assets/ars_nouveau/textures/blocks/sas_alternating.png,xcount=1,ycount=1
|
|
||||||
texture:id=sas_ashlar,filename=assets/ars_nouveau/textures/blocks/sas_ashlar.png,xcount=1,ycount=1
|
|
||||||
texture:id=as_gold_alt,filename=assets/ars_nouveau/textures/blocks/as_gold_alt.png,xcount=1,ycount=1
|
|
||||||
texture:id=as_gold_ashlar,filename=assets/ars_nouveau/textures/blocks/as_gold_ashlar.png,xcount=1,ycount=1
|
|
||||||
texture:id=as_gold_basket,filename=assets/ars_nouveau/textures/blocks/as_gold_basket.png,xcount=1,ycount=1
|
|
||||||
texture:id=as_gold_clover,filename=assets/ars_nouveau/textures/blocks/as_gold_clover.png,xcount=1,ycount=1
|
|
||||||
texture:id=as_gold_herring,filename=assets/ars_nouveau/textures/blocks/as_gold_herring.png,xcount=1,ycount=1
|
|
||||||
texture:id=as_gold_mosaic,filename=assets/ars_nouveau/textures/blocks/as_gold_mosaic.png,xcount=1,ycount=1
|
|
||||||
texture:id=as_gold_slab,filename=assets/ars_nouveau/textures/blocks/as_gold_slab.png,xcount=1,ycount=1
|
|
||||||
texture:id=as_gold_stone,filename=assets/ars_nouveau/textures/blocks/as_gold_stone.png,xcount=1,ycount=1
|
|
||||||
texture:id=sconce,filename=assets/ars_nouveau/textures/blocks/sconce.png,xcount=1,ycount=1
|
|
||||||
texture:id=drygmy_stone,filename=assets/ars_nouveau/textures/blocks/drygmy_stone.png,xcount=1,ycount=1
|
|
||||||
texture:id=mossy_cobblestone,filename=assets/minecraft/textures/block/mossy_cobblestone.png,xcount=1,ycount=1
|
|
||||||
texture:id=bookwyrm_lectern,filename=assets/ars_nouveau/textures/blocks/bookwyrm_lectern.png,xcount=1,ycount=1
|
|
||||||
texture:id=lectern_base,filename=assets/minecraft/textures/block/lectern_base.png,xcount=1,ycount=1
|
|
||||||
texture:id=oak_planks,filename=assets/minecraft/textures/block/oak_planks.png,xcount=1,ycount=1
|
|
||||||
texture:id=lectern_sides,filename=assets/minecraft/textures/block/lectern_sides.png,xcount=1,ycount=1
|
|
||||||
texture:id=lectern_front,filename=assets/minecraft/textures/block/lectern_front.png,xcount=1,ycount=1
|
|
||||||
texture:id=lectern_top,filename=assets/minecraft/textures/block/lectern_top.png,xcount=1,ycount=1
|
|
||||||
texture:id=spell_prism,filename=assets/ars_nouveau/textures/blocks/spell_prism.png,xcount=1,ycount=1
|
|
||||||
texture:id=red_sbed,filename=assets/ars_nouveau/textures/blocks/red_sbed.png,xcount=1,ycount=1
|
|
||||||
texture:id=blue_sbed,filename=assets/ars_nouveau/textures/blocks/blue_sbed.png,xcount=1,ycount=1
|
|
||||||
texture:id=green_sbed,filename=assets/ars_nouveau/textures/blocks/green_sbed.png,xcount=1,ycount=1
|
|
||||||
texture:id=orange_sbed,filename=assets/ars_nouveau/textures/blocks/orange_sbed.png,xcount=1,ycount=1
|
|
||||||
texture:id=yellow_sbed,filename=assets/ars_nouveau/textures/blocks/yellow_sbed.png,xcount=1,ycount=1
|
|
||||||
texture:id=purple_sbed,filename=assets/ars_nouveau/textures/blocks/purple_sbed.png,xcount=1,ycount=1
|
|
||||||
block:id=%source_jar,state=fill:0,patch0=0:source_jar,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%source_jar,state=fill:1,patch0=0:source_jar,patch1=0:mana_still,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%source_jar,state=fill:2,patch0=0:source_jar,patch1=0:mana_still,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%source_jar,state=fill:3,patch0=0:source_jar,patch1=0:mana_still,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%source_jar,state=fill:4,patch0=0:source_jar,patch1=0:mana_still,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%source_jar,state=fill:5,patch0=0:source_jar,patch1=0:mana_still,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%source_jar,state=fill:6,patch0=0:source_jar,patch1=0:mana_still,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%source_jar,state=fill:7,patch0=0:source_jar,patch1=0:mana_still,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%source_jar,state=fill:8,patch0=0:source_jar,patch1=0:mana_still,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%source_jar,state=fill:9,patch0=0:source_jar,patch1=0:mana_still,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%source_jar,state=fill:10,patch0=0:source_jar,patch1=0:mana_still,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%source_jar,state=fill:11,patch0=0:source_jar,patch1=0:mana_still,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%magebloom_crop,state=age:0,patch0=0:stage1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%magebloom_crop,state=age:1,patch0=0:stage2,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%magebloom_crop,state=age:2,patch0=0:stage2,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%magebloom_crop,state=age:3,patch0=0:stage2,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%magebloom_crop,state=age:4,patch0=0:stage3,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%magebloom_crop,state=age:5,patch0=0:stage3,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%magebloom_crop,state=age:6,patch0=0:stage3,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%magebloom_crop,state=age:7,patch0=0:stage4,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%arcane_pedestal,patch0=0:arcane_pedestal,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%arcane_bricks,patch0=0:arcane_bricks,patch1=0:arcane_bricks,patch2=0:arcane_bricks,patch3=0:arcane_bricks,patch4=0:arcane_bricks,patch5=0:arcane_bricks,stdrot=true
|
|
||||||
block:id=%portal,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%ab_alternating,patch0=0:ab_alternating,patch1=0:ab_alternating,patch2=0:ab_alternating,patch3=0:ab_alternating,patch4=0:ab_alternating,patch5=0:ab_alternating,stdrot=true
|
|
||||||
block:id=%arcane_stone,patch0=0:arcane_stone,patch1=0:arcane_stone,patch2=0:arcane_stone,patch3=0:arcane_stone,patch4=0:arcane_stone,patch5=0:arcane_stone,stdrot=true
|
|
||||||
block:id=%ab_basket,patch0=0:ab_basket,patch1=0:ab_basket,patch2=0:ab_basket,patch3=0:ab_basket,patch4=0:ab_basket,patch5=0:ab_basket,stdrot=true
|
|
||||||
block:id=%ab_herring,patch0=0:ab_herring,patch1=0:ab_herring,patch2=0:ab_herring,patch3=0:ab_herring,patch4=0:ab_herring,patch5=0:ab_herring,stdrot=true
|
|
||||||
block:id=%ab_mosaic,patch0=0:ab_mosaic,patch1=0:ab_mosaic,patch2=0:ab_mosaic,patch3=0:ab_mosaic,patch4=0:ab_mosaic,patch5=0:ab_mosaic,stdrot=true
|
|
||||||
block:id=%lava_lily,state=loc:0,patch0=0:lily_stone,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%lava_lily,state=loc:1,patch0=0:lily_magma,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%lava_lily,state=loc:2,patch0=0:lily_source,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%sourceberry_bush,state=age:0,patch0=0:sourceberry0,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%sourceberry_bush,state=age:1,patch0=0:sourceberry1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%sourceberry_bush,state=age:2,patch0=0:sourceberry2,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%sourceberry_bush,state=age:3,patch0=0:sourceberry3,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%blue_archwood_sapling,patch0=0:blue_archwood_sapling,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%red_archwood_sapling,patch0=0:red_archwood_sapling,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%purple_archwood_sapling,patch0=0:purple_archwood_sapling,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%green_archwood_sapling,patch0=0:green_archwood_sapling,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%wixie_cauldron,state=converted:true/filled:true,patch0=0:wixie_cauldron,patch1=0:mana_still,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%wixie_cauldron,state=converted:true/filled:false,patch0=0:wixie_cauldron,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%wixie_cauldron,state=converted:false/filled:true,patch0=0:cauldron_top,patch1=0:cauldron_side,patch2=0:cauldron_inner,patch3=0:cauldron_bottom,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%wixie_cauldron,state=converted:false/filled:false,patch0=0:cauldron_top,patch1=0:cauldron_side,patch2=0:cauldron_inner,patch3=0:cauldron_bottom,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%creative_source_jar,state=fill:0,patch0=0:source_jar,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%creative_source_jar,state=fill:1,patch0=0:source_jar,patch1=0:mana_still,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%creative_source_jar,state=fill:2,patch0=0:source_jar,patch1=0:mana_still,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%creative_source_jar,state=fill:3,patch0=0:source_jar,patch1=0:mana_still,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%creative_source_jar,state=fill:4,patch0=0:source_jar,patch1=0:mana_still,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%creative_source_jar,state=fill:5,patch0=0:source_jar,patch1=0:mana_still,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%creative_source_jar,state=fill:6,patch0=0:source_jar,patch1=0:mana_still,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%creative_source_jar,state=fill:7,patch0=0:source_jar,patch1=0:mana_still,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%creative_source_jar,state=fill:8,patch0=0:source_jar,patch1=0:mana_still,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%creative_source_jar,state=fill:9,patch0=0:source_jar,patch1=0:mana_still,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%creative_source_jar,state=fill:10,patch0=0:source_jar,patch1=0:mana_still,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%creative_source_jar,state=fill:11,patch0=0:source_jar,patch1=0:mana_still,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%ab_smooth,patch0=0:ab_smooth,patch1=0:ab_smooth,patch2=0:ab_smooth,patch3=0:ab_smooth,patch4=0:ab_smooth,patch5=0:ab_smooth,stdrot=true
|
|
||||||
block:id=%ab_smooth_slab,patch0=0:ab_smooth_slab,patch1=0:ab_smooth_slab,patch2=0:ab_smooth_slab,patch3=0:ab_smooth_slab,patch4=0:ab_smooth_slab,patch5=0:ab_smooth_slab,stdrot=true
|
|
||||||
block:id=%ab_clover,patch0=0:ab_clover,patch1=0:ab_clover,patch2=0:ab_clover,patch3=0:ab_clover,patch4=0:ab_clover,patch5=0:ab_clover,stdrot=true
|
|
||||||
block:id=%blue_archwood_log,state=axis:x,patch0=0:blue_archwood_log_top,patch1=0:blue_archwood_log,stdrot=true
|
|
||||||
block:id=%blue_archwood_log,state=axis:y,patch0=0:blue_archwood_log,patch1=0:blue_archwood_log_top,patch2=0:blue_archwood_log,patch3=0:blue_archwood_log,patch4=0:blue_archwood_log_top,patch5=0:blue_archwood_log,stdrot=true
|
|
||||||
block:id=%blue_archwood_log,state=axis:z,patch0=0:blue_archwood_log_top,patch1=0:blue_archwood_log,stdrot=true
|
|
||||||
block:id=%blue_archwood_leaves,patch0=0:blue_archwood_leaves,patch1=0:blue_archwood_leaves,patch2=0:blue_archwood_leaves,patch3=0:blue_archwood_leaves,patch4=0:blue_archwood_leaves,patch5=0:blue_archwood_leaves,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%red_archwood_log,state=axis:x,patch0=0:red_archwood_log_top,patch1=0:red_archwood_log,stdrot=true
|
|
||||||
block:id=%red_archwood_log,state=axis:y,patch0=0:red_archwood_log,patch1=0:red_archwood_log_top,patch2=0:red_archwood_log,patch3=0:red_archwood_log,patch4=0:red_archwood_log_top,patch5=0:red_archwood_log,stdrot=true
|
|
||||||
block:id=%red_archwood_log,state=axis:z,patch0=0:red_archwood_log_top,patch1=0:red_archwood_log,stdrot=true
|
|
||||||
block:id=%red_archwood_leaves,patch0=0:red_archwood_leaves,patch1=0:red_archwood_leaves,patch2=0:red_archwood_leaves,patch3=0:red_archwood_leaves,patch4=0:red_archwood_leaves,patch5=0:red_archwood_leaves,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%green_archwood_log,state=axis:x,patch0=0:green_archwood_log_top,patch1=0:green_archwood_log,stdrot=true
|
|
||||||
block:id=%green_archwood_log,state=axis:y,patch0=0:green_archwood_log,patch1=0:green_archwood_log_top,patch2=0:green_archwood_log,patch3=0:green_archwood_log,patch4=0:green_archwood_log_top,patch5=0:green_archwood_log,stdrot=true
|
|
||||||
block:id=%green_archwood_log,state=axis:z,patch0=0:green_archwood_log_top,patch1=0:green_archwood_log,stdrot=true
|
|
||||||
block:id=%green_archwood_leaves,patch0=0:green_archwood_leaves,patch1=0:green_archwood_leaves,patch2=0:green_archwood_leaves,patch3=0:green_archwood_leaves,patch4=0:green_archwood_leaves,patch5=0:green_archwood_leaves,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%purple_archwood_log,state=axis:x,patch0=0:purple_archwood_log_top,patch1=0:purple_archwood_log,stdrot=true
|
|
||||||
block:id=%purple_archwood_log,state=axis:y,patch0=0:purple_archwood_log,patch1=0:purple_archwood_log_top,patch2=0:purple_archwood_log,patch3=0:purple_archwood_log,patch4=0:purple_archwood_log_top,patch5=0:purple_archwood_log,stdrot=true
|
|
||||||
block:id=%purple_archwood_log,state=axis:z,patch0=0:purple_archwood_log_top,patch1=0:purple_archwood_log,stdrot=true
|
|
||||||
block:id=%purple_archwood_leaves,patch0=0:purple_archwood_leaves,patch1=0:purple_archwood_leaves,patch2=0:purple_archwood_leaves,patch3=0:purple_archwood_leaves,patch4=0:purple_archwood_leaves,patch5=0:purple_archwood_leaves,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%purple_archwood_wood,state=axis:x,patch0=0:purple_archwood_log,stdrot=true
|
|
||||||
block:id=%purple_archwood_wood,state=axis:y,patch0=0:purple_archwood_log,patch1=0:purple_archwood_log,patch2=0:purple_archwood_log,patch3=0:purple_archwood_log,patch4=0:purple_archwood_log,patch5=0:purple_archwood_log,stdrot=true
|
|
||||||
block:id=%purple_archwood_wood,state=axis:z,patch0=0:purple_archwood_log,stdrot=true
|
|
||||||
block:id=%blue_archwood_wood,state=axis:x,patch0=0:blue_archwood_log,stdrot=true
|
|
||||||
block:id=%blue_archwood_wood,state=axis:y,patch0=0:blue_archwood_log,patch1=0:blue_archwood_log,patch2=0:blue_archwood_log,patch3=0:blue_archwood_log,patch4=0:blue_archwood_log,patch5=0:blue_archwood_log,stdrot=true
|
|
||||||
block:id=%blue_archwood_wood,state=axis:z,patch0=0:blue_archwood_log,stdrot=true
|
|
||||||
block:id=%green_archwood_wood,state=axis:x,patch0=0:green_archwood_log,stdrot=true
|
|
||||||
block:id=%green_archwood_wood,state=axis:y,patch0=0:green_archwood_log,patch1=0:green_archwood_log,patch2=0:green_archwood_log,patch3=0:green_archwood_log,patch4=0:green_archwood_log,patch5=0:green_archwood_log,stdrot=true
|
|
||||||
block:id=%green_archwood_wood,state=axis:z,patch0=0:green_archwood_log,stdrot=true
|
|
||||||
block:id=%red_archwood_wood,state=axis:x,patch0=0:red_archwood_log,stdrot=true
|
|
||||||
block:id=%red_archwood_wood,state=axis:y,patch0=0:red_archwood_log,patch1=0:red_archwood_log,patch2=0:red_archwood_log,patch3=0:red_archwood_log,patch4=0:red_archwood_log,patch5=0:red_archwood_log,stdrot=true
|
|
||||||
block:id=%red_archwood_wood,state=axis:z,patch0=0:red_archwood_log,stdrot=true
|
|
||||||
block:id=%archwood_planks,patch0=0:archwood_planks,patch1=0:archwood_planks,patch2=0:archwood_planks,patch3=0:archwood_planks,patch4=0:archwood_planks,patch5=0:archwood_planks,stdrot=true
|
|
||||||
block:id=%archwood_button,state=facing:north/face:floor/powered:true,patch0=0:archwood_planks,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_button,state=facing:north/face:floor/powered:false,patch0=0:archwood_planks,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_button,state=facing:south/face:floor/powered:true,patch0=0:archwood_planks,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_button,state=facing:south/face:floor/powered:false,patch0=0:archwood_planks,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_button,state=facing:west/face:floor/powered:true,patch0=0:archwood_planks,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_button,state=facing:west/face:floor/powered:false,patch0=0:archwood_planks,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_button,state=facing:east/face:floor/powered:true,patch0=0:archwood_planks,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_button,state=facing:east/face:floor/powered:false,patch0=0:archwood_planks,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_button,state=facing:north/face:wall/powered:true,patch0=0:archwood_planks,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_button,state=facing:north/face:wall/powered:false,patch0=0:archwood_planks,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_button,state=facing:south/face:wall/powered:true,patch0=0:archwood_planks,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_button,state=facing:south/face:wall/powered:false,patch0=0:archwood_planks,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_button,state=facing:west/face:wall/powered:true,patch0=0:archwood_planks,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_button,state=facing:west/face:wall/powered:false,patch0=0:archwood_planks,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_button,state=facing:east/face:wall/powered:true,patch0=0:archwood_planks,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_button,state=facing:east/face:wall/powered:false,patch0=0:archwood_planks,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_button,state=facing:north/face:ceiling/powered:true,patch0=0:archwood_planks,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_button,state=facing:north/face:ceiling/powered:false,patch0=0:archwood_planks,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_button,state=facing:south/face:ceiling/powered:true,patch0=0:archwood_planks,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_button,state=facing:south/face:ceiling/powered:false,patch0=0:archwood_planks,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_button,state=facing:west/face:ceiling/powered:true,patch0=0:archwood_planks,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_button,state=facing:west/face:ceiling/powered:false,patch0=0:archwood_planks,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_button,state=facing:east/face:ceiling/powered:true,patch0=0:archwood_planks,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_button,state=facing:east/face:ceiling/powered:false,patch0=0:archwood_planks,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_stairs,state=facing:north/half:top/shape:straight,patch0=0:archwood_planks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_stairs,state=facing:north/half:top/shape:inner_left,patch0=0:archwood_planks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_stairs,state=facing:north/half:top/shape:inner_right,patch0=0:archwood_planks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_stairs,state=facing:north/half:top/shape:outer_left,patch0=0:archwood_planks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_stairs,state=facing:north/half:top/shape:outer_right,patch0=0:archwood_planks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_stairs,state=facing:north/half:bottom/shape:straight,patch0=0:archwood_planks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_stairs,state=facing:north/half:bottom/shape:inner_left,patch0=0:archwood_planks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_stairs,state=facing:north/half:bottom/shape:inner_right,patch0=0:archwood_planks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_stairs,state=facing:north/half:bottom/shape:outer_left,patch0=0:archwood_planks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_stairs,state=facing:north/half:bottom/shape:outer_right,patch0=0:archwood_planks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_stairs,state=facing:south/half:top/shape:straight,patch0=0:archwood_planks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_stairs,state=facing:south/half:top/shape:inner_left,patch0=0:archwood_planks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_stairs,state=facing:south/half:top/shape:inner_right,patch0=0:archwood_planks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_stairs,state=facing:south/half:top/shape:outer_left,patch0=0:archwood_planks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_stairs,state=facing:south/half:top/shape:outer_right,patch0=0:archwood_planks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_stairs,state=facing:south/half:bottom/shape:straight,patch0=0:archwood_planks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_stairs,state=facing:south/half:bottom/shape:inner_left,patch0=0:archwood_planks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_stairs,state=facing:south/half:bottom/shape:inner_right,patch0=0:archwood_planks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_stairs,state=facing:south/half:bottom/shape:outer_left,patch0=0:archwood_planks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_stairs,state=facing:south/half:bottom/shape:outer_right,patch0=0:archwood_planks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_stairs,state=facing:west/half:top/shape:straight,patch0=0:archwood_planks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_stairs,state=facing:west/half:top/shape:inner_left,patch0=0:archwood_planks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_stairs,state=facing:west/half:top/shape:inner_right,patch0=0:archwood_planks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_stairs,state=facing:west/half:top/shape:outer_left,patch0=0:archwood_planks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_stairs,state=facing:west/half:top/shape:outer_right,patch0=0:archwood_planks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_stairs,state=facing:west/half:bottom/shape:straight,patch0=0:archwood_planks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_stairs,state=facing:west/half:bottom/shape:inner_left,patch0=0:archwood_planks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_stairs,state=facing:west/half:bottom/shape:inner_right,patch0=0:archwood_planks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_stairs,state=facing:west/half:bottom/shape:outer_left,patch0=0:archwood_planks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_stairs,state=facing:west/half:bottom/shape:outer_right,patch0=0:archwood_planks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_stairs,state=facing:east/half:top/shape:straight,patch0=0:archwood_planks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_stairs,state=facing:east/half:top/shape:inner_left,patch0=0:archwood_planks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_stairs,state=facing:east/half:top/shape:inner_right,patch0=0:archwood_planks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_stairs,state=facing:east/half:top/shape:outer_left,patch0=0:archwood_planks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_stairs,state=facing:east/half:top/shape:outer_right,patch0=0:archwood_planks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_stairs,state=facing:east/half:bottom/shape:straight,patch0=0:archwood_planks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_stairs,state=facing:east/half:bottom/shape:inner_left,patch0=0:archwood_planks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_stairs,state=facing:east/half:bottom/shape:inner_right,patch0=0:archwood_planks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_stairs,state=facing:east/half:bottom/shape:outer_left,patch0=0:archwood_planks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_stairs,state=facing:east/half:bottom/shape:outer_right,patch0=0:archwood_planks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_slab,state=type:top,patch0=0:archwood_planks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_slab,state=type:bottom,patch0=0:archwood_planks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_slab,state=type:double,patch0=0:archwood_planks,patch1=0:archwood_planks,patch2=0:archwood_planks,patch3=0:archwood_planks,patch4=0:archwood_planks,patch5=0:archwood_planks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_fence_gate,state=facing:north/in_wall:true/open:true,patch0=0:archwood_planks,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_fence_gate,state=facing:north/in_wall:true/open:false,patch0=0:archwood_planks,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_fence_gate,state=facing:north/in_wall:false/open:true,patch0=0:archwood_planks,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_fence_gate,state=facing:north/in_wall:false/open:false,patch0=0:archwood_planks,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_fence_gate,state=facing:south/in_wall:true/open:true,patch0=0:archwood_planks,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_fence_gate,state=facing:south/in_wall:true/open:false,patch0=0:archwood_planks,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_fence_gate,state=facing:south/in_wall:false/open:true,patch0=0:archwood_planks,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_fence_gate,state=facing:south/in_wall:false/open:false,patch0=0:archwood_planks,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_fence_gate,state=facing:west/in_wall:true/open:true,patch0=0:archwood_planks,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_fence_gate,state=facing:west/in_wall:true/open:false,patch0=0:archwood_planks,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_fence_gate,state=facing:west/in_wall:false/open:true,patch0=0:archwood_planks,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_fence_gate,state=facing:west/in_wall:false/open:false,patch0=0:archwood_planks,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_fence_gate,state=facing:east/in_wall:true/open:true,patch0=0:archwood_planks,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_fence_gate,state=facing:east/in_wall:true/open:false,patch0=0:archwood_planks,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_fence_gate,state=facing:east/in_wall:false/open:true,patch0=0:archwood_planks,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_fence_gate,state=facing:east/in_wall:false/open:false,patch0=0:archwood_planks,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_fence,state=west:true/east:true/south:true/north:true,patch0=0:archwood_planks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_fence,state=west:false/east:true/south:true/north:true,patch0=0:archwood_planks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_fence,state=west:true/east:true/south:false/north:true,patch0=0:archwood_planks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_fence,state=west:false/east:true/south:false/north:true,patch0=0:archwood_planks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_fence,state=west:true/east:true/south:true/north:false,patch0=0:archwood_planks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_fence,state=west:false/east:true/south:true/north:false,patch0=0:archwood_planks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_fence,state=west:true/east:true/south:false/north:false,patch0=0:archwood_planks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_fence,state=west:false/east:true/south:false/north:false,patch0=0:archwood_planks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_fence,state=west:true/east:false/south:true/north:true,patch0=0:archwood_planks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_fence,state=west:false/east:false/south:true/north:true,patch0=0:archwood_planks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_fence,state=west:true/east:false/south:false/north:true,patch0=0:archwood_planks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_fence,state=west:false/east:false/south:false/north:true,patch0=0:archwood_planks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_fence,state=west:true/east:false/south:true/north:false,patch0=0:archwood_planks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_fence,state=west:false/east:false/south:true/north:false,patch0=0:archwood_planks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_fence,state=west:true/east:false/south:false/north:false,patch0=0:archwood_planks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_fence,state=west:false/east:false/south:false/north:false,patch0=0:archwood_planks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_door,state=facing:north/hinge:left/half:upper/open:true,patch0=0:archwood_door_bottom,patch1=0:archwood_door_top,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_door,state=facing:north/hinge:left/half:upper/open:false,patch0=0:archwood_door_bottom,patch1=0:archwood_door_top,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_door,state=facing:north/hinge:right/half:upper/open:true,patch0=0:archwood_door_bottom,patch1=0:archwood_door_top,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_door,state=facing:north/hinge:right/half:upper/open:false,patch0=0:archwood_door_bottom,patch1=0:archwood_door_top,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_door,state=facing:north/hinge:left/half:lower/open:true,patch0=0:archwood_door_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_door,state=facing:north/hinge:left/half:lower/open:false,patch0=0:archwood_door_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_door,state=facing:north/hinge:right/half:lower/open:true,patch0=0:archwood_door_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_door,state=facing:north/hinge:right/half:lower/open:false,patch0=0:archwood_door_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_door,state=facing:south/hinge:left/half:upper/open:true,patch0=0:archwood_door_bottom,patch1=0:archwood_door_top,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_door,state=facing:south/hinge:left/half:upper/open:false,patch0=0:archwood_door_bottom,patch1=0:archwood_door_top,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_door,state=facing:south/hinge:right/half:upper/open:true,patch0=0:archwood_door_bottom,patch1=0:archwood_door_top,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_door,state=facing:south/hinge:right/half:upper/open:false,patch0=0:archwood_door_bottom,patch1=0:archwood_door_top,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_door,state=facing:south/hinge:left/half:lower/open:true,patch0=0:archwood_door_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_door,state=facing:south/hinge:left/half:lower/open:false,patch0=0:archwood_door_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_door,state=facing:south/hinge:right/half:lower/open:true,patch0=0:archwood_door_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_door,state=facing:south/hinge:right/half:lower/open:false,patch0=0:archwood_door_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_door,state=facing:west/hinge:left/half:upper/open:true,patch0=0:archwood_door_bottom,patch1=0:archwood_door_top,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_door,state=facing:west/hinge:left/half:upper/open:false,patch0=0:archwood_door_bottom,patch1=0:archwood_door_top,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_door,state=facing:west/hinge:right/half:upper/open:true,patch0=0:archwood_door_bottom,patch1=0:archwood_door_top,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_door,state=facing:west/hinge:right/half:upper/open:false,patch0=0:archwood_door_bottom,patch1=0:archwood_door_top,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_door,state=facing:west/hinge:left/half:lower/open:true,patch0=0:archwood_door_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_door,state=facing:west/hinge:left/half:lower/open:false,patch0=0:archwood_door_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_door,state=facing:west/hinge:right/half:lower/open:true,patch0=0:archwood_door_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_door,state=facing:west/hinge:right/half:lower/open:false,patch0=0:archwood_door_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_door,state=facing:east/hinge:left/half:upper/open:true,patch0=0:archwood_door_bottom,patch1=0:archwood_door_top,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_door,state=facing:east/hinge:left/half:upper/open:false,patch0=0:archwood_door_bottom,patch1=0:archwood_door_top,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_door,state=facing:east/hinge:right/half:upper/open:true,patch0=0:archwood_door_bottom,patch1=0:archwood_door_top,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_door,state=facing:east/hinge:right/half:upper/open:false,patch0=0:archwood_door_bottom,patch1=0:archwood_door_top,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_door,state=facing:east/hinge:left/half:lower/open:true,patch0=0:archwood_door_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_door,state=facing:east/hinge:left/half:lower/open:false,patch0=0:archwood_door_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_door,state=facing:east/hinge:right/half:lower/open:true,patch0=0:archwood_door_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_door,state=facing:east/hinge:right/half:lower/open:false,patch0=0:archwood_door_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_pressure_plate,state=powered:true,patch0=0:archwood_planks,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_pressure_plate,state=powered:false,patch0=0:archwood_planks,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_trapdoor,state=facing:north/half:top/open:true,patch0=0:archwood_trapdoor,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_trapdoor,state=facing:north/half:top/open:false,patch0=0:archwood_trapdoor,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_trapdoor,state=facing:north/half:bottom/open:true,patch0=0:archwood_trapdoor,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_trapdoor,state=facing:north/half:bottom/open:false,patch0=0:archwood_trapdoor,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_trapdoor,state=facing:south/half:top/open:true,patch0=0:archwood_trapdoor,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_trapdoor,state=facing:south/half:top/open:false,patch0=0:archwood_trapdoor,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_trapdoor,state=facing:south/half:bottom/open:true,patch0=0:archwood_trapdoor,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_trapdoor,state=facing:south/half:bottom/open:false,patch0=0:archwood_trapdoor,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_trapdoor,state=facing:west/half:top/open:true,patch0=0:archwood_trapdoor,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_trapdoor,state=facing:west/half:top/open:false,patch0=0:archwood_trapdoor,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_trapdoor,state=facing:west/half:bottom/open:true,patch0=0:archwood_trapdoor,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_trapdoor,state=facing:west/half:bottom/open:false,patch0=0:archwood_trapdoor,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_trapdoor,state=facing:east/half:top/open:true,patch0=0:archwood_trapdoor,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_trapdoor,state=facing:east/half:top/open:false,patch0=0:archwood_trapdoor,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_trapdoor,state=facing:east/half:bottom/open:true,patch0=0:archwood_trapdoor,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%archwood_trapdoor,state=facing:east/half:bottom/open:false,patch0=0:archwood_trapdoor,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%stripped_blue_archwood_log,state=axis:x,patch0=0:stripped_archwood_log_top,patch1=0:stripped_blue_archwood_log,stdrot=true
|
|
||||||
block:id=%stripped_blue_archwood_log,state=axis:y,patch0=0:stripped_blue_archwood_log,patch1=0:stripped_archwood_log_top,patch2=0:stripped_blue_archwood_log,patch3=0:stripped_blue_archwood_log,patch4=0:stripped_archwood_log_top,patch5=0:stripped_blue_archwood_log,stdrot=true
|
|
||||||
block:id=%stripped_blue_archwood_log,state=axis:z,patch0=0:stripped_archwood_log_top,patch1=0:stripped_blue_archwood_log,stdrot=true
|
|
||||||
block:id=%stripped_blue_archwood_wood,state=axis:x,patch0=0:stripped_blue_archwood_log,stdrot=true
|
|
||||||
block:id=%stripped_blue_archwood_wood,state=axis:y,patch0=0:stripped_blue_archwood_log,patch1=0:stripped_blue_archwood_log,patch2=0:stripped_blue_archwood_log,patch3=0:stripped_blue_archwood_log,patch4=0:stripped_blue_archwood_log,patch5=0:stripped_blue_archwood_log,stdrot=true
|
|
||||||
block:id=%stripped_blue_archwood_wood,state=axis:z,patch0=0:stripped_blue_archwood_log,stdrot=true
|
|
||||||
block:id=%stripped_green_archwood_log,state=axis:x,patch0=0:stripped_archwood_log_top,patch1=0:stripped_green_archwood_log,stdrot=true
|
|
||||||
block:id=%stripped_green_archwood_log,state=axis:y,patch0=0:stripped_green_archwood_log,patch1=0:stripped_archwood_log_top,patch2=0:stripped_green_archwood_log,patch3=0:stripped_green_archwood_log,patch4=0:stripped_archwood_log_top,patch5=0:stripped_green_archwood_log,stdrot=true
|
|
||||||
block:id=%stripped_green_archwood_log,state=axis:z,patch0=0:stripped_archwood_log_top,patch1=0:stripped_green_archwood_log,stdrot=true
|
|
||||||
block:id=%stripped_green_archwood_wood,state=axis:x,patch0=0:stripped_green_archwood_log,stdrot=true
|
|
||||||
block:id=%stripped_green_archwood_wood,state=axis:y,patch0=0:stripped_green_archwood_log,patch1=0:stripped_green_archwood_log,patch2=0:stripped_green_archwood_log,patch3=0:stripped_green_archwood_log,patch4=0:stripped_green_archwood_log,patch5=0:stripped_green_archwood_log,stdrot=true
|
|
||||||
block:id=%stripped_green_archwood_wood,state=axis:z,patch0=0:stripped_green_archwood_log,stdrot=true
|
|
||||||
block:id=%stripped_red_archwood_log,state=axis:x,patch0=0:stripped_archwood_log_top,patch1=0:stripped_red_archwood_log,stdrot=true
|
|
||||||
block:id=%stripped_red_archwood_log,state=axis:y,patch0=0:stripped_red_archwood_log,patch1=0:stripped_archwood_log_top,patch2=0:stripped_red_archwood_log,patch3=0:stripped_red_archwood_log,patch4=0:stripped_archwood_log_top,patch5=0:stripped_red_archwood_log,stdrot=true
|
|
||||||
block:id=%stripped_red_archwood_log,state=axis:z,patch0=0:stripped_archwood_log_top,patch1=0:stripped_red_archwood_log,stdrot=true
|
|
||||||
block:id=%stripped_red_archwood_wood,state=axis:x,patch0=0:stripped_red_archwood_log,stdrot=true
|
|
||||||
block:id=%stripped_red_archwood_wood,state=axis:y,patch0=0:stripped_red_archwood_log,patch1=0:stripped_red_archwood_log,patch2=0:stripped_red_archwood_log,patch3=0:stripped_red_archwood_log,patch4=0:stripped_red_archwood_log,patch5=0:stripped_red_archwood_log,stdrot=true
|
|
||||||
block:id=%stripped_red_archwood_wood,state=axis:z,patch0=0:stripped_red_archwood_log,stdrot=true
|
|
||||||
block:id=%stripped_purple_archwood_log,state=axis:x,patch0=0:stripped_archwood_log_top,patch1=0:stripped_purple_archwood_log,stdrot=true
|
|
||||||
block:id=%stripped_purple_archwood_log,state=axis:y,patch0=0:stripped_purple_archwood_log,patch1=0:stripped_archwood_log_top,patch2=0:stripped_purple_archwood_log,patch3=0:stripped_purple_archwood_log,patch4=0:stripped_archwood_log_top,patch5=0:stripped_purple_archwood_log,stdrot=true
|
|
||||||
block:id=%stripped_purple_archwood_log,state=axis:z,patch0=0:stripped_archwood_log_top,patch1=0:stripped_purple_archwood_log,stdrot=true
|
|
||||||
block:id=%stripped_purple_archwood_wood,state=axis:x,patch0=0:stripped_purple_archwood_log,stdrot=true
|
|
||||||
block:id=%stripped_purple_archwood_wood,state=axis:y,patch0=0:stripped_purple_archwood_log,patch1=0:stripped_purple_archwood_log,patch2=0:stripped_purple_archwood_log,patch3=0:stripped_purple_archwood_log,patch4=0:stripped_purple_archwood_log,patch5=0:stripped_purple_archwood_log,stdrot=true
|
|
||||||
block:id=%stripped_purple_archwood_wood,state=axis:z,patch0=0:stripped_purple_archwood_log,stdrot=true
|
|
||||||
block:id=%source_gem_block,patch0=0:source_gem_block,patch1=0:source_gem_block,patch2=0:source_gem_block,patch3=0:source_gem_block,patch4=0:source_gem_block,patch5=0:source_gem_block,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%potion_jar,state=fill:0,patch0=0:potion_jar,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%potion_jar,state=fill:1,patch0=0:potion_jar,patch1=1000:potion_still,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%potion_jar,state=fill:2,patch0=0:potion_jar,patch1=1000:potion_still,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%potion_jar,state=fill:3,patch0=0:potion_jar,patch1=1000:potion_still,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%potion_jar,state=fill:4,patch0=0:potion_jar,patch1=1000:potion_still,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%potion_jar,state=fill:5,patch0=0:potion_jar,patch1=1000:potion_still,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%potion_jar,state=fill:6,patch0=0:potion_jar,patch1=1000:potion_still,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%potion_jar,state=fill:7,patch0=0:potion_jar,patch1=1000:potion_still,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%potion_jar,state=fill:8,patch0=0:potion_jar,patch1=1000:potion_still,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%potion_jar,state=fill:9,patch0=0:potion_jar,patch1=1000:potion_still,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%potion_jar,state=fill:10,patch0=0:potion_jar,patch1=1000:potion_still,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%potion_jar,state=fill:11,patch0=0:potion_jar,patch1=1000:potion_still,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%sas_basket,patch0=0:sas_basket,patch1=0:sas_basket,patch2=0:sas_basket,patch3=0:sas_basket,patch4=0:sas_basket,patch5=0:sas_basket,stdrot=true
|
|
||||||
block:id=%sas_clover,patch0=0:sas_clover,patch1=0:sas_clover,patch2=0:sas_clover,patch3=0:sas_clover,patch4=0:sas_clover,patch5=0:sas_clover,stdrot=true
|
|
||||||
block:id=%sas_herring,patch0=0:sas_herring,patch1=0:sas_herring,patch2=0:sas_herring,patch3=0:sas_herring,patch4=0:sas_herring,patch5=0:sas_herring,stdrot=true
|
|
||||||
block:id=%sas_mosaic,patch0=0:sas_mosaic,patch1=0:sas_mosaic,patch2=0:sas_mosaic,patch3=0:sas_mosaic,patch4=0:sas_mosaic,patch5=0:sas_mosaic,stdrot=true
|
|
||||||
block:id=%sas_alternating,patch0=0:sas_alternating,patch1=0:sas_alternating,patch2=0:sas_alternating,patch3=0:sas_alternating,patch4=0:sas_alternating,patch5=0:sas_alternating,stdrot=true
|
|
||||||
block:id=%sas_ashlar,patch0=0:sas_ashlar,patch1=0:sas_ashlar,patch2=0:sas_ashlar,patch3=0:sas_ashlar,patch4=0:sas_ashlar,patch5=0:sas_ashlar,stdrot=true
|
|
||||||
block:id=%as_gold_alt,patch0=0:as_gold_alt,patch1=0:as_gold_alt,patch2=0:as_gold_alt,patch3=0:as_gold_alt,patch4=0:as_gold_alt,patch5=0:as_gold_alt,stdrot=true
|
|
||||||
block:id=%as_gold_ashlar,patch0=0:as_gold_ashlar,patch1=0:as_gold_ashlar,patch2=0:as_gold_ashlar,patch3=0:as_gold_ashlar,patch4=0:as_gold_ashlar,patch5=0:as_gold_ashlar,stdrot=true
|
|
||||||
block:id=%as_gold_basket,patch0=0:as_gold_basket,patch1=0:as_gold_basket,patch2=0:as_gold_basket,patch3=0:as_gold_basket,patch4=0:as_gold_basket,patch5=0:as_gold_basket,stdrot=true
|
|
||||||
block:id=%as_gold_clover,patch0=0:as_gold_clover,patch1=0:as_gold_clover,patch2=0:as_gold_clover,patch3=0:as_gold_clover,patch4=0:as_gold_clover,patch5=0:as_gold_clover,stdrot=true
|
|
||||||
block:id=%as_gold_herring,patch0=0:as_gold_herring,patch1=0:as_gold_herring,patch2=0:as_gold_herring,patch3=0:as_gold_herring,patch4=0:as_gold_herring,patch5=0:as_gold_herring,stdrot=true
|
|
||||||
block:id=%as_gold_mosaic,patch0=0:as_gold_mosaic,patch1=0:as_gold_mosaic,patch2=0:as_gold_mosaic,patch3=0:as_gold_mosaic,patch4=0:as_gold_mosaic,patch5=0:as_gold_mosaic,stdrot=true
|
|
||||||
block:id=%as_gold_slab,patch0=0:as_gold_slab,patch1=0:as_gold_slab,patch2=0:as_gold_slab,patch3=0:as_gold_slab,patch4=0:as_gold_slab,patch5=0:as_gold_slab,stdrot=true
|
|
||||||
block:id=%as_gold_stone,patch0=0:as_gold_stone,patch1=0:as_gold_stone,patch2=0:as_gold_stone,patch3=0:as_gold_stone,patch4=0:as_gold_stone,patch5=0:as_gold_stone,stdrot=true
|
|
||||||
block:id=%sconce,state=facing:north,patch0=0:sconce,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%sconce,state=facing:south,patch0=0:sconce,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%sconce,state=facing:west,patch0=0:sconce,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%sconce,state=facing:east,patch0=0:sconce,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%drygmy_stone,state=converted:true,patch0=0:drygmy_stone,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%drygmy_stone,state=converted:false,patch0=0:mossy_cobblestone,patch1=0:mossy_cobblestone,patch2=0:mossy_cobblestone,patch3=0:mossy_cobblestone,patch4=0:mossy_cobblestone,patch5=0:mossy_cobblestone,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%bookwyrm_lectern,state=converted:true/facing:north,patch0=0:bookwyrm_lectern,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%bookwyrm_lectern,state=converted:true/facing:south,patch0=0:bookwyrm_lectern,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%bookwyrm_lectern,state=converted:true/facing:west,patch0=0:bookwyrm_lectern,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%bookwyrm_lectern,state=converted:true/facing:east,patch0=0:bookwyrm_lectern,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%bookwyrm_lectern,state=converted:false/facing:north,patch0=0:lectern_base,patch1=0:oak_planks,patch2=0:lectern_sides,patch3=0:lectern_front,patch4=0:lectern_top,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%bookwyrm_lectern,state=converted:false/facing:south,patch0=0:lectern_base,patch1=0:oak_planks,patch2=0:lectern_sides,patch3=0:lectern_front,patch4=0:lectern_top,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%bookwyrm_lectern,state=converted:false/facing:west,patch0=0:lectern_base,patch1=0:oak_planks,patch2=0:lectern_sides,patch3=0:lectern_front,patch4=0:lectern_top,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%bookwyrm_lectern,state=converted:false/facing:east,patch0=0:lectern_base,patch1=0:oak_planks,patch2=0:lectern_sides,patch3=0:lectern_front,patch4=0:lectern_top,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spell_prism,state=facing:north,patch0=0:spell_prism,stdrot=true
|
|
||||||
block:id=%spell_prism,state=facing:east,patch0=0:spell_prism,stdrot=true
|
|
||||||
block:id=%spell_prism,state=facing:south,patch0=0:spell_prism,stdrot=true
|
|
||||||
block:id=%spell_prism,state=facing:west,patch0=0:spell_prism,stdrot=true
|
|
||||||
block:id=%spell_prism,state=facing:up,patch0=0:spell_prism,stdrot=true
|
|
||||||
block:id=%spell_prism,state=facing:down,patch0=0:spell_prism,stdrot=true
|
|
||||||
block:id=%red_sbed,patch0=0:red_sbed,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%blue_sbed,patch0=0:blue_sbed,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%green_sbed,patch0=0:green_sbed,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%orange_sbed,patch0=0:orange_sbed,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%yellow_sbed,patch0=0:yellow_sbed,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%purple_sbed,patch0=0:purple_sbed,transparency=TRANSPARENT,stdrot=true
|
|
File diff suppressed because one or more lines are too long
@ -1,587 +0,0 @@
|
|||||||
modname:beyond_earth
|
|
||||||
|
|
||||||
texture:id=launch_pad,filename=assets/beyond_earth/textures/blocks/launch_pad.png,xcount=1,ycount=1
|
|
||||||
texture:id=coal_torch,filename=assets/beyond_earth/textures/blocks/coal_torch.png,xcount=1,ycount=1
|
|
||||||
texture:id=coal_lantern,filename=assets/beyond_earth/textures/blocks/coal_lantern.png,xcount=1,ycount=1
|
|
||||||
texture:id=machineback,filename=assets/beyond_earth/textures/blocks/machineback.png,xcount=1,ycount=1
|
|
||||||
texture:id=machineside,filename=assets/beyond_earth/textures/blocks/machineside.png,xcount=1,ycount=1
|
|
||||||
texture:id=fuelmaker,filename=assets/beyond_earth/textures/blocks/fuelmaker.png,xcount=1,ycount=1
|
|
||||||
texture:id=fuelmaker_inactive,filename=assets/beyond_earth/textures/blocks/fuelmaker_inactive.png,xcount=1,ycount=1
|
|
||||||
texture:id=compressorfront,filename=assets/beyond_earth/textures/blocks/compressorfront.png,xcount=1,ycount=1
|
|
||||||
texture:id=compressorfront_inactive,filename=assets/beyond_earth/textures/blocks/compressorfront_inactive.png,xcount=1,ycount=1
|
|
||||||
texture:id=generator_top,filename=assets/beyond_earth/textures/blocks/generator_top.png,xcount=1,ycount=1
|
|
||||||
texture:id=generator_front,filename=assets/beyond_earth/textures/blocks/generator_front.png,xcount=1,ycount=1
|
|
||||||
texture:id=generator_front_inactive,filename=assets/beyond_earth/textures/blocks/generator_front_inactive.png,xcount=1,ycount=1
|
|
||||||
texture:id=oxygengeneratorfront,filename=assets/beyond_earth/textures/blocks/oxygengeneratorfront.png,xcount=1,ycount=1
|
|
||||||
texture:id=oxygengeneratorfront_inactive,filename=assets/beyond_earth/textures/blocks/oxygengeneratorfront_inactive.png,xcount=1,ycount=1
|
|
||||||
texture:id=block_solar_panel_top,filename=assets/beyond_earth/textures/blocks/block_solar_panel_top.png,xcount=1,ycount=1
|
|
||||||
texture:id=block_solar_panel_side,filename=assets/beyond_earth/textures/blocks/block_solar_panel_side.png,xcount=1,ycount=1
|
|
||||||
texture:id=workbench_nasa_top,filename=assets/beyond_earth/textures/blocks/workbench_nasa_top.png,xcount=1,ycount=1
|
|
||||||
texture:id=workbench_nasa_side,filename=assets/beyond_earth/textures/blocks/workbench_nasa_side.png,xcount=1,ycount=1
|
|
||||||
texture:id=workbench_nasa_top_2,filename=assets/beyond_earth/textures/blocks/workbench_nasa_top_2.png,xcount=1,ycount=1
|
|
||||||
texture:id=nasa_workbench_main,filename=assets/beyond_earth/textures/blocks/nasa_workbench_main.png,xcount=1,ycount=1
|
|
||||||
texture:id=workbench_nasa_holder,filename=assets/beyond_earth/textures/blocks/workbench_nasa_holder.png,xcount=1,ycount=1
|
|
||||||
texture:id=vent_back,filename=assets/beyond_earth/textures/blocks/vent_back.png,xcount=1,ycount=1
|
|
||||||
texture:id=oxygengeneratorfront_1_aktivated,filename=assets/beyond_earth/textures/blocks/oxygengeneratorfront_1_aktivated.png,xcount=1,ycount=1
|
|
||||||
texture:id=oxygengeneratorfront_1,filename=assets/beyond_earth/textures/blocks/oxygengeneratorfront_1.png,xcount=1,ycount=1
|
|
||||||
texture:id=water_pump,filename=assets/beyond_earth/textures/blocks/water_pump.png,xcount=1,ycount=1
|
|
||||||
texture:id=flag_white,filename=assets/beyond_earth/textures/blocks/flag_white.png,xcount=1,ycount=1
|
|
||||||
texture:id=flag_blue,filename=assets/beyond_earth/textures/blocks/flag_blue.png,xcount=1,ycount=1
|
|
||||||
texture:id=flag_brown,filename=assets/beyond_earth/textures/blocks/flag_brown.png,xcount=1,ycount=1
|
|
||||||
texture:id=flag_cyan,filename=assets/beyond_earth/textures/blocks/flag_cyan.png,xcount=1,ycount=1
|
|
||||||
texture:id=flag_gray,filename=assets/beyond_earth/textures/blocks/flag_gray.png,xcount=1,ycount=1
|
|
||||||
texture:id=flag_green,filename=assets/beyond_earth/textures/blocks/flag_green.png,xcount=1,ycount=1
|
|
||||||
texture:id=flag_light_blue,filename=assets/beyond_earth/textures/blocks/flag_light_blue.png,xcount=1,ycount=1
|
|
||||||
texture:id=flag_lime,filename=assets/beyond_earth/textures/blocks/flag_lime.png,xcount=1,ycount=1
|
|
||||||
texture:id=flag_magenta,filename=assets/beyond_earth/textures/blocks/flag_magenta.png,xcount=1,ycount=1
|
|
||||||
texture:id=flag_orange,filename=assets/beyond_earth/textures/blocks/flag_orange.png,xcount=1,ycount=1
|
|
||||||
texture:id=flag_pink,filename=assets/beyond_earth/textures/blocks/flag_pink.png,xcount=1,ycount=1
|
|
||||||
texture:id=flag_purple,filename=assets/beyond_earth/textures/blocks/flag_purple.png,xcount=1,ycount=1
|
|
||||||
texture:id=flag_red,filename=assets/beyond_earth/textures/blocks/flag_red.png,xcount=1,ycount=1
|
|
||||||
texture:id=flag_yellow,filename=assets/beyond_earth/textures/blocks/flag_yellow.png,xcount=1,ycount=1
|
|
||||||
texture:id=moon_ore_cheese,filename=assets/beyond_earth/textures/blocks/moon_ore_cheese.png,xcount=1,ycount=1
|
|
||||||
texture:id=moon_ore_desh,filename=assets/beyond_earth/textures/blocks/moon_ore_desh.png,xcount=1,ycount=1
|
|
||||||
texture:id=moon_ore_iron,filename=assets/beyond_earth/textures/blocks/moon_ore_iron.png,xcount=1,ycount=1
|
|
||||||
texture:id=moon_ice_shard_ore,filename=assets/beyond_earth/textures/blocks/moon_ice_shard_ore.png,xcount=1,ycount=1
|
|
||||||
texture:id=mars_ore_iron,filename=assets/beyond_earth/textures/blocks/mars_ore_iron.png,xcount=1,ycount=1
|
|
||||||
texture:id=mars_ore_diamond,filename=assets/beyond_earth/textures/blocks/mars_ore_diamond.png,xcount=1,ycount=1
|
|
||||||
texture:id=mars_ore_ostrum,filename=assets/beyond_earth/textures/blocks/mars_ore_ostrum.png,xcount=1,ycount=1
|
|
||||||
texture:id=mars_ice_shard_ore,filename=assets/beyond_earth/textures/blocks/mars_ice_shard_ore.png,xcount=1,ycount=1
|
|
||||||
texture:id=mercury_iron_ore,filename=assets/beyond_earth/textures/blocks/mercury_iron_ore.png,xcount=1,ycount=1
|
|
||||||
texture:id=venus_coal_ore,filename=assets/beyond_earth/textures/blocks/venus_coal_ore.png,xcount=1,ycount=1
|
|
||||||
texture:id=venus_gold_ore,filename=assets/beyond_earth/textures/blocks/venus_gold_ore.png,xcount=1,ycount=1
|
|
||||||
texture:id=venus_diamond_ore,filename=assets/beyond_earth/textures/blocks/venus_diamond_ore.png,xcount=1,ycount=1
|
|
||||||
texture:id=venus_calorite_ore,filename=assets/beyond_earth/textures/blocks/venus_calorite_ore.png,xcount=1,ycount=1
|
|
||||||
texture:id=glacio_ice_shard_ore,filename=assets/beyond_earth/textures/blocks/glacio_ice_shard_ore.png,xcount=1,ycount=1
|
|
||||||
texture:id=glacio_coal_ore,filename=assets/beyond_earth/textures/blocks/glacio_coal_ore.png,xcount=1,ycount=1
|
|
||||||
texture:id=glacio_copper_ore,filename=assets/beyond_earth/textures/blocks/glacio_copper_ore.png,xcount=1,ycount=1
|
|
||||||
texture:id=glacio_iron_ore,filename=assets/beyond_earth/textures/blocks/glacio_iron_ore.png,xcount=1,ycount=1
|
|
||||||
texture:id=glacio_lapis_ore,filename=assets/beyond_earth/textures/blocks/glacio_lapis_ore.png,xcount=1,ycount=1
|
|
||||||
texture:id=moon_sand,filename=assets/beyond_earth/textures/blocks/moon_sand.png,xcount=1,ycount=1
|
|
||||||
texture:id=mars_sand,filename=assets/beyond_earth/textures/blocks/mars_sand.png,xcount=1,ycount=1
|
|
||||||
texture:id=venus_sand,filename=assets/beyond_earth/textures/blocks/venus_sand.png,xcount=1,ycount=1
|
|
||||||
texture:id=steel_block,filename=assets/beyond_earth/textures/blocks/steel_block.png,xcount=1,ycount=1
|
|
||||||
texture:id=desh_block,filename=assets/beyond_earth/textures/blocks/desh_block.png,xcount=1,ycount=1
|
|
||||||
texture:id=ostrum_block,filename=assets/beyond_earth/textures/blocks/ostrum_block.png,xcount=1,ycount=1
|
|
||||||
texture:id=calorite_block,filename=assets/beyond_earth/textures/blocks/calorite_block.png,xcount=1,ycount=1
|
|
||||||
texture:id=raw_desh_block,filename=assets/beyond_earth/textures/blocks/raw_desh_block.png,xcount=1,ycount=1
|
|
||||||
texture:id=raw_ostrum_block,filename=assets/beyond_earth/textures/blocks/raw_ostrum_block.png,xcount=1,ycount=1
|
|
||||||
texture:id=raw_calorite_block,filename=assets/beyond_earth/textures/blocks/raw_calorite_block.png,xcount=1,ycount=1
|
|
||||||
texture:id=iron_plating_block,filename=assets/beyond_earth/textures/blocks/iron_plating_block.png,xcount=1,ycount=1
|
|
||||||
texture:id=rusted_iron_pillar_block_top,filename=assets/beyond_earth/textures/blocks/rusted_iron_pillar_block_top.png,xcount=1,ycount=1
|
|
||||||
texture:id=rusted_iron_pillar_block,filename=assets/beyond_earth/textures/blocks/rusted_iron_pillar_block.png,xcount=1,ycount=1
|
|
||||||
texture:id=rusted_iron_plating_block,filename=assets/beyond_earth/textures/blocks/rusted_iron_plating_block.png,xcount=1,ycount=1
|
|
||||||
texture:id=blue_iron_plating_block_top,filename=assets/beyond_earth/textures/blocks/blue_iron_plating_block_top.png,xcount=1,ycount=1
|
|
||||||
texture:id=blue_iron_plating_block,filename=assets/beyond_earth/textures/blocks/blue_iron_plating_block.png,xcount=1,ycount=1
|
|
||||||
texture:id=iron_mark_bottom,filename=assets/beyond_earth/textures/blocks/iron_mark_bottom.png,xcount=1,ycount=1
|
|
||||||
texture:id=iron_mark_side,filename=assets/beyond_earth/textures/blocks/iron_mark_side.png,xcount=1,ycount=1
|
|
||||||
texture:id=sky_stone,filename=assets/beyond_earth/textures/blocks/sky_stone.png,xcount=1,ycount=1
|
|
||||||
texture:id=infernal_spire_top,filename=assets/beyond_earth/textures/blocks/infernal_spire_top.png,xcount=1,ycount=1
|
|
||||||
texture:id=infernal_spire_side,filename=assets/beyond_earth/textures/blocks/infernal_spire_side.png,xcount=1,ycount=1
|
|
||||||
texture:id=moon_stone,filename=assets/beyond_earth/textures/blocks/moon_stone.png,xcount=1,ycount=1
|
|
||||||
texture:id=cracked_moon_stone_bricks,filename=assets/beyond_earth/textures/blocks/cracked_moon_stone_bricks.png,xcount=1,ycount=1
|
|
||||||
texture:id=moon_stone_bricks,filename=assets/beyond_earth/textures/blocks/moon_stone_bricks.png,xcount=1,ycount=1
|
|
||||||
texture:id=mars_stone,filename=assets/beyond_earth/textures/blocks/mars_stone.png,xcount=1,ycount=1
|
|
||||||
texture:id=cracked_mars_stone_bricks,filename=assets/beyond_earth/textures/blocks/cracked_mars_stone_bricks.png,xcount=1,ycount=1
|
|
||||||
texture:id=mars_stone_bricks,filename=assets/beyond_earth/textures/blocks/mars_stone_bricks.png,xcount=1,ycount=1
|
|
||||||
texture:id=mercury_stone,filename=assets/beyond_earth/textures/blocks/mercury_stone.png,xcount=1,ycount=1
|
|
||||||
texture:id=cracked_mercury_stone_bricks,filename=assets/beyond_earth/textures/blocks/cracked_mercury_stone_bricks.png,xcount=1,ycount=1
|
|
||||||
texture:id=mercury_stone_bricks,filename=assets/beyond_earth/textures/blocks/mercury_stone_bricks.png,xcount=1,ycount=1
|
|
||||||
texture:id=venus_stone,filename=assets/beyond_earth/textures/blocks/venus_stone.png,xcount=1,ycount=1
|
|
||||||
texture:id=cracked_venus_stone_bricks,filename=assets/beyond_earth/textures/blocks/cracked_venus_stone_bricks.png,xcount=1,ycount=1
|
|
||||||
texture:id=venus_stone_bricks,filename=assets/beyond_earth/textures/blocks/venus_stone_bricks.png,xcount=1,ycount=1
|
|
||||||
texture:id=venus_sandstone,filename=assets/beyond_earth/textures/blocks/venus_sandstone.png,xcount=1,ycount=1
|
|
||||||
texture:id=cracked_venus_sandstone_bricks,filename=assets/beyond_earth/textures/blocks/cracked_venus_sandstone_bricks.png,xcount=1,ycount=1
|
|
||||||
texture:id=venus_sandstone_bricks,filename=assets/beyond_earth/textures/blocks/venus_sandstone_bricks.png,xcount=1,ycount=1
|
|
||||||
texture:id=glacio_stone,filename=assets/beyond_earth/textures/blocks/glacio_stone.png,xcount=1,ycount=1
|
|
||||||
texture:id=permafrost,filename=assets/beyond_earth/textures/blocks/permafrost.png,xcount=1,ycount=1
|
|
||||||
texture:id=cracked_glacio_stone_bricks,filename=assets/beyond_earth/textures/blocks/cracked_glacio_stone_bricks.png,xcount=1,ycount=1
|
|
||||||
texture:id=glacio_stone_bricks,filename=assets/beyond_earth/textures/blocks/glacio_stone_bricks.png,xcount=1,ycount=1
|
|
||||||
block:id=%rocket_launch_pad,state=lit:true,patch0=0:launch_pad,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%rocket_launch_pad,state=lit:false,patch0=0:launch_pad,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%coal_torch,patch0=0:coal_torch,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%wall_coal_torch,state=facing:north,patch0=0:coal_torch,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%wall_coal_torch,state=facing:south,patch0=0:coal_torch,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%wall_coal_torch,state=facing:west,patch0=0:coal_torch,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%wall_coal_torch,state=facing:east,patch0=0:coal_torch,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%coal_lantern,state=hanging:true,patch0=0:coal_lantern,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%coal_lantern,state=hanging:false,patch0=0:coal_lantern,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%fuel_refinery,state=facing:north/lit:true,patch0=0:machineside,patch1=0:machineback,patch2=0:fuelmaker,patch3=0:machineside,patch4=0:machineback,patch5=0:machineside,stdrot=true
|
|
||||||
block:id=%fuel_refinery,state=facing:north/lit:false,patch0=0:machineside,patch1=0:machineback,patch2=0:fuelmaker_inactive,patch3=0:machineside,patch4=0:machineback,patch5=0:machineside,stdrot=true
|
|
||||||
block:id=%fuel_refinery,state=facing:south/lit:true,patch0=0:machineback,patch1=0:machineside,patch2=0:fuelmaker,stdrot=true
|
|
||||||
block:id=%fuel_refinery,state=facing:south/lit:false,patch0=0:machineback,patch1=0:machineside,patch2=0:fuelmaker_inactive,stdrot=true
|
|
||||||
block:id=%fuel_refinery,state=facing:west/lit:true,patch0=0:machineback,patch1=0:machineside,patch2=0:fuelmaker,stdrot=true
|
|
||||||
block:id=%fuel_refinery,state=facing:west/lit:false,patch0=0:machineback,patch1=0:machineside,patch2=0:fuelmaker_inactive,stdrot=true
|
|
||||||
block:id=%fuel_refinery,state=facing:east/lit:true,patch0=0:machineback,patch1=0:machineside,patch2=0:fuelmaker,stdrot=true
|
|
||||||
block:id=%fuel_refinery,state=facing:east/lit:false,patch0=0:machineback,patch1=0:machineside,patch2=0:fuelmaker_inactive,stdrot=true
|
|
||||||
block:id=%compressor,state=facing:north/lit:true,patch0=0:machineside,patch1=0:machineback,patch2=0:compressorfront,patch3=0:machineside,patch4=0:machineback,patch5=0:machineside,stdrot=true
|
|
||||||
block:id=%compressor,state=facing:north/lit:false,patch0=0:machineside,patch1=0:machineback,patch2=0:compressorfront_inactive,patch3=0:machineside,patch4=0:machineback,patch5=0:machineside,stdrot=true
|
|
||||||
block:id=%compressor,state=facing:south/lit:true,patch0=0:machineback,patch1=0:machineside,patch2=0:compressorfront,stdrot=true
|
|
||||||
block:id=%compressor,state=facing:south/lit:false,patch0=0:machineback,patch1=0:machineside,patch2=0:compressorfront_inactive,stdrot=true
|
|
||||||
block:id=%compressor,state=facing:west/lit:true,patch0=0:machineback,patch1=0:machineside,patch2=0:compressorfront,stdrot=true
|
|
||||||
block:id=%compressor,state=facing:west/lit:false,patch0=0:machineback,patch1=0:machineside,patch2=0:compressorfront_inactive,stdrot=true
|
|
||||||
block:id=%compressor,state=facing:east/lit:true,patch0=0:machineback,patch1=0:machineside,patch2=0:compressorfront,stdrot=true
|
|
||||||
block:id=%compressor,state=facing:east/lit:false,patch0=0:machineback,patch1=0:machineside,patch2=0:compressorfront_inactive,stdrot=true
|
|
||||||
block:id=%coal_generator,state=facing:north/lit:true,patch0=0:machineside,patch1=0:generator_top,patch2=0:generator_front,patch3=0:machineside,patch4=0:generator_top,patch5=0:machineside,stdrot=true
|
|
||||||
block:id=%coal_generator,state=facing:north/lit:false,patch0=0:machineside,patch1=0:generator_top,patch2=0:generator_front_inactive,patch3=0:machineside,patch4=0:generator_top,patch5=0:machineside,stdrot=true
|
|
||||||
block:id=%coal_generator,state=facing:south/lit:true,patch0=0:generator_top,patch1=0:machineside,patch2=0:generator_front,stdrot=true
|
|
||||||
block:id=%coal_generator,state=facing:south/lit:false,patch0=0:generator_top,patch1=0:machineside,patch2=0:generator_front_inactive,stdrot=true
|
|
||||||
block:id=%coal_generator,state=facing:west/lit:true,patch0=0:generator_top,patch1=0:machineside,patch2=0:generator_front,stdrot=true
|
|
||||||
block:id=%coal_generator,state=facing:west/lit:false,patch0=0:generator_top,patch1=0:machineside,patch2=0:generator_front_inactive,stdrot=true
|
|
||||||
block:id=%coal_generator,state=facing:east/lit:true,patch0=0:generator_top,patch1=0:machineside,patch2=0:generator_front,stdrot=true
|
|
||||||
block:id=%coal_generator,state=facing:east/lit:false,patch0=0:generator_top,patch1=0:machineside,patch2=0:generator_front_inactive,stdrot=true
|
|
||||||
block:id=%oxygen_loader,state=facing:north/lit:true,patch0=0:machineside,patch1=0:machineback,patch2=0:oxygengeneratorfront,patch3=0:machineside,patch4=0:machineback,patch5=0:machineside,stdrot=true
|
|
||||||
block:id=%oxygen_loader,state=facing:north/lit:false,patch0=0:machineside,patch1=0:machineback,patch2=0:oxygengeneratorfront_inactive,patch3=0:machineside,patch4=0:machineback,patch5=0:machineside,stdrot=true
|
|
||||||
block:id=%oxygen_loader,state=facing:south/lit:true,patch0=0:machineback,patch1=0:machineside,patch2=0:oxygengeneratorfront,stdrot=true
|
|
||||||
block:id=%oxygen_loader,state=facing:south/lit:false,patch0=0:machineback,patch1=0:machineside,patch2=0:oxygengeneratorfront_inactive,stdrot=true
|
|
||||||
block:id=%oxygen_loader,state=facing:west/lit:true,patch0=0:machineback,patch1=0:machineside,patch2=0:oxygengeneratorfront,stdrot=true
|
|
||||||
block:id=%oxygen_loader,state=facing:west/lit:false,patch0=0:machineback,patch1=0:machineside,patch2=0:oxygengeneratorfront_inactive,stdrot=true
|
|
||||||
block:id=%oxygen_loader,state=facing:east/lit:true,patch0=0:machineback,patch1=0:machineside,patch2=0:oxygengeneratorfront,stdrot=true
|
|
||||||
block:id=%oxygen_loader,state=facing:east/lit:false,patch0=0:machineback,patch1=0:machineside,patch2=0:oxygengeneratorfront_inactive,stdrot=true
|
|
||||||
block:id=%solar_panel,patch0=0:block_solar_panel_side,patch1=0:machineback,patch2=0:block_solar_panel_side,patch3=0:block_solar_panel_side,patch4=0:block_solar_panel_top,patch5=0:block_solar_panel_side,stdrot=true
|
|
||||||
block:id=%nasa_workbench,state=facing:north,patch0=0:workbench_nasa_top,patch1=0:workbench_nasa_side,patch2=0:workbench_nasa_top_2,patch3=0:nasa_workbench_main,patch4=0:workbench_nasa_holder,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%nasa_workbench,state=facing:south,patch0=0:workbench_nasa_top,patch1=0:workbench_nasa_side,patch2=0:workbench_nasa_top_2,patch3=0:nasa_workbench_main,patch4=0:workbench_nasa_holder,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%nasa_workbench,state=facing:west,patch0=0:workbench_nasa_top,patch1=0:workbench_nasa_side,patch2=0:workbench_nasa_top_2,patch3=0:nasa_workbench_main,patch4=0:workbench_nasa_holder,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%nasa_workbench,state=facing:east,patch0=0:workbench_nasa_top,patch1=0:workbench_nasa_side,patch2=0:workbench_nasa_top_2,patch3=0:nasa_workbench_main,patch4=0:workbench_nasa_holder,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oxygen_bubble_distributor,state=facing:north/lit:true,patch0=0:machineside,patch1=0:machineback,patch2=0:oxygengeneratorfront_1_aktivated,patch3=0:machineside,patch4=0:vent_back,patch5=0:machineside,stdrot=true
|
|
||||||
block:id=%oxygen_bubble_distributor,state=facing:north/lit:false,patch0=0:machineside,patch1=0:machineback,patch2=0:oxygengeneratorfront_1,patch3=0:machineside,patch4=0:vent_back,patch5=0:machineside,stdrot=true
|
|
||||||
block:id=%oxygen_bubble_distributor,state=facing:south/lit:true,patch0=0:vent_back,patch1=0:machineside,patch2=0:machineback,patch3=0:oxygengeneratorfront_1_aktivated,stdrot=true
|
|
||||||
block:id=%oxygen_bubble_distributor,state=facing:south/lit:false,patch0=0:vent_back,patch1=0:machineside,patch2=0:machineback,patch3=0:oxygengeneratorfront_1,stdrot=true
|
|
||||||
block:id=%oxygen_bubble_distributor,state=facing:west/lit:true,patch0=0:vent_back,patch1=0:machineside,patch2=0:machineback,patch3=0:oxygengeneratorfront_1_aktivated,stdrot=true
|
|
||||||
block:id=%oxygen_bubble_distributor,state=facing:west/lit:false,patch0=0:vent_back,patch1=0:machineside,patch2=0:machineback,patch3=0:oxygengeneratorfront_1,stdrot=true
|
|
||||||
block:id=%oxygen_bubble_distributor,state=facing:east/lit:true,patch0=0:vent_back,patch1=0:machineside,patch2=0:machineback,patch3=0:oxygengeneratorfront_1_aktivated,stdrot=true
|
|
||||||
block:id=%oxygen_bubble_distributor,state=facing:east/lit:false,patch0=0:vent_back,patch1=0:machineside,patch2=0:machineback,patch3=0:oxygengeneratorfront_1,stdrot=true
|
|
||||||
block:id=%water_pump,state=facing:north,patch0=0:water_pump,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%water_pump,state=facing:south,patch0=0:water_pump,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%water_pump,state=facing:west,patch0=0:water_pump,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%water_pump,state=facing:east,patch0=0:water_pump,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag,state=facing:north/half:upper,patch0=0:flag_white,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag,state=facing:north/half:lower,patch0=0:flag_white,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag,state=facing:south/half:upper,patch0=0:flag_white,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag,state=facing:south/half:lower,patch0=0:flag_white,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag,state=facing:west/half:upper,patch0=0:flag_white,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag,state=facing:west/half:lower,patch0=0:flag_white,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag,state=facing:east/half:upper,patch0=0:flag_white,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag,state=facing:east/half:lower,patch0=0:flag_white,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_blue,state=facing:north/half:upper,patch0=0:flag_blue,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_blue,state=facing:north/half:lower,patch0=0:flag_blue,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_blue,state=facing:south/half:upper,patch0=0:flag_blue,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_blue,state=facing:south/half:lower,patch0=0:flag_blue,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_blue,state=facing:west/half:upper,patch0=0:flag_blue,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_blue,state=facing:west/half:lower,patch0=0:flag_blue,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_blue,state=facing:east/half:upper,patch0=0:flag_blue,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_blue,state=facing:east/half:lower,patch0=0:flag_blue,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_brown,state=facing:north/half:upper,patch0=0:flag_brown,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_brown,state=facing:north/half:lower,patch0=0:flag_brown,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_brown,state=facing:south/half:upper,patch0=0:flag_brown,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_brown,state=facing:south/half:lower,patch0=0:flag_brown,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_brown,state=facing:west/half:upper,patch0=0:flag_brown,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_brown,state=facing:west/half:lower,patch0=0:flag_brown,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_brown,state=facing:east/half:upper,patch0=0:flag_brown,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_brown,state=facing:east/half:lower,patch0=0:flag_brown,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_cyan,state=facing:north/half:upper,patch0=0:flag_cyan,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_cyan,state=facing:north/half:lower,patch0=0:flag_cyan,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_cyan,state=facing:south/half:upper,patch0=0:flag_cyan,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_cyan,state=facing:south/half:lower,patch0=0:flag_cyan,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_cyan,state=facing:west/half:upper,patch0=0:flag_cyan,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_cyan,state=facing:west/half:lower,patch0=0:flag_cyan,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_cyan,state=facing:east/half:upper,patch0=0:flag_cyan,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_cyan,state=facing:east/half:lower,patch0=0:flag_cyan,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_gray,state=facing:north/half:upper,patch0=0:flag_gray,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_gray,state=facing:north/half:lower,patch0=0:flag_gray,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_gray,state=facing:south/half:upper,patch0=0:flag_gray,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_gray,state=facing:south/half:lower,patch0=0:flag_gray,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_gray,state=facing:west/half:upper,patch0=0:flag_gray,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_gray,state=facing:west/half:lower,patch0=0:flag_gray,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_gray,state=facing:east/half:upper,patch0=0:flag_gray,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_gray,state=facing:east/half:lower,patch0=0:flag_gray,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_green,state=facing:north/half:upper,patch0=0:flag_green,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_green,state=facing:north/half:lower,patch0=0:flag_green,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_green,state=facing:south/half:upper,patch0=0:flag_green,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_green,state=facing:south/half:lower,patch0=0:flag_green,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_green,state=facing:west/half:upper,patch0=0:flag_green,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_green,state=facing:west/half:lower,patch0=0:flag_green,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_green,state=facing:east/half:upper,patch0=0:flag_green,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_green,state=facing:east/half:lower,patch0=0:flag_green,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_light_blue,state=facing:north/half:upper,patch0=0:flag_light_blue,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_light_blue,state=facing:north/half:lower,patch0=0:flag_light_blue,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_light_blue,state=facing:south/half:upper,patch0=0:flag_light_blue,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_light_blue,state=facing:south/half:lower,patch0=0:flag_light_blue,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_light_blue,state=facing:west/half:upper,patch0=0:flag_light_blue,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_light_blue,state=facing:west/half:lower,patch0=0:flag_light_blue,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_light_blue,state=facing:east/half:upper,patch0=0:flag_light_blue,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_light_blue,state=facing:east/half:lower,patch0=0:flag_light_blue,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_lime,state=facing:north/half:upper,patch0=0:flag_lime,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_lime,state=facing:north/half:lower,patch0=0:flag_lime,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_lime,state=facing:south/half:upper,patch0=0:flag_lime,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_lime,state=facing:south/half:lower,patch0=0:flag_lime,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_lime,state=facing:west/half:upper,patch0=0:flag_lime,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_lime,state=facing:west/half:lower,patch0=0:flag_lime,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_lime,state=facing:east/half:upper,patch0=0:flag_lime,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_lime,state=facing:east/half:lower,patch0=0:flag_lime,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_magenta,state=facing:north/half:upper,patch0=0:flag_magenta,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_magenta,state=facing:north/half:lower,patch0=0:flag_magenta,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_magenta,state=facing:south/half:upper,patch0=0:flag_magenta,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_magenta,state=facing:south/half:lower,patch0=0:flag_magenta,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_magenta,state=facing:west/half:upper,patch0=0:flag_magenta,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_magenta,state=facing:west/half:lower,patch0=0:flag_magenta,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_magenta,state=facing:east/half:upper,patch0=0:flag_magenta,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_magenta,state=facing:east/half:lower,patch0=0:flag_magenta,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_orange,state=facing:north/half:upper,patch0=0:flag_orange,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_orange,state=facing:north/half:lower,patch0=0:flag_orange,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_orange,state=facing:south/half:upper,patch0=0:flag_orange,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_orange,state=facing:south/half:lower,patch0=0:flag_orange,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_orange,state=facing:west/half:upper,patch0=0:flag_orange,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_orange,state=facing:west/half:lower,patch0=0:flag_orange,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_orange,state=facing:east/half:upper,patch0=0:flag_orange,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_orange,state=facing:east/half:lower,patch0=0:flag_orange,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_pink,state=facing:north/half:upper,patch0=0:flag_pink,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_pink,state=facing:north/half:lower,patch0=0:flag_pink,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_pink,state=facing:south/half:upper,patch0=0:flag_pink,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_pink,state=facing:south/half:lower,patch0=0:flag_pink,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_pink,state=facing:west/half:upper,patch0=0:flag_pink,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_pink,state=facing:west/half:lower,patch0=0:flag_pink,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_pink,state=facing:east/half:upper,patch0=0:flag_pink,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_pink,state=facing:east/half:lower,patch0=0:flag_pink,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_purple,state=facing:north/half:upper,patch0=0:flag_purple,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_purple,state=facing:north/half:lower,patch0=0:flag_purple,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_purple,state=facing:south/half:upper,patch0=0:flag_purple,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_purple,state=facing:south/half:lower,patch0=0:flag_purple,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_purple,state=facing:west/half:upper,patch0=0:flag_purple,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_purple,state=facing:west/half:lower,patch0=0:flag_purple,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_purple,state=facing:east/half:upper,patch0=0:flag_purple,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_purple,state=facing:east/half:lower,patch0=0:flag_purple,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_red,state=facing:north/half:upper,patch0=0:flag_red,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_red,state=facing:north/half:lower,patch0=0:flag_red,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_red,state=facing:south/half:upper,patch0=0:flag_red,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_red,state=facing:south/half:lower,patch0=0:flag_red,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_red,state=facing:west/half:upper,patch0=0:flag_red,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_red,state=facing:west/half:lower,patch0=0:flag_red,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_red,state=facing:east/half:upper,patch0=0:flag_red,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_red,state=facing:east/half:lower,patch0=0:flag_red,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_yellow,state=facing:north/half:upper,patch0=0:flag_yellow,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_yellow,state=facing:north/half:lower,patch0=0:flag_yellow,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_yellow,state=facing:south/half:upper,patch0=0:flag_yellow,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_yellow,state=facing:south/half:lower,patch0=0:flag_yellow,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_yellow,state=facing:west/half:upper,patch0=0:flag_yellow,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_yellow,state=facing:west/half:lower,patch0=0:flag_yellow,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_yellow,state=facing:east/half:upper,patch0=0:flag_yellow,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flag_yellow,state=facing:east/half:lower,patch0=0:flag_yellow,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%moon_cheese_ore,patch0=0:moon_ore_cheese,patch1=0:moon_ore_cheese,patch2=0:moon_ore_cheese,patch3=0:moon_ore_cheese,patch4=0:moon_ore_cheese,patch5=0:moon_ore_cheese,stdrot=true
|
|
||||||
block:id=%moon_desh_ore,patch0=0:moon_ore_desh,patch1=0:moon_ore_desh,patch2=0:moon_ore_desh,patch3=0:moon_ore_desh,patch4=0:moon_ore_desh,patch5=0:moon_ore_desh,stdrot=true
|
|
||||||
block:id=%moon_iron_ore,patch0=0:moon_ore_iron,patch1=0:moon_ore_iron,patch2=0:moon_ore_iron,patch3=0:moon_ore_iron,patch4=0:moon_ore_iron,patch5=0:moon_ore_iron,stdrot=true
|
|
||||||
block:id=%moon_ice_shard_ore,patch0=0:moon_ice_shard_ore,patch1=0:moon_ice_shard_ore,patch2=0:moon_ice_shard_ore,patch3=0:moon_ice_shard_ore,patch4=0:moon_ice_shard_ore,patch5=0:moon_ice_shard_ore,stdrot=true
|
|
||||||
block:id=%mars_iron_ore,patch0=0:mars_ore_iron,patch1=0:mars_ore_iron,patch2=0:mars_ore_iron,patch3=0:mars_ore_iron,patch4=0:mars_ore_iron,patch5=0:mars_ore_iron,stdrot=true
|
|
||||||
block:id=%mars_diamond_ore,patch0=0:mars_ore_diamond,patch1=0:mars_ore_diamond,patch2=0:mars_ore_diamond,patch3=0:mars_ore_diamond,patch4=0:mars_ore_diamond,patch5=0:mars_ore_diamond,stdrot=true
|
|
||||||
block:id=%mars_ostrum_ore,patch0=0:mars_ore_ostrum,patch1=0:mars_ore_ostrum,patch2=0:mars_ore_ostrum,patch3=0:mars_ore_ostrum,patch4=0:mars_ore_ostrum,patch5=0:mars_ore_ostrum,stdrot=true
|
|
||||||
block:id=%mars_ice_shard_ore,patch0=0:mars_ice_shard_ore,patch1=0:mars_ice_shard_ore,patch2=0:mars_ice_shard_ore,patch3=0:mars_ice_shard_ore,patch4=0:mars_ice_shard_ore,patch5=0:mars_ice_shard_ore,stdrot=true
|
|
||||||
block:id=%mercury_iron_ore,patch0=0:mercury_iron_ore,patch1=0:mercury_iron_ore,patch2=0:mercury_iron_ore,patch3=0:mercury_iron_ore,patch4=0:mercury_iron_ore,patch5=0:mercury_iron_ore,stdrot=true
|
|
||||||
block:id=%venus_coal_ore,patch0=0:venus_coal_ore,patch1=0:venus_coal_ore,patch2=0:venus_coal_ore,patch3=0:venus_coal_ore,patch4=0:venus_coal_ore,patch5=0:venus_coal_ore,stdrot=true
|
|
||||||
block:id=%venus_gold_ore,patch0=0:venus_gold_ore,patch1=0:venus_gold_ore,patch2=0:venus_gold_ore,patch3=0:venus_gold_ore,patch4=0:venus_gold_ore,patch5=0:venus_gold_ore,stdrot=true
|
|
||||||
block:id=%venus_diamond_ore,patch0=0:venus_diamond_ore,patch1=0:venus_diamond_ore,patch2=0:venus_diamond_ore,patch3=0:venus_diamond_ore,patch4=0:venus_diamond_ore,patch5=0:venus_diamond_ore,stdrot=true
|
|
||||||
block:id=%venus_calorite_ore,patch0=0:venus_calorite_ore,patch1=0:venus_calorite_ore,patch2=0:venus_calorite_ore,patch3=0:venus_calorite_ore,patch4=0:venus_calorite_ore,patch5=0:venus_calorite_ore,stdrot=true
|
|
||||||
block:id=%glacio_ice_shard_ore,patch0=0:glacio_ice_shard_ore,patch1=0:glacio_ice_shard_ore,patch2=0:glacio_ice_shard_ore,patch3=0:glacio_ice_shard_ore,patch4=0:glacio_ice_shard_ore,patch5=0:glacio_ice_shard_ore,stdrot=true
|
|
||||||
block:id=%glacio_coal_ore,patch0=0:glacio_coal_ore,patch1=0:glacio_coal_ore,patch2=0:glacio_coal_ore,patch3=0:glacio_coal_ore,patch4=0:glacio_coal_ore,patch5=0:glacio_coal_ore,stdrot=true
|
|
||||||
block:id=%glacio_copper_ore,patch0=0:glacio_copper_ore,patch1=0:glacio_copper_ore,patch2=0:glacio_copper_ore,patch3=0:glacio_copper_ore,patch4=0:glacio_copper_ore,patch5=0:glacio_copper_ore,stdrot=true
|
|
||||||
block:id=%glacio_iron_ore,patch0=0:glacio_iron_ore,patch1=0:glacio_iron_ore,patch2=0:glacio_iron_ore,patch3=0:glacio_iron_ore,patch4=0:glacio_iron_ore,patch5=0:glacio_iron_ore,stdrot=true
|
|
||||||
block:id=%glacio_lapis_ore,patch0=0:glacio_lapis_ore,patch1=0:glacio_lapis_ore,patch2=0:glacio_lapis_ore,patch3=0:glacio_lapis_ore,patch4=0:glacio_lapis_ore,patch5=0:glacio_lapis_ore,stdrot=true
|
|
||||||
block:id=%moon_sand,patch0=0:moon_sand,patch1=0:moon_sand,patch2=0:moon_sand,patch3=0:moon_sand,patch4=0:moon_sand,patch5=0:moon_sand,stdrot=true
|
|
||||||
block:id=%mars_sand,patch0=0:mars_sand,patch1=0:mars_sand,patch2=0:mars_sand,patch3=0:mars_sand,patch4=0:mars_sand,patch5=0:mars_sand,stdrot=true
|
|
||||||
block:id=%venus_sand,patch0=0:venus_sand,patch1=0:venus_sand,patch2=0:venus_sand,patch3=0:venus_sand,patch4=0:venus_sand,patch5=0:venus_sand,stdrot=true
|
|
||||||
block:id=%steel_block,patch0=0:steel_block,patch1=0:steel_block,patch2=0:steel_block,patch3=0:steel_block,patch4=0:steel_block,patch5=0:steel_block,stdrot=true
|
|
||||||
block:id=%desh_block,patch0=0:desh_block,patch1=0:desh_block,patch2=0:desh_block,patch3=0:desh_block,patch4=0:desh_block,patch5=0:desh_block,stdrot=true
|
|
||||||
block:id=%ostrum_block,patch0=0:ostrum_block,patch1=0:ostrum_block,patch2=0:ostrum_block,patch3=0:ostrum_block,patch4=0:ostrum_block,patch5=0:ostrum_block,stdrot=true
|
|
||||||
block:id=%calorite_block,patch0=0:calorite_block,patch1=0:calorite_block,patch2=0:calorite_block,patch3=0:calorite_block,patch4=0:calorite_block,patch5=0:calorite_block,stdrot=true
|
|
||||||
block:id=%raw_desh_block,patch0=0:raw_desh_block,patch1=0:raw_desh_block,patch2=0:raw_desh_block,patch3=0:raw_desh_block,patch4=0:raw_desh_block,patch5=0:raw_desh_block,stdrot=true
|
|
||||||
block:id=%raw_ostrum_block,patch0=0:raw_ostrum_block,patch1=0:raw_ostrum_block,patch2=0:raw_ostrum_block,patch3=0:raw_ostrum_block,patch4=0:raw_ostrum_block,patch5=0:raw_ostrum_block,stdrot=true
|
|
||||||
block:id=%raw_calorite_block,patch0=0:raw_calorite_block,patch1=0:raw_calorite_block,patch2=0:raw_calorite_block,patch3=0:raw_calorite_block,patch4=0:raw_calorite_block,patch5=0:raw_calorite_block,stdrot=true
|
|
||||||
block:id=%iron_plating_block,patch0=0:iron_plating_block,patch1=0:iron_plating_block,patch2=0:iron_plating_block,patch3=0:iron_plating_block,patch4=0:iron_plating_block,patch5=0:iron_plating_block,stdrot=true
|
|
||||||
block:id=%rusted_iron_pillar_block,state=axis:x,patch0=0:rusted_iron_pillar_block_top,patch1=0:rusted_iron_pillar_block,stdrot=true
|
|
||||||
block:id=%rusted_iron_pillar_block,state=axis:y,patch0=0:rusted_iron_pillar_block,patch1=0:rusted_iron_pillar_block_top,patch2=0:rusted_iron_pillar_block,patch3=0:rusted_iron_pillar_block,patch4=0:rusted_iron_pillar_block_top,patch5=0:rusted_iron_pillar_block,stdrot=true
|
|
||||||
block:id=%rusted_iron_pillar_block,state=axis:z,patch0=0:rusted_iron_pillar_block_top,patch1=0:rusted_iron_pillar_block,stdrot=true
|
|
||||||
block:id=%rusted_iron_plating_block,patch0=0:rusted_iron_plating_block,patch1=0:rusted_iron_plating_block,patch2=0:rusted_iron_plating_block,patch3=0:rusted_iron_plating_block,patch4=0:rusted_iron_plating_block,patch5=0:rusted_iron_plating_block,stdrot=true
|
|
||||||
block:id=%blue_iron_plating_block,state=axis:x,patch0=0:blue_iron_plating_block_top,patch1=0:blue_iron_plating_block,stdrot=true
|
|
||||||
block:id=%blue_iron_plating_block,state=axis:y,patch0=0:blue_iron_plating_block,patch1=0:blue_iron_plating_block_top,patch2=0:blue_iron_plating_block,patch3=0:blue_iron_plating_block,patch4=0:blue_iron_plating_block_top,patch5=0:blue_iron_plating_block,stdrot=true
|
|
||||||
block:id=%blue_iron_plating_block,state=axis:z,patch0=0:blue_iron_plating_block_top,patch1=0:blue_iron_plating_block,stdrot=true
|
|
||||||
block:id=%iron_mark_block,state=axis:x,patch0=0:iron_mark_bottom,patch1=0:iron_mark_side,stdrot=true
|
|
||||||
block:id=%iron_mark_block,state=axis:y,patch0=0:iron_mark_side,patch1=0:iron_mark_bottom,patch2=0:iron_mark_side,patch3=0:iron_mark_side,patch4=0:iron_mark_bottom,patch5=0:iron_mark_side,stdrot=true
|
|
||||||
block:id=%iron_mark_block,state=axis:z,patch0=0:iron_mark_bottom,patch1=0:iron_mark_side,stdrot=true
|
|
||||||
block:id=%sky_stone,patch0=0:sky_stone,patch1=0:sky_stone,patch2=0:sky_stone,patch3=0:sky_stone,patch4=0:sky_stone,patch5=0:sky_stone,stdrot=true
|
|
||||||
block:id=%infernal_spire_block,patch0=0:infernal_spire_side,patch1=0:infernal_spire_top,patch2=0:infernal_spire_side,patch3=0:infernal_spire_side,patch4=0:infernal_spire_top,patch5=0:infernal_spire_side,stdrot=true
|
|
||||||
block:id=%moon_stone,patch0=0:moon_stone,patch1=0:moon_stone,patch2=0:moon_stone,patch3=0:moon_stone,patch4=0:moon_stone,patch5=0:moon_stone,stdrot=true
|
|
||||||
block:id=%cracked_moon_stone_bricks,patch0=0:cracked_moon_stone_bricks,patch1=0:cracked_moon_stone_bricks,patch2=0:cracked_moon_stone_bricks,patch3=0:cracked_moon_stone_bricks,patch4=0:cracked_moon_stone_bricks,patch5=0:cracked_moon_stone_bricks,stdrot=true
|
|
||||||
block:id=%moon_stone_bricks,patch0=0:moon_stone_bricks,patch1=0:moon_stone_bricks,patch2=0:moon_stone_bricks,patch3=0:moon_stone_bricks,patch4=0:moon_stone_bricks,patch5=0:moon_stone_bricks,stdrot=true
|
|
||||||
block:id=%moon_stone_brick_slab,state=type:top,patch0=0:moon_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%moon_stone_brick_slab,state=type:bottom,patch0=0:moon_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%moon_stone_brick_slab,state=type:double,patch0=0:moon_stone_bricks,patch1=0:moon_stone_bricks,patch2=0:moon_stone_bricks,patch3=0:moon_stone_bricks,patch4=0:moon_stone_bricks,patch5=0:moon_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%moon_stone_brick_stairs,state=facing:north/half:top/shape:straight,patch0=0:moon_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%moon_stone_brick_stairs,state=facing:north/half:top/shape:inner_left,patch0=0:moon_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%moon_stone_brick_stairs,state=facing:north/half:top/shape:inner_right,patch0=0:moon_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%moon_stone_brick_stairs,state=facing:north/half:top/shape:outer_left,patch0=0:moon_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%moon_stone_brick_stairs,state=facing:north/half:top/shape:outer_right,patch0=0:moon_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%moon_stone_brick_stairs,state=facing:north/half:bottom/shape:straight,patch0=0:moon_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%moon_stone_brick_stairs,state=facing:north/half:bottom/shape:inner_left,patch0=0:moon_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%moon_stone_brick_stairs,state=facing:north/half:bottom/shape:inner_right,patch0=0:moon_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%moon_stone_brick_stairs,state=facing:north/half:bottom/shape:outer_left,patch0=0:moon_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%moon_stone_brick_stairs,state=facing:north/half:bottom/shape:outer_right,patch0=0:moon_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%moon_stone_brick_stairs,state=facing:south/half:top/shape:straight,patch0=0:moon_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%moon_stone_brick_stairs,state=facing:south/half:top/shape:inner_left,patch0=0:moon_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%moon_stone_brick_stairs,state=facing:south/half:top/shape:inner_right,patch0=0:moon_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%moon_stone_brick_stairs,state=facing:south/half:top/shape:outer_left,patch0=0:moon_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%moon_stone_brick_stairs,state=facing:south/half:top/shape:outer_right,patch0=0:moon_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%moon_stone_brick_stairs,state=facing:south/half:bottom/shape:straight,patch0=0:moon_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%moon_stone_brick_stairs,state=facing:south/half:bottom/shape:inner_left,patch0=0:moon_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%moon_stone_brick_stairs,state=facing:south/half:bottom/shape:inner_right,patch0=0:moon_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%moon_stone_brick_stairs,state=facing:south/half:bottom/shape:outer_left,patch0=0:moon_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%moon_stone_brick_stairs,state=facing:south/half:bottom/shape:outer_right,patch0=0:moon_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%moon_stone_brick_stairs,state=facing:west/half:top/shape:straight,patch0=0:moon_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%moon_stone_brick_stairs,state=facing:west/half:top/shape:inner_left,patch0=0:moon_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%moon_stone_brick_stairs,state=facing:west/half:top/shape:inner_right,patch0=0:moon_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%moon_stone_brick_stairs,state=facing:west/half:top/shape:outer_left,patch0=0:moon_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%moon_stone_brick_stairs,state=facing:west/half:top/shape:outer_right,patch0=0:moon_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%moon_stone_brick_stairs,state=facing:west/half:bottom/shape:straight,patch0=0:moon_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%moon_stone_brick_stairs,state=facing:west/half:bottom/shape:inner_left,patch0=0:moon_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%moon_stone_brick_stairs,state=facing:west/half:bottom/shape:inner_right,patch0=0:moon_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%moon_stone_brick_stairs,state=facing:west/half:bottom/shape:outer_left,patch0=0:moon_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%moon_stone_brick_stairs,state=facing:west/half:bottom/shape:outer_right,patch0=0:moon_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%moon_stone_brick_stairs,state=facing:east/half:top/shape:straight,patch0=0:moon_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%moon_stone_brick_stairs,state=facing:east/half:top/shape:inner_left,patch0=0:moon_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%moon_stone_brick_stairs,state=facing:east/half:top/shape:inner_right,patch0=0:moon_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%moon_stone_brick_stairs,state=facing:east/half:top/shape:outer_left,patch0=0:moon_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%moon_stone_brick_stairs,state=facing:east/half:top/shape:outer_right,patch0=0:moon_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%moon_stone_brick_stairs,state=facing:east/half:bottom/shape:straight,patch0=0:moon_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%moon_stone_brick_stairs,state=facing:east/half:bottom/shape:inner_left,patch0=0:moon_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%moon_stone_brick_stairs,state=facing:east/half:bottom/shape:inner_right,patch0=0:moon_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%moon_stone_brick_stairs,state=facing:east/half:bottom/shape:outer_left,patch0=0:moon_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%moon_stone_brick_stairs,state=facing:east/half:bottom/shape:outer_right,patch0=0:moon_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mars_stone,patch0=0:mars_stone,patch1=0:mars_stone,patch2=0:mars_stone,patch3=0:mars_stone,patch4=0:mars_stone,patch5=0:mars_stone,stdrot=true
|
|
||||||
block:id=%cracked_mars_stone_bricks,patch0=0:cracked_mars_stone_bricks,patch1=0:cracked_mars_stone_bricks,patch2=0:cracked_mars_stone_bricks,patch3=0:cracked_mars_stone_bricks,patch4=0:cracked_mars_stone_bricks,patch5=0:cracked_mars_stone_bricks,stdrot=true
|
|
||||||
block:id=%mars_stone_bricks,patch0=0:mars_stone_bricks,patch1=0:mars_stone_bricks,patch2=0:mars_stone_bricks,patch3=0:mars_stone_bricks,patch4=0:mars_stone_bricks,patch5=0:mars_stone_bricks,stdrot=true
|
|
||||||
block:id=%mars_stone_brick_slab,state=type:top,patch0=0:mars_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mars_stone_brick_slab,state=type:bottom,patch0=0:mars_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mars_stone_brick_slab,state=type:double,patch0=0:mars_stone_bricks,patch1=0:mars_stone_bricks,patch2=0:mars_stone_bricks,patch3=0:mars_stone_bricks,patch4=0:mars_stone_bricks,patch5=0:mars_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mars_stone_brick_stairs,state=facing:north/half:top/shape:straight,patch0=0:mars_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mars_stone_brick_stairs,state=facing:north/half:top/shape:inner_left,patch0=0:mars_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mars_stone_brick_stairs,state=facing:north/half:top/shape:inner_right,patch0=0:mars_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mars_stone_brick_stairs,state=facing:north/half:top/shape:outer_left,patch0=0:mars_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mars_stone_brick_stairs,state=facing:north/half:top/shape:outer_right,patch0=0:mars_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mars_stone_brick_stairs,state=facing:north/half:bottom/shape:straight,patch0=0:mars_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mars_stone_brick_stairs,state=facing:north/half:bottom/shape:inner_left,patch0=0:mars_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mars_stone_brick_stairs,state=facing:north/half:bottom/shape:inner_right,patch0=0:mars_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mars_stone_brick_stairs,state=facing:north/half:bottom/shape:outer_left,patch0=0:mars_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mars_stone_brick_stairs,state=facing:north/half:bottom/shape:outer_right,patch0=0:mars_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mars_stone_brick_stairs,state=facing:south/half:top/shape:straight,patch0=0:mars_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mars_stone_brick_stairs,state=facing:south/half:top/shape:inner_left,patch0=0:mars_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mars_stone_brick_stairs,state=facing:south/half:top/shape:inner_right,patch0=0:mars_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mars_stone_brick_stairs,state=facing:south/half:top/shape:outer_left,patch0=0:mars_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mars_stone_brick_stairs,state=facing:south/half:top/shape:outer_right,patch0=0:mars_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mars_stone_brick_stairs,state=facing:south/half:bottom/shape:straight,patch0=0:mars_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mars_stone_brick_stairs,state=facing:south/half:bottom/shape:inner_left,patch0=0:mars_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mars_stone_brick_stairs,state=facing:south/half:bottom/shape:inner_right,patch0=0:mars_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mars_stone_brick_stairs,state=facing:south/half:bottom/shape:outer_left,patch0=0:mars_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mars_stone_brick_stairs,state=facing:south/half:bottom/shape:outer_right,patch0=0:mars_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mars_stone_brick_stairs,state=facing:west/half:top/shape:straight,patch0=0:mars_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mars_stone_brick_stairs,state=facing:west/half:top/shape:inner_left,patch0=0:mars_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mars_stone_brick_stairs,state=facing:west/half:top/shape:inner_right,patch0=0:mars_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mars_stone_brick_stairs,state=facing:west/half:top/shape:outer_left,patch0=0:mars_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mars_stone_brick_stairs,state=facing:west/half:top/shape:outer_right,patch0=0:mars_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mars_stone_brick_stairs,state=facing:west/half:bottom/shape:straight,patch0=0:mars_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mars_stone_brick_stairs,state=facing:west/half:bottom/shape:inner_left,patch0=0:mars_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mars_stone_brick_stairs,state=facing:west/half:bottom/shape:inner_right,patch0=0:mars_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mars_stone_brick_stairs,state=facing:west/half:bottom/shape:outer_left,patch0=0:mars_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mars_stone_brick_stairs,state=facing:west/half:bottom/shape:outer_right,patch0=0:mars_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mars_stone_brick_stairs,state=facing:east/half:top/shape:straight,patch0=0:mars_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mars_stone_brick_stairs,state=facing:east/half:top/shape:inner_left,patch0=0:mars_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mars_stone_brick_stairs,state=facing:east/half:top/shape:inner_right,patch0=0:mars_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mars_stone_brick_stairs,state=facing:east/half:top/shape:outer_left,patch0=0:mars_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mars_stone_brick_stairs,state=facing:east/half:top/shape:outer_right,patch0=0:mars_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mars_stone_brick_stairs,state=facing:east/half:bottom/shape:straight,patch0=0:mars_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mars_stone_brick_stairs,state=facing:east/half:bottom/shape:inner_left,patch0=0:mars_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mars_stone_brick_stairs,state=facing:east/half:bottom/shape:inner_right,patch0=0:mars_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mars_stone_brick_stairs,state=facing:east/half:bottom/shape:outer_left,patch0=0:mars_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mars_stone_brick_stairs,state=facing:east/half:bottom/shape:outer_right,patch0=0:mars_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mercury_stone,patch0=0:mercury_stone,patch1=0:mercury_stone,patch2=0:mercury_stone,patch3=0:mercury_stone,patch4=0:mercury_stone,patch5=0:mercury_stone,stdrot=true
|
|
||||||
block:id=%cracked_mercury_stone_bricks,patch0=0:cracked_mercury_stone_bricks,patch1=0:cracked_mercury_stone_bricks,patch2=0:cracked_mercury_stone_bricks,patch3=0:cracked_mercury_stone_bricks,patch4=0:cracked_mercury_stone_bricks,patch5=0:cracked_mercury_stone_bricks,stdrot=true
|
|
||||||
block:id=%mercury_stone_bricks,patch0=0:mercury_stone_bricks,patch1=0:mercury_stone_bricks,patch2=0:mercury_stone_bricks,patch3=0:mercury_stone_bricks,patch4=0:mercury_stone_bricks,patch5=0:mercury_stone_bricks,stdrot=true
|
|
||||||
block:id=%mercury_stone_brick_slab,state=type:top,patch0=0:mercury_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mercury_stone_brick_slab,state=type:bottom,patch0=0:mercury_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mercury_stone_brick_slab,state=type:double,patch0=0:mercury_stone_bricks,patch1=0:mercury_stone_bricks,patch2=0:mercury_stone_bricks,patch3=0:mercury_stone_bricks,patch4=0:mercury_stone_bricks,patch5=0:mercury_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mercury_stone_brick_stairs,state=facing:north/half:top/shape:straight,patch0=0:mercury_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mercury_stone_brick_stairs,state=facing:north/half:top/shape:inner_left,patch0=0:mercury_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mercury_stone_brick_stairs,state=facing:north/half:top/shape:inner_right,patch0=0:mercury_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mercury_stone_brick_stairs,state=facing:north/half:top/shape:outer_left,patch0=0:mercury_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mercury_stone_brick_stairs,state=facing:north/half:top/shape:outer_right,patch0=0:mercury_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mercury_stone_brick_stairs,state=facing:north/half:bottom/shape:straight,patch0=0:mercury_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mercury_stone_brick_stairs,state=facing:north/half:bottom/shape:inner_left,patch0=0:mercury_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mercury_stone_brick_stairs,state=facing:north/half:bottom/shape:inner_right,patch0=0:mercury_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mercury_stone_brick_stairs,state=facing:north/half:bottom/shape:outer_left,patch0=0:mercury_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mercury_stone_brick_stairs,state=facing:north/half:bottom/shape:outer_right,patch0=0:mercury_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mercury_stone_brick_stairs,state=facing:south/half:top/shape:straight,patch0=0:mercury_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mercury_stone_brick_stairs,state=facing:south/half:top/shape:inner_left,patch0=0:mercury_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mercury_stone_brick_stairs,state=facing:south/half:top/shape:inner_right,patch0=0:mercury_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mercury_stone_brick_stairs,state=facing:south/half:top/shape:outer_left,patch0=0:mercury_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mercury_stone_brick_stairs,state=facing:south/half:top/shape:outer_right,patch0=0:mercury_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mercury_stone_brick_stairs,state=facing:south/half:bottom/shape:straight,patch0=0:mercury_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mercury_stone_brick_stairs,state=facing:south/half:bottom/shape:inner_left,patch0=0:mercury_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mercury_stone_brick_stairs,state=facing:south/half:bottom/shape:inner_right,patch0=0:mercury_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mercury_stone_brick_stairs,state=facing:south/half:bottom/shape:outer_left,patch0=0:mercury_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mercury_stone_brick_stairs,state=facing:south/half:bottom/shape:outer_right,patch0=0:mercury_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mercury_stone_brick_stairs,state=facing:west/half:top/shape:straight,patch0=0:mercury_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mercury_stone_brick_stairs,state=facing:west/half:top/shape:inner_left,patch0=0:mercury_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mercury_stone_brick_stairs,state=facing:west/half:top/shape:inner_right,patch0=0:mercury_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mercury_stone_brick_stairs,state=facing:west/half:top/shape:outer_left,patch0=0:mercury_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mercury_stone_brick_stairs,state=facing:west/half:top/shape:outer_right,patch0=0:mercury_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mercury_stone_brick_stairs,state=facing:west/half:bottom/shape:straight,patch0=0:mercury_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mercury_stone_brick_stairs,state=facing:west/half:bottom/shape:inner_left,patch0=0:mercury_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mercury_stone_brick_stairs,state=facing:west/half:bottom/shape:inner_right,patch0=0:mercury_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mercury_stone_brick_stairs,state=facing:west/half:bottom/shape:outer_left,patch0=0:mercury_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mercury_stone_brick_stairs,state=facing:west/half:bottom/shape:outer_right,patch0=0:mercury_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mercury_stone_brick_stairs,state=facing:east/half:top/shape:straight,patch0=0:mercury_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mercury_stone_brick_stairs,state=facing:east/half:top/shape:inner_left,patch0=0:mercury_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mercury_stone_brick_stairs,state=facing:east/half:top/shape:inner_right,patch0=0:mercury_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mercury_stone_brick_stairs,state=facing:east/half:top/shape:outer_left,patch0=0:mercury_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mercury_stone_brick_stairs,state=facing:east/half:top/shape:outer_right,patch0=0:mercury_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mercury_stone_brick_stairs,state=facing:east/half:bottom/shape:straight,patch0=0:mercury_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mercury_stone_brick_stairs,state=facing:east/half:bottom/shape:inner_left,patch0=0:mercury_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mercury_stone_brick_stairs,state=facing:east/half:bottom/shape:inner_right,patch0=0:mercury_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mercury_stone_brick_stairs,state=facing:east/half:bottom/shape:outer_left,patch0=0:mercury_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mercury_stone_brick_stairs,state=facing:east/half:bottom/shape:outer_right,patch0=0:mercury_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_stone,patch0=0:venus_stone,patch1=0:venus_stone,patch2=0:venus_stone,patch3=0:venus_stone,patch4=0:venus_stone,patch5=0:venus_stone,stdrot=true
|
|
||||||
block:id=%cracked_venus_stone_bricks,patch0=0:cracked_venus_stone_bricks,patch1=0:cracked_venus_stone_bricks,patch2=0:cracked_venus_stone_bricks,patch3=0:cracked_venus_stone_bricks,patch4=0:cracked_venus_stone_bricks,patch5=0:cracked_venus_stone_bricks,stdrot=true
|
|
||||||
block:id=%venus_stone_bricks,patch0=0:venus_stone_bricks,patch1=0:venus_stone_bricks,patch2=0:venus_stone_bricks,patch3=0:venus_stone_bricks,patch4=0:venus_stone_bricks,patch5=0:venus_stone_bricks,stdrot=true
|
|
||||||
block:id=%venus_stone_brick_slab,state=type:top,patch0=0:venus_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_stone_brick_slab,state=type:bottom,patch0=0:venus_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_stone_brick_slab,state=type:double,patch0=0:venus_stone_bricks,patch1=0:venus_stone_bricks,patch2=0:venus_stone_bricks,patch3=0:venus_stone_bricks,patch4=0:venus_stone_bricks,patch5=0:venus_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_stone_brick_stairs,state=facing:north/half:top/shape:straight,patch0=0:venus_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_stone_brick_stairs,state=facing:north/half:top/shape:inner_left,patch0=0:venus_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_stone_brick_stairs,state=facing:north/half:top/shape:inner_right,patch0=0:venus_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_stone_brick_stairs,state=facing:north/half:top/shape:outer_left,patch0=0:venus_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_stone_brick_stairs,state=facing:north/half:top/shape:outer_right,patch0=0:venus_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_stone_brick_stairs,state=facing:north/half:bottom/shape:straight,patch0=0:venus_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_stone_brick_stairs,state=facing:north/half:bottom/shape:inner_left,patch0=0:venus_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_stone_brick_stairs,state=facing:north/half:bottom/shape:inner_right,patch0=0:venus_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_stone_brick_stairs,state=facing:north/half:bottom/shape:outer_left,patch0=0:venus_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_stone_brick_stairs,state=facing:north/half:bottom/shape:outer_right,patch0=0:venus_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_stone_brick_stairs,state=facing:south/half:top/shape:straight,patch0=0:venus_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_stone_brick_stairs,state=facing:south/half:top/shape:inner_left,patch0=0:venus_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_stone_brick_stairs,state=facing:south/half:top/shape:inner_right,patch0=0:venus_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_stone_brick_stairs,state=facing:south/half:top/shape:outer_left,patch0=0:venus_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_stone_brick_stairs,state=facing:south/half:top/shape:outer_right,patch0=0:venus_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_stone_brick_stairs,state=facing:south/half:bottom/shape:straight,patch0=0:venus_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_stone_brick_stairs,state=facing:south/half:bottom/shape:inner_left,patch0=0:venus_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_stone_brick_stairs,state=facing:south/half:bottom/shape:inner_right,patch0=0:venus_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_stone_brick_stairs,state=facing:south/half:bottom/shape:outer_left,patch0=0:venus_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_stone_brick_stairs,state=facing:south/half:bottom/shape:outer_right,patch0=0:venus_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_stone_brick_stairs,state=facing:west/half:top/shape:straight,patch0=0:venus_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_stone_brick_stairs,state=facing:west/half:top/shape:inner_left,patch0=0:venus_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_stone_brick_stairs,state=facing:west/half:top/shape:inner_right,patch0=0:venus_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_stone_brick_stairs,state=facing:west/half:top/shape:outer_left,patch0=0:venus_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_stone_brick_stairs,state=facing:west/half:top/shape:outer_right,patch0=0:venus_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_stone_brick_stairs,state=facing:west/half:bottom/shape:straight,patch0=0:venus_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_stone_brick_stairs,state=facing:west/half:bottom/shape:inner_left,patch0=0:venus_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_stone_brick_stairs,state=facing:west/half:bottom/shape:inner_right,patch0=0:venus_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_stone_brick_stairs,state=facing:west/half:bottom/shape:outer_left,patch0=0:venus_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_stone_brick_stairs,state=facing:west/half:bottom/shape:outer_right,patch0=0:venus_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_stone_brick_stairs,state=facing:east/half:top/shape:straight,patch0=0:venus_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_stone_brick_stairs,state=facing:east/half:top/shape:inner_left,patch0=0:venus_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_stone_brick_stairs,state=facing:east/half:top/shape:inner_right,patch0=0:venus_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_stone_brick_stairs,state=facing:east/half:top/shape:outer_left,patch0=0:venus_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_stone_brick_stairs,state=facing:east/half:top/shape:outer_right,patch0=0:venus_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_stone_brick_stairs,state=facing:east/half:bottom/shape:straight,patch0=0:venus_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_stone_brick_stairs,state=facing:east/half:bottom/shape:inner_left,patch0=0:venus_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_stone_brick_stairs,state=facing:east/half:bottom/shape:inner_right,patch0=0:venus_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_stone_brick_stairs,state=facing:east/half:bottom/shape:outer_left,patch0=0:venus_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_stone_brick_stairs,state=facing:east/half:bottom/shape:outer_right,patch0=0:venus_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_sandstone,patch0=0:venus_sandstone,patch1=0:venus_sandstone,patch2=0:venus_sandstone,patch3=0:venus_sandstone,patch4=0:venus_sandstone,patch5=0:venus_sandstone,stdrot=true
|
|
||||||
block:id=%cracked_venus_sandstone_bricks,patch0=0:cracked_venus_sandstone_bricks,patch1=0:cracked_venus_sandstone_bricks,patch2=0:cracked_venus_sandstone_bricks,patch3=0:cracked_venus_sandstone_bricks,patch4=0:cracked_venus_sandstone_bricks,patch5=0:cracked_venus_sandstone_bricks,stdrot=true
|
|
||||||
block:id=%venus_sandstone_bricks,patch0=0:venus_sandstone_bricks,patch1=0:venus_sandstone_bricks,patch2=0:venus_sandstone_bricks,patch3=0:venus_sandstone_bricks,patch4=0:venus_sandstone_bricks,patch5=0:venus_sandstone_bricks,stdrot=true
|
|
||||||
block:id=%venus_sandstone_brick_slab,state=type:top,patch0=0:venus_sandstone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_sandstone_brick_slab,state=type:bottom,patch0=0:venus_sandstone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_sandstone_brick_slab,state=type:double,patch0=0:venus_sandstone_bricks,patch1=0:venus_sandstone_bricks,patch2=0:venus_sandstone_bricks,patch3=0:venus_sandstone_bricks,patch4=0:venus_sandstone_bricks,patch5=0:venus_sandstone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_sandstone_brick_stairs,state=facing:north/half:top/shape:straight,patch0=0:venus_sandstone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_sandstone_brick_stairs,state=facing:north/half:top/shape:inner_left,patch0=0:venus_sandstone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_sandstone_brick_stairs,state=facing:north/half:top/shape:inner_right,patch0=0:venus_sandstone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_sandstone_brick_stairs,state=facing:north/half:top/shape:outer_left,patch0=0:venus_sandstone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_sandstone_brick_stairs,state=facing:north/half:top/shape:outer_right,patch0=0:venus_sandstone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_sandstone_brick_stairs,state=facing:north/half:bottom/shape:straight,patch0=0:venus_sandstone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_sandstone_brick_stairs,state=facing:north/half:bottom/shape:inner_left,patch0=0:venus_sandstone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_sandstone_brick_stairs,state=facing:north/half:bottom/shape:inner_right,patch0=0:venus_sandstone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_sandstone_brick_stairs,state=facing:north/half:bottom/shape:outer_left,patch0=0:venus_sandstone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_sandstone_brick_stairs,state=facing:north/half:bottom/shape:outer_right,patch0=0:venus_sandstone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_sandstone_brick_stairs,state=facing:south/half:top/shape:straight,patch0=0:venus_sandstone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_sandstone_brick_stairs,state=facing:south/half:top/shape:inner_left,patch0=0:venus_sandstone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_sandstone_brick_stairs,state=facing:south/half:top/shape:inner_right,patch0=0:venus_sandstone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_sandstone_brick_stairs,state=facing:south/half:top/shape:outer_left,patch0=0:venus_sandstone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_sandstone_brick_stairs,state=facing:south/half:top/shape:outer_right,patch0=0:venus_sandstone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_sandstone_brick_stairs,state=facing:south/half:bottom/shape:straight,patch0=0:venus_sandstone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_sandstone_brick_stairs,state=facing:south/half:bottom/shape:inner_left,patch0=0:venus_sandstone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_sandstone_brick_stairs,state=facing:south/half:bottom/shape:inner_right,patch0=0:venus_sandstone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_sandstone_brick_stairs,state=facing:south/half:bottom/shape:outer_left,patch0=0:venus_sandstone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_sandstone_brick_stairs,state=facing:south/half:bottom/shape:outer_right,patch0=0:venus_sandstone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_sandstone_brick_stairs,state=facing:west/half:top/shape:straight,patch0=0:venus_sandstone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_sandstone_brick_stairs,state=facing:west/half:top/shape:inner_left,patch0=0:venus_sandstone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_sandstone_brick_stairs,state=facing:west/half:top/shape:inner_right,patch0=0:venus_sandstone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_sandstone_brick_stairs,state=facing:west/half:top/shape:outer_left,patch0=0:venus_sandstone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_sandstone_brick_stairs,state=facing:west/half:top/shape:outer_right,patch0=0:venus_sandstone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_sandstone_brick_stairs,state=facing:west/half:bottom/shape:straight,patch0=0:venus_sandstone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_sandstone_brick_stairs,state=facing:west/half:bottom/shape:inner_left,patch0=0:venus_sandstone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_sandstone_brick_stairs,state=facing:west/half:bottom/shape:inner_right,patch0=0:venus_sandstone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_sandstone_brick_stairs,state=facing:west/half:bottom/shape:outer_left,patch0=0:venus_sandstone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_sandstone_brick_stairs,state=facing:west/half:bottom/shape:outer_right,patch0=0:venus_sandstone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_sandstone_brick_stairs,state=facing:east/half:top/shape:straight,patch0=0:venus_sandstone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_sandstone_brick_stairs,state=facing:east/half:top/shape:inner_left,patch0=0:venus_sandstone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_sandstone_brick_stairs,state=facing:east/half:top/shape:inner_right,patch0=0:venus_sandstone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_sandstone_brick_stairs,state=facing:east/half:top/shape:outer_left,patch0=0:venus_sandstone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_sandstone_brick_stairs,state=facing:east/half:top/shape:outer_right,patch0=0:venus_sandstone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_sandstone_brick_stairs,state=facing:east/half:bottom/shape:straight,patch0=0:venus_sandstone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_sandstone_brick_stairs,state=facing:east/half:bottom/shape:inner_left,patch0=0:venus_sandstone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_sandstone_brick_stairs,state=facing:east/half:bottom/shape:inner_right,patch0=0:venus_sandstone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_sandstone_brick_stairs,state=facing:east/half:bottom/shape:outer_left,patch0=0:venus_sandstone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%venus_sandstone_brick_stairs,state=facing:east/half:bottom/shape:outer_right,patch0=0:venus_sandstone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%glacio_stone,patch0=0:glacio_stone,patch1=0:glacio_stone,patch2=0:glacio_stone,patch3=0:glacio_stone,patch4=0:glacio_stone,patch5=0:glacio_stone,stdrot=true
|
|
||||||
block:id=%permafrost,patch0=0:permafrost,patch1=0:permafrost,patch2=0:permafrost,patch3=0:permafrost,patch4=0:permafrost,patch5=0:permafrost,stdrot=true
|
|
||||||
block:id=%cracked_glacio_stone_bricks,patch0=0:cracked_glacio_stone_bricks,patch1=0:cracked_glacio_stone_bricks,patch2=0:cracked_glacio_stone_bricks,patch3=0:cracked_glacio_stone_bricks,patch4=0:cracked_glacio_stone_bricks,patch5=0:cracked_glacio_stone_bricks,stdrot=true
|
|
||||||
block:id=%glacio_stone_bricks,patch0=0:glacio_stone_bricks,patch1=0:glacio_stone_bricks,patch2=0:glacio_stone_bricks,patch3=0:glacio_stone_bricks,patch4=0:glacio_stone_bricks,patch5=0:glacio_stone_bricks,stdrot=true
|
|
||||||
block:id=%glacio_stone_brick_slab,state=type:top,patch0=0:glacio_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%glacio_stone_brick_slab,state=type:bottom,patch0=0:glacio_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%glacio_stone_brick_slab,state=type:double,patch0=0:glacio_stone_bricks,patch1=0:glacio_stone_bricks,patch2=0:glacio_stone_bricks,patch3=0:glacio_stone_bricks,patch4=0:glacio_stone_bricks,patch5=0:glacio_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%glacio_stone_brick_stairs,state=facing:north/half:top/shape:straight,patch0=0:glacio_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%glacio_stone_brick_stairs,state=facing:north/half:top/shape:inner_left,patch0=0:glacio_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%glacio_stone_brick_stairs,state=facing:north/half:top/shape:inner_right,patch0=0:glacio_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%glacio_stone_brick_stairs,state=facing:north/half:top/shape:outer_left,patch0=0:glacio_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%glacio_stone_brick_stairs,state=facing:north/half:top/shape:outer_right,patch0=0:glacio_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%glacio_stone_brick_stairs,state=facing:north/half:bottom/shape:straight,patch0=0:glacio_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%glacio_stone_brick_stairs,state=facing:north/half:bottom/shape:inner_left,patch0=0:glacio_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%glacio_stone_brick_stairs,state=facing:north/half:bottom/shape:inner_right,patch0=0:glacio_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%glacio_stone_brick_stairs,state=facing:north/half:bottom/shape:outer_left,patch0=0:glacio_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%glacio_stone_brick_stairs,state=facing:north/half:bottom/shape:outer_right,patch0=0:glacio_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%glacio_stone_brick_stairs,state=facing:south/half:top/shape:straight,patch0=0:glacio_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%glacio_stone_brick_stairs,state=facing:south/half:top/shape:inner_left,patch0=0:glacio_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%glacio_stone_brick_stairs,state=facing:south/half:top/shape:inner_right,patch0=0:glacio_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%glacio_stone_brick_stairs,state=facing:south/half:top/shape:outer_left,patch0=0:glacio_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%glacio_stone_brick_stairs,state=facing:south/half:top/shape:outer_right,patch0=0:glacio_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%glacio_stone_brick_stairs,state=facing:south/half:bottom/shape:straight,patch0=0:glacio_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%glacio_stone_brick_stairs,state=facing:south/half:bottom/shape:inner_left,patch0=0:glacio_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%glacio_stone_brick_stairs,state=facing:south/half:bottom/shape:inner_right,patch0=0:glacio_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%glacio_stone_brick_stairs,state=facing:south/half:bottom/shape:outer_left,patch0=0:glacio_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%glacio_stone_brick_stairs,state=facing:south/half:bottom/shape:outer_right,patch0=0:glacio_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%glacio_stone_brick_stairs,state=facing:west/half:top/shape:straight,patch0=0:glacio_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%glacio_stone_brick_stairs,state=facing:west/half:top/shape:inner_left,patch0=0:glacio_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%glacio_stone_brick_stairs,state=facing:west/half:top/shape:inner_right,patch0=0:glacio_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%glacio_stone_brick_stairs,state=facing:west/half:top/shape:outer_left,patch0=0:glacio_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%glacio_stone_brick_stairs,state=facing:west/half:top/shape:outer_right,patch0=0:glacio_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%glacio_stone_brick_stairs,state=facing:west/half:bottom/shape:straight,patch0=0:glacio_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%glacio_stone_brick_stairs,state=facing:west/half:bottom/shape:inner_left,patch0=0:glacio_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%glacio_stone_brick_stairs,state=facing:west/half:bottom/shape:inner_right,patch0=0:glacio_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%glacio_stone_brick_stairs,state=facing:west/half:bottom/shape:outer_left,patch0=0:glacio_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%glacio_stone_brick_stairs,state=facing:west/half:bottom/shape:outer_right,patch0=0:glacio_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%glacio_stone_brick_stairs,state=facing:east/half:top/shape:straight,patch0=0:glacio_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%glacio_stone_brick_stairs,state=facing:east/half:top/shape:inner_left,patch0=0:glacio_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%glacio_stone_brick_stairs,state=facing:east/half:top/shape:inner_right,patch0=0:glacio_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%glacio_stone_brick_stairs,state=facing:east/half:top/shape:outer_left,patch0=0:glacio_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%glacio_stone_brick_stairs,state=facing:east/half:top/shape:outer_right,patch0=0:glacio_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%glacio_stone_brick_stairs,state=facing:east/half:bottom/shape:straight,patch0=0:glacio_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%glacio_stone_brick_stairs,state=facing:east/half:bottom/shape:inner_left,patch0=0:glacio_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%glacio_stone_brick_stairs,state=facing:east/half:bottom/shape:inner_right,patch0=0:glacio_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%glacio_stone_brick_stairs,state=facing:east/half:bottom/shape:outer_left,patch0=0:glacio_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%glacio_stone_brick_stairs,state=facing:east/half:bottom/shape:outer_right,patch0=0:glacio_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
@ -1,44 +0,0 @@
|
|||||||
modname:chiselsandbits
|
|
||||||
|
|
||||||
texture:id=missing,filename=assets/chiselsandbits/textures/block/missing.png,xcount=1,ycount=1
|
|
||||||
texture:id=bit_tank,filename=assets/chiselsandbits/textures/block/bit_tank.png,xcount=1,ycount=1
|
|
||||||
texture:id=pattern_modification_table_top,filename=assets/chiselsandbits/textures/block/pattern_modification_table_top.png,xcount=1,ycount=1
|
|
||||||
texture:id=pattern_modification_table_side,filename=assets/chiselsandbits/textures/block/pattern_modification_table_side.png,xcount=1,ycount=1
|
|
||||||
texture:id=pattern_modification_table_bottom,filename=assets/chiselsandbits/textures/block/pattern_modification_table_bottom.png,xcount=1,ycount=1
|
|
||||||
texture:id=pattern_modification_table_front,filename=assets/chiselsandbits/textures/block/pattern_modification_table_front.png,xcount=1,ycount=1
|
|
||||||
texture:id=bit_printer,filename=assets/chiselsandbits/textures/block/bit_printer.png,xcount=1,ycount=1
|
|
||||||
texture:id=pattern_scanner,filename=assets/chiselsandbits/textures/block/pattern_scanner.png,xcount=1,ycount=1
|
|
||||||
block:id=%bit_storage,state=facing:north,patch0=0:missing,patch1=0:bit_tank,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%bit_storage,state=facing:south,patch0=0:missing,patch1=0:bit_tank,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%bit_storage,state=facing:west,patch0=0:missing,patch1=0:bit_tank,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%bit_storage,state=facing:east,patch0=0:missing,patch1=0:bit_tank,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%modification_table,state=facing:north,patch0=0:pattern_modification_table_top,patch1=0:pattern_modification_table_side,patch2=0:pattern_modification_table_bottom,patch3=0:pattern_modification_table_front,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%modification_table,state=facing:south,patch0=0:pattern_modification_table_top,patch1=0:pattern_modification_table_side,patch2=0:pattern_modification_table_bottom,patch3=0:pattern_modification_table_front,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%modification_table,state=facing:west,patch0=0:pattern_modification_table_top,patch1=0:pattern_modification_table_side,patch2=0:pattern_modification_table_bottom,patch3=0:pattern_modification_table_front,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%modification_table,state=facing:east,patch0=0:pattern_modification_table_top,patch1=0:pattern_modification_table_side,patch2=0:pattern_modification_table_bottom,patch3=0:pattern_modification_table_front,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%chiseled_printer,state=facing:north,patch0=0:bit_printer,patch1=0:missing,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%chiseled_printer,state=facing:south,patch0=0:bit_printer,patch1=0:missing,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%chiseled_printer,state=facing:west,patch0=0:bit_printer,patch1=0:missing,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%chiseled_printer,state=facing:east,patch0=0:bit_printer,patch1=0:missing,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%pattern_scanner,state=facing:north,patch0=0:pattern_scanner,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%pattern_scanner,state=facing:south,patch0=0:pattern_scanner,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%pattern_scanner,state=facing:west,patch0=0:pattern_scanner,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%pattern_scanner,state=facing:east,patch0=0:pattern_scanner,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%reflection_helper_block,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%chiseledpacked_ice,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%chiseledglass,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%chiseledwool,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%chiseledice,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%chiseledclay,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%chiseledrock,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%chiseledsand,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%chiseledleaves,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%chiseledgrass,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%chiseledsnow,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%chiseledplant,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%chiselediron,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%chiseledwood,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%chiseledground,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%chiseledfluid,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%chiseledcloth,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%chiselednether_wood,transparency=SEMITRANSPARENT,stdrot=true
|
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
@ -1,296 +0,0 @@
|
|||||||
modname:create_confectionery
|
|
||||||
|
|
||||||
modellist:id=%chocolate_bricks_stairs,state=facing:north/half:top/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/270/0
|
|
||||||
modellist:id=%chocolate_bricks_stairs,state=facing:north/half:top/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/180/270/0
|
|
||||||
modellist:id=%chocolate_bricks_stairs,state=facing:north/half:top/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/180/0/0
|
|
||||||
modellist:id=%chocolate_bricks_stairs,state=facing:north/half:top/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/270/0
|
|
||||||
modellist:id=%chocolate_bricks_stairs,state=facing:north/half:top/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/0/0
|
|
||||||
modellist:id=%chocolate_bricks_stairs,state=facing:north/half:bottom/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/270/0
|
|
||||||
modellist:id=%chocolate_bricks_stairs,state=facing:north/half:bottom/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/0/180/0
|
|
||||||
modellist:id=%chocolate_bricks_stairs,state=facing:north/half:bottom/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/0/270/0
|
|
||||||
modellist:id=%chocolate_bricks_stairs,state=facing:north/half:bottom/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/180/0
|
|
||||||
modellist:id=%chocolate_bricks_stairs,state=facing:north/half:bottom/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/270/0
|
|
||||||
modellist:id=%chocolate_bricks_stairs,state=facing:south/half:top/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/90/0
|
|
||||||
modellist:id=%chocolate_bricks_stairs,state=facing:south/half:top/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/180/90/0
|
|
||||||
modellist:id=%chocolate_bricks_stairs,state=facing:south/half:top/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/180/180/0
|
|
||||||
modellist:id=%chocolate_bricks_stairs,state=facing:south/half:top/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/90/0
|
|
||||||
modellist:id=%chocolate_bricks_stairs,state=facing:south/half:top/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/180/0
|
|
||||||
modellist:id=%chocolate_bricks_stairs,state=facing:south/half:bottom/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/90/0
|
|
||||||
modellist:id=%chocolate_bricks_stairs,state=facing:south/half:bottom/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000
|
|
||||||
modellist:id=%chocolate_bricks_stairs,state=facing:south/half:bottom/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/0/90/0
|
|
||||||
modellist:id=%chocolate_bricks_stairs,state=facing:south/half:bottom/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000
|
|
||||||
modellist:id=%chocolate_bricks_stairs,state=facing:south/half:bottom/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/90/0
|
|
||||||
modellist:id=%chocolate_bricks_stairs,state=facing:west/half:top/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/180/0
|
|
||||||
modellist:id=%chocolate_bricks_stairs,state=facing:west/half:top/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/180/180/0
|
|
||||||
modellist:id=%chocolate_bricks_stairs,state=facing:west/half:top/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/180/270/0
|
|
||||||
modellist:id=%chocolate_bricks_stairs,state=facing:west/half:top/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/180/0
|
|
||||||
modellist:id=%chocolate_bricks_stairs,state=facing:west/half:top/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/270/0
|
|
||||||
modellist:id=%chocolate_bricks_stairs,state=facing:west/half:bottom/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/180/0
|
|
||||||
modellist:id=%chocolate_bricks_stairs,state=facing:west/half:bottom/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/0/90/0
|
|
||||||
modellist:id=%chocolate_bricks_stairs,state=facing:west/half:bottom/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/0/180/0
|
|
||||||
modellist:id=%chocolate_bricks_stairs,state=facing:west/half:bottom/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/90/0
|
|
||||||
modellist:id=%chocolate_bricks_stairs,state=facing:west/half:bottom/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/180/0
|
|
||||||
modellist:id=%chocolate_bricks_stairs,state=facing:east/half:top/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/0/0
|
|
||||||
modellist:id=%chocolate_bricks_stairs,state=facing:east/half:top/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/180/0/0
|
|
||||||
modellist:id=%chocolate_bricks_stairs,state=facing:east/half:top/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/180/90/0
|
|
||||||
modellist:id=%chocolate_bricks_stairs,state=facing:east/half:top/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/0/0
|
|
||||||
modellist:id=%chocolate_bricks_stairs,state=facing:east/half:top/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/90/0
|
|
||||||
modellist:id=%chocolate_bricks_stairs,state=facing:east/half:bottom/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000
|
|
||||||
modellist:id=%chocolate_bricks_stairs,state=facing:east/half:bottom/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/0/270/0
|
|
||||||
modellist:id=%chocolate_bricks_stairs,state=facing:east/half:bottom/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000
|
|
||||||
modellist:id=%chocolate_bricks_stairs,state=facing:east/half:bottom/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/270/0
|
|
||||||
modellist:id=%chocolate_bricks_stairs,state=facing:east/half:bottom/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000
|
|
||||||
modellist:id=%chocolate_bricks_slab,state=type:top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/8.000000
|
|
||||||
modellist:id=%chocolate_bricks_slab,state=type:bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000
|
|
||||||
modellist:id=%black_chocolate_bricks_stairs,state=facing:north/half:top/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/270/0
|
|
||||||
modellist:id=%black_chocolate_bricks_stairs,state=facing:north/half:top/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/180/270/0
|
|
||||||
modellist:id=%black_chocolate_bricks_stairs,state=facing:north/half:top/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/180/0/0
|
|
||||||
modellist:id=%black_chocolate_bricks_stairs,state=facing:north/half:top/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/270/0
|
|
||||||
modellist:id=%black_chocolate_bricks_stairs,state=facing:north/half:top/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/0/0
|
|
||||||
modellist:id=%black_chocolate_bricks_stairs,state=facing:north/half:bottom/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/270/0
|
|
||||||
modellist:id=%black_chocolate_bricks_stairs,state=facing:north/half:bottom/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/0/180/0
|
|
||||||
modellist:id=%black_chocolate_bricks_stairs,state=facing:north/half:bottom/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/0/270/0
|
|
||||||
modellist:id=%black_chocolate_bricks_stairs,state=facing:north/half:bottom/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/180/0
|
|
||||||
modellist:id=%black_chocolate_bricks_stairs,state=facing:north/half:bottom/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/270/0
|
|
||||||
modellist:id=%black_chocolate_bricks_stairs,state=facing:south/half:top/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/90/0
|
|
||||||
modellist:id=%black_chocolate_bricks_stairs,state=facing:south/half:top/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/180/90/0
|
|
||||||
modellist:id=%black_chocolate_bricks_stairs,state=facing:south/half:top/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/180/180/0
|
|
||||||
modellist:id=%black_chocolate_bricks_stairs,state=facing:south/half:top/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/90/0
|
|
||||||
modellist:id=%black_chocolate_bricks_stairs,state=facing:south/half:top/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/180/0
|
|
||||||
modellist:id=%black_chocolate_bricks_stairs,state=facing:south/half:bottom/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/90/0
|
|
||||||
modellist:id=%black_chocolate_bricks_stairs,state=facing:south/half:bottom/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000
|
|
||||||
modellist:id=%black_chocolate_bricks_stairs,state=facing:south/half:bottom/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/0/90/0
|
|
||||||
modellist:id=%black_chocolate_bricks_stairs,state=facing:south/half:bottom/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000
|
|
||||||
modellist:id=%black_chocolate_bricks_stairs,state=facing:south/half:bottom/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/90/0
|
|
||||||
modellist:id=%black_chocolate_bricks_stairs,state=facing:west/half:top/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/180/0
|
|
||||||
modellist:id=%black_chocolate_bricks_stairs,state=facing:west/half:top/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/180/180/0
|
|
||||||
modellist:id=%black_chocolate_bricks_stairs,state=facing:west/half:top/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/180/270/0
|
|
||||||
modellist:id=%black_chocolate_bricks_stairs,state=facing:west/half:top/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/180/0
|
|
||||||
modellist:id=%black_chocolate_bricks_stairs,state=facing:west/half:top/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/270/0
|
|
||||||
modellist:id=%black_chocolate_bricks_stairs,state=facing:west/half:bottom/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/180/0
|
|
||||||
modellist:id=%black_chocolate_bricks_stairs,state=facing:west/half:bottom/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/0/90/0
|
|
||||||
modellist:id=%black_chocolate_bricks_stairs,state=facing:west/half:bottom/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/0/180/0
|
|
||||||
modellist:id=%black_chocolate_bricks_stairs,state=facing:west/half:bottom/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/90/0
|
|
||||||
modellist:id=%black_chocolate_bricks_stairs,state=facing:west/half:bottom/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/180/0
|
|
||||||
modellist:id=%black_chocolate_bricks_stairs,state=facing:east/half:top/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/0/0
|
|
||||||
modellist:id=%black_chocolate_bricks_stairs,state=facing:east/half:top/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/180/0/0
|
|
||||||
modellist:id=%black_chocolate_bricks_stairs,state=facing:east/half:top/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/180/90/0
|
|
||||||
modellist:id=%black_chocolate_bricks_stairs,state=facing:east/half:top/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/0/0
|
|
||||||
modellist:id=%black_chocolate_bricks_stairs,state=facing:east/half:top/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/90/0
|
|
||||||
modellist:id=%black_chocolate_bricks_stairs,state=facing:east/half:bottom/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000
|
|
||||||
modellist:id=%black_chocolate_bricks_stairs,state=facing:east/half:bottom/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/0/270/0
|
|
||||||
modellist:id=%black_chocolate_bricks_stairs,state=facing:east/half:bottom/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000
|
|
||||||
modellist:id=%black_chocolate_bricks_stairs,state=facing:east/half:bottom/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/270/0
|
|
||||||
modellist:id=%black_chocolate_bricks_stairs,state=facing:east/half:bottom/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000
|
|
||||||
modellist:id=%black_chocolate_bricks_slab,state=type:top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/8.000000
|
|
||||||
modellist:id=%black_chocolate_bricks_slab,state=type:bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000
|
|
||||||
modellist:id=%white_chocolate_bricks_stairs,state=facing:north/half:top/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/270/0
|
|
||||||
modellist:id=%white_chocolate_bricks_stairs,state=facing:north/half:top/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/180/270/0
|
|
||||||
modellist:id=%white_chocolate_bricks_stairs,state=facing:north/half:top/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/180/0/0
|
|
||||||
modellist:id=%white_chocolate_bricks_stairs,state=facing:north/half:top/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/270/0
|
|
||||||
modellist:id=%white_chocolate_bricks_stairs,state=facing:north/half:top/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/0/0
|
|
||||||
modellist:id=%white_chocolate_bricks_stairs,state=facing:north/half:bottom/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/270/0
|
|
||||||
modellist:id=%white_chocolate_bricks_stairs,state=facing:north/half:bottom/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/0/180/0
|
|
||||||
modellist:id=%white_chocolate_bricks_stairs,state=facing:north/half:bottom/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/0/270/0
|
|
||||||
modellist:id=%white_chocolate_bricks_stairs,state=facing:north/half:bottom/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/180/0
|
|
||||||
modellist:id=%white_chocolate_bricks_stairs,state=facing:north/half:bottom/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/270/0
|
|
||||||
modellist:id=%white_chocolate_bricks_stairs,state=facing:south/half:top/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/90/0
|
|
||||||
modellist:id=%white_chocolate_bricks_stairs,state=facing:south/half:top/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/180/90/0
|
|
||||||
modellist:id=%white_chocolate_bricks_stairs,state=facing:south/half:top/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/180/180/0
|
|
||||||
modellist:id=%white_chocolate_bricks_stairs,state=facing:south/half:top/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/90/0
|
|
||||||
modellist:id=%white_chocolate_bricks_stairs,state=facing:south/half:top/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/180/0
|
|
||||||
modellist:id=%white_chocolate_bricks_stairs,state=facing:south/half:bottom/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/90/0
|
|
||||||
modellist:id=%white_chocolate_bricks_stairs,state=facing:south/half:bottom/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000
|
|
||||||
modellist:id=%white_chocolate_bricks_stairs,state=facing:south/half:bottom/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/0/90/0
|
|
||||||
modellist:id=%white_chocolate_bricks_stairs,state=facing:south/half:bottom/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000
|
|
||||||
modellist:id=%white_chocolate_bricks_stairs,state=facing:south/half:bottom/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/90/0
|
|
||||||
modellist:id=%white_chocolate_bricks_stairs,state=facing:west/half:top/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/180/0
|
|
||||||
modellist:id=%white_chocolate_bricks_stairs,state=facing:west/half:top/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/180/180/0
|
|
||||||
modellist:id=%white_chocolate_bricks_stairs,state=facing:west/half:top/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/180/270/0
|
|
||||||
modellist:id=%white_chocolate_bricks_stairs,state=facing:west/half:top/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/180/0
|
|
||||||
modellist:id=%white_chocolate_bricks_stairs,state=facing:west/half:top/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/270/0
|
|
||||||
modellist:id=%white_chocolate_bricks_stairs,state=facing:west/half:bottom/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/180/0
|
|
||||||
modellist:id=%white_chocolate_bricks_stairs,state=facing:west/half:bottom/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/0/90/0
|
|
||||||
modellist:id=%white_chocolate_bricks_stairs,state=facing:west/half:bottom/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/0/180/0
|
|
||||||
modellist:id=%white_chocolate_bricks_stairs,state=facing:west/half:bottom/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/90/0
|
|
||||||
modellist:id=%white_chocolate_bricks_stairs,state=facing:west/half:bottom/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/180/0
|
|
||||||
modellist:id=%white_chocolate_bricks_stairs,state=facing:east/half:top/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/0/0
|
|
||||||
modellist:id=%white_chocolate_bricks_stairs,state=facing:east/half:top/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/180/0/0
|
|
||||||
modellist:id=%white_chocolate_bricks_stairs,state=facing:east/half:top/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/180/90/0
|
|
||||||
modellist:id=%white_chocolate_bricks_stairs,state=facing:east/half:top/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/0/0
|
|
||||||
modellist:id=%white_chocolate_bricks_stairs,state=facing:east/half:top/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/90/0
|
|
||||||
modellist:id=%white_chocolate_bricks_stairs,state=facing:east/half:bottom/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000
|
|
||||||
modellist:id=%white_chocolate_bricks_stairs,state=facing:east/half:bottom/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/0/270/0
|
|
||||||
modellist:id=%white_chocolate_bricks_stairs,state=facing:east/half:bottom/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000
|
|
||||||
modellist:id=%white_chocolate_bricks_stairs,state=facing:east/half:bottom/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/270/0
|
|
||||||
modellist:id=%white_chocolate_bricks_stairs,state=facing:east/half:bottom/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000
|
|
||||||
modellist:id=%white_chocolate_bricks_slab,state=type:top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/8.000000
|
|
||||||
modellist:id=%white_chocolate_bricks_slab,state=type:bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000
|
|
||||||
modellist:id=%ruby_chocolate_brick_stairs,state=facing:north/half:top/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/270/0
|
|
||||||
modellist:id=%ruby_chocolate_brick_stairs,state=facing:north/half:top/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/180/270/0
|
|
||||||
modellist:id=%ruby_chocolate_brick_stairs,state=facing:north/half:top/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/180/0/0
|
|
||||||
modellist:id=%ruby_chocolate_brick_stairs,state=facing:north/half:top/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/270/0
|
|
||||||
modellist:id=%ruby_chocolate_brick_stairs,state=facing:north/half:top/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/0/0
|
|
||||||
modellist:id=%ruby_chocolate_brick_stairs,state=facing:north/half:bottom/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/270/0
|
|
||||||
modellist:id=%ruby_chocolate_brick_stairs,state=facing:north/half:bottom/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/0/180/0
|
|
||||||
modellist:id=%ruby_chocolate_brick_stairs,state=facing:north/half:bottom/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/0/270/0
|
|
||||||
modellist:id=%ruby_chocolate_brick_stairs,state=facing:north/half:bottom/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/180/0
|
|
||||||
modellist:id=%ruby_chocolate_brick_stairs,state=facing:north/half:bottom/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/270/0
|
|
||||||
modellist:id=%ruby_chocolate_brick_stairs,state=facing:south/half:top/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/90/0
|
|
||||||
modellist:id=%ruby_chocolate_brick_stairs,state=facing:south/half:top/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/180/90/0
|
|
||||||
modellist:id=%ruby_chocolate_brick_stairs,state=facing:south/half:top/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/180/180/0
|
|
||||||
modellist:id=%ruby_chocolate_brick_stairs,state=facing:south/half:top/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/90/0
|
|
||||||
modellist:id=%ruby_chocolate_brick_stairs,state=facing:south/half:top/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/180/0
|
|
||||||
modellist:id=%ruby_chocolate_brick_stairs,state=facing:south/half:bottom/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/90/0
|
|
||||||
modellist:id=%ruby_chocolate_brick_stairs,state=facing:south/half:bottom/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000
|
|
||||||
modellist:id=%ruby_chocolate_brick_stairs,state=facing:south/half:bottom/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/0/90/0
|
|
||||||
modellist:id=%ruby_chocolate_brick_stairs,state=facing:south/half:bottom/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000
|
|
||||||
modellist:id=%ruby_chocolate_brick_stairs,state=facing:south/half:bottom/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/90/0
|
|
||||||
modellist:id=%ruby_chocolate_brick_stairs,state=facing:west/half:top/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/180/0
|
|
||||||
modellist:id=%ruby_chocolate_brick_stairs,state=facing:west/half:top/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/180/180/0
|
|
||||||
modellist:id=%ruby_chocolate_brick_stairs,state=facing:west/half:top/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/180/270/0
|
|
||||||
modellist:id=%ruby_chocolate_brick_stairs,state=facing:west/half:top/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/180/0
|
|
||||||
modellist:id=%ruby_chocolate_brick_stairs,state=facing:west/half:top/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/270/0
|
|
||||||
modellist:id=%ruby_chocolate_brick_stairs,state=facing:west/half:bottom/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/180/0
|
|
||||||
modellist:id=%ruby_chocolate_brick_stairs,state=facing:west/half:bottom/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/0/90/0
|
|
||||||
modellist:id=%ruby_chocolate_brick_stairs,state=facing:west/half:bottom/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/0/180/0
|
|
||||||
modellist:id=%ruby_chocolate_brick_stairs,state=facing:west/half:bottom/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/90/0
|
|
||||||
modellist:id=%ruby_chocolate_brick_stairs,state=facing:west/half:bottom/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/180/0
|
|
||||||
modellist:id=%ruby_chocolate_brick_stairs,state=facing:east/half:top/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/0/0
|
|
||||||
modellist:id=%ruby_chocolate_brick_stairs,state=facing:east/half:top/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/180/0/0
|
|
||||||
modellist:id=%ruby_chocolate_brick_stairs,state=facing:east/half:top/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/180/90/0
|
|
||||||
modellist:id=%ruby_chocolate_brick_stairs,state=facing:east/half:top/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/0/0
|
|
||||||
modellist:id=%ruby_chocolate_brick_stairs,state=facing:east/half:top/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/90/0
|
|
||||||
modellist:id=%ruby_chocolate_brick_stairs,state=facing:east/half:bottom/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000
|
|
||||||
modellist:id=%ruby_chocolate_brick_stairs,state=facing:east/half:bottom/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/0/270/0
|
|
||||||
modellist:id=%ruby_chocolate_brick_stairs,state=facing:east/half:bottom/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000
|
|
||||||
modellist:id=%ruby_chocolate_brick_stairs,state=facing:east/half:bottom/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/270/0
|
|
||||||
modellist:id=%ruby_chocolate_brick_stairs,state=facing:east/half:bottom/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000
|
|
||||||
modellist:id=%ruby_chocolate_brick_slab,state=type:top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/8.000000
|
|
||||||
modellist:id=%ruby_chocolate_brick_slab,state=type:bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000
|
|
||||||
modellist:id=%caramel_bricks_stairs,state=facing:north/half:top/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/270/0
|
|
||||||
modellist:id=%caramel_bricks_stairs,state=facing:north/half:top/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/180/270/0
|
|
||||||
modellist:id=%caramel_bricks_stairs,state=facing:north/half:top/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/180/0/0
|
|
||||||
modellist:id=%caramel_bricks_stairs,state=facing:north/half:top/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/270/0
|
|
||||||
modellist:id=%caramel_bricks_stairs,state=facing:north/half:top/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/0/0
|
|
||||||
modellist:id=%caramel_bricks_stairs,state=facing:north/half:bottom/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/270/0
|
|
||||||
modellist:id=%caramel_bricks_stairs,state=facing:north/half:bottom/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/0/180/0
|
|
||||||
modellist:id=%caramel_bricks_stairs,state=facing:north/half:bottom/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/0/270/0
|
|
||||||
modellist:id=%caramel_bricks_stairs,state=facing:north/half:bottom/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/180/0
|
|
||||||
modellist:id=%caramel_bricks_stairs,state=facing:north/half:bottom/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/270/0
|
|
||||||
modellist:id=%caramel_bricks_stairs,state=facing:south/half:top/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/90/0
|
|
||||||
modellist:id=%caramel_bricks_stairs,state=facing:south/half:top/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/180/90/0
|
|
||||||
modellist:id=%caramel_bricks_stairs,state=facing:south/half:top/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/180/180/0
|
|
||||||
modellist:id=%caramel_bricks_stairs,state=facing:south/half:top/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/90/0
|
|
||||||
modellist:id=%caramel_bricks_stairs,state=facing:south/half:top/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/180/0
|
|
||||||
modellist:id=%caramel_bricks_stairs,state=facing:south/half:bottom/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/90/0
|
|
||||||
modellist:id=%caramel_bricks_stairs,state=facing:south/half:bottom/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000
|
|
||||||
modellist:id=%caramel_bricks_stairs,state=facing:south/half:bottom/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/0/90/0
|
|
||||||
modellist:id=%caramel_bricks_stairs,state=facing:south/half:bottom/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000
|
|
||||||
modellist:id=%caramel_bricks_stairs,state=facing:south/half:bottom/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/90/0
|
|
||||||
modellist:id=%caramel_bricks_stairs,state=facing:west/half:top/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/180/0
|
|
||||||
modellist:id=%caramel_bricks_stairs,state=facing:west/half:top/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/180/180/0
|
|
||||||
modellist:id=%caramel_bricks_stairs,state=facing:west/half:top/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/180/270/0
|
|
||||||
modellist:id=%caramel_bricks_stairs,state=facing:west/half:top/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/180/0
|
|
||||||
modellist:id=%caramel_bricks_stairs,state=facing:west/half:top/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/270/0
|
|
||||||
modellist:id=%caramel_bricks_stairs,state=facing:west/half:bottom/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/180/0
|
|
||||||
modellist:id=%caramel_bricks_stairs,state=facing:west/half:bottom/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/0/90/0
|
|
||||||
modellist:id=%caramel_bricks_stairs,state=facing:west/half:bottom/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/0/180/0
|
|
||||||
modellist:id=%caramel_bricks_stairs,state=facing:west/half:bottom/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/90/0
|
|
||||||
modellist:id=%caramel_bricks_stairs,state=facing:west/half:bottom/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/180/0
|
|
||||||
modellist:id=%caramel_bricks_stairs,state=facing:east/half:top/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/0/0
|
|
||||||
modellist:id=%caramel_bricks_stairs,state=facing:east/half:top/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/180/0/0
|
|
||||||
modellist:id=%caramel_bricks_stairs,state=facing:east/half:top/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/180/90/0
|
|
||||||
modellist:id=%caramel_bricks_stairs,state=facing:east/half:top/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/0/0
|
|
||||||
modellist:id=%caramel_bricks_stairs,state=facing:east/half:top/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/90/0
|
|
||||||
modellist:id=%caramel_bricks_stairs,state=facing:east/half:bottom/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000
|
|
||||||
modellist:id=%caramel_bricks_stairs,state=facing:east/half:bottom/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/0/270/0
|
|
||||||
modellist:id=%caramel_bricks_stairs,state=facing:east/half:bottom/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000
|
|
||||||
modellist:id=%caramel_bricks_stairs,state=facing:east/half:bottom/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/270/0
|
|
||||||
modellist:id=%caramel_bricks_stairs,state=facing:east/half:bottom/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000
|
|
||||||
modellist:id=%caramel_bricks_slab,state=type:top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/8.000000
|
|
||||||
modellist:id=%caramel_bricks_slab,state=type:bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000
|
|
||||||
modellist:id=%gingerbread_stairs,state=facing:north/half:top/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/270/0
|
|
||||||
modellist:id=%gingerbread_stairs,state=facing:north/half:top/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/180/270/0
|
|
||||||
modellist:id=%gingerbread_stairs,state=facing:north/half:top/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/180/0/0
|
|
||||||
modellist:id=%gingerbread_stairs,state=facing:north/half:top/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/270/0
|
|
||||||
modellist:id=%gingerbread_stairs,state=facing:north/half:top/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/0/0
|
|
||||||
modellist:id=%gingerbread_stairs,state=facing:north/half:bottom/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/270/0
|
|
||||||
modellist:id=%gingerbread_stairs,state=facing:north/half:bottom/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/0/180/0
|
|
||||||
modellist:id=%gingerbread_stairs,state=facing:north/half:bottom/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/0/270/0
|
|
||||||
modellist:id=%gingerbread_stairs,state=facing:north/half:bottom/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/180/0
|
|
||||||
modellist:id=%gingerbread_stairs,state=facing:north/half:bottom/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/270/0
|
|
||||||
modellist:id=%gingerbread_stairs,state=facing:south/half:top/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/90/0
|
|
||||||
modellist:id=%gingerbread_stairs,state=facing:south/half:top/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/180/90/0
|
|
||||||
modellist:id=%gingerbread_stairs,state=facing:south/half:top/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/180/180/0
|
|
||||||
modellist:id=%gingerbread_stairs,state=facing:south/half:top/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/90/0
|
|
||||||
modellist:id=%gingerbread_stairs,state=facing:south/half:top/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/180/0
|
|
||||||
modellist:id=%gingerbread_stairs,state=facing:south/half:bottom/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/90/0
|
|
||||||
modellist:id=%gingerbread_stairs,state=facing:south/half:bottom/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000
|
|
||||||
modellist:id=%gingerbread_stairs,state=facing:south/half:bottom/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/0/90/0
|
|
||||||
modellist:id=%gingerbread_stairs,state=facing:south/half:bottom/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000
|
|
||||||
modellist:id=%gingerbread_stairs,state=facing:south/half:bottom/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/90/0
|
|
||||||
modellist:id=%gingerbread_stairs,state=facing:west/half:top/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/180/0
|
|
||||||
modellist:id=%gingerbread_stairs,state=facing:west/half:top/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/180/180/0
|
|
||||||
modellist:id=%gingerbread_stairs,state=facing:west/half:top/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/180/270/0
|
|
||||||
modellist:id=%gingerbread_stairs,state=facing:west/half:top/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/180/0
|
|
||||||
modellist:id=%gingerbread_stairs,state=facing:west/half:top/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/270/0
|
|
||||||
modellist:id=%gingerbread_stairs,state=facing:west/half:bottom/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/180/0
|
|
||||||
modellist:id=%gingerbread_stairs,state=facing:west/half:bottom/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/0/90/0
|
|
||||||
modellist:id=%gingerbread_stairs,state=facing:west/half:bottom/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/0/180/0
|
|
||||||
modellist:id=%gingerbread_stairs,state=facing:west/half:bottom/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/90/0
|
|
||||||
modellist:id=%gingerbread_stairs,state=facing:west/half:bottom/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/180/0
|
|
||||||
modellist:id=%gingerbread_stairs,state=facing:east/half:top/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/0/0
|
|
||||||
modellist:id=%gingerbread_stairs,state=facing:east/half:top/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/180/0/0
|
|
||||||
modellist:id=%gingerbread_stairs,state=facing:east/half:top/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/180/90/0
|
|
||||||
modellist:id=%gingerbread_stairs,state=facing:east/half:top/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/0/0
|
|
||||||
modellist:id=%gingerbread_stairs,state=facing:east/half:top/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/90/0
|
|
||||||
modellist:id=%gingerbread_stairs,state=facing:east/half:bottom/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000
|
|
||||||
modellist:id=%gingerbread_stairs,state=facing:east/half:bottom/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/0/270/0
|
|
||||||
modellist:id=%gingerbread_stairs,state=facing:east/half:bottom/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000
|
|
||||||
modellist:id=%gingerbread_stairs,state=facing:east/half:bottom/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/270/0
|
|
||||||
modellist:id=%gingerbread_stairs,state=facing:east/half:bottom/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000
|
|
||||||
modellist:id=%gingerbread_slab,state=type:top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/8.000000
|
|
||||||
modellist:id=%gingerbread_slab,state=type:bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000
|
|
||||||
modellist:id=%gingerbread_brick_stairs,state=facing:north/half:top/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/270/0
|
|
||||||
modellist:id=%gingerbread_brick_stairs,state=facing:north/half:top/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/180/270/0
|
|
||||||
modellist:id=%gingerbread_brick_stairs,state=facing:north/half:top/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/180/0/0
|
|
||||||
modellist:id=%gingerbread_brick_stairs,state=facing:north/half:top/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/270/0
|
|
||||||
modellist:id=%gingerbread_brick_stairs,state=facing:north/half:top/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/0/0
|
|
||||||
modellist:id=%gingerbread_brick_stairs,state=facing:north/half:bottom/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/270/0
|
|
||||||
modellist:id=%gingerbread_brick_stairs,state=facing:north/half:bottom/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/0/180/0
|
|
||||||
modellist:id=%gingerbread_brick_stairs,state=facing:north/half:bottom/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/0/270/0
|
|
||||||
modellist:id=%gingerbread_brick_stairs,state=facing:north/half:bottom/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/180/0
|
|
||||||
modellist:id=%gingerbread_brick_stairs,state=facing:north/half:bottom/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/270/0
|
|
||||||
modellist:id=%gingerbread_brick_stairs,state=facing:south/half:top/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/90/0
|
|
||||||
modellist:id=%gingerbread_brick_stairs,state=facing:south/half:top/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/180/90/0
|
|
||||||
modellist:id=%gingerbread_brick_stairs,state=facing:south/half:top/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/180/180/0
|
|
||||||
modellist:id=%gingerbread_brick_stairs,state=facing:south/half:top/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/90/0
|
|
||||||
modellist:id=%gingerbread_brick_stairs,state=facing:south/half:top/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/180/0
|
|
||||||
modellist:id=%gingerbread_brick_stairs,state=facing:south/half:bottom/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/90/0
|
|
||||||
modellist:id=%gingerbread_brick_stairs,state=facing:south/half:bottom/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000
|
|
||||||
modellist:id=%gingerbread_brick_stairs,state=facing:south/half:bottom/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/0/90/0
|
|
||||||
modellist:id=%gingerbread_brick_stairs,state=facing:south/half:bottom/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000
|
|
||||||
modellist:id=%gingerbread_brick_stairs,state=facing:south/half:bottom/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/90/0
|
|
||||||
modellist:id=%gingerbread_brick_stairs,state=facing:west/half:top/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/180/0
|
|
||||||
modellist:id=%gingerbread_brick_stairs,state=facing:west/half:top/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/180/180/0
|
|
||||||
modellist:id=%gingerbread_brick_stairs,state=facing:west/half:top/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/180/270/0
|
|
||||||
modellist:id=%gingerbread_brick_stairs,state=facing:west/half:top/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/180/0
|
|
||||||
modellist:id=%gingerbread_brick_stairs,state=facing:west/half:top/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/270/0
|
|
||||||
modellist:id=%gingerbread_brick_stairs,state=facing:west/half:bottom/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/180/0
|
|
||||||
modellist:id=%gingerbread_brick_stairs,state=facing:west/half:bottom/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/0/90/0
|
|
||||||
modellist:id=%gingerbread_brick_stairs,state=facing:west/half:bottom/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/0/180/0
|
|
||||||
modellist:id=%gingerbread_brick_stairs,state=facing:west/half:bottom/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/90/0
|
|
||||||
modellist:id=%gingerbread_brick_stairs,state=facing:west/half:bottom/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/180/0
|
|
||||||
modellist:id=%gingerbread_brick_stairs,state=facing:east/half:top/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/0/0
|
|
||||||
modellist:id=%gingerbread_brick_stairs,state=facing:east/half:top/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/180/0/0
|
|
||||||
modellist:id=%gingerbread_brick_stairs,state=facing:east/half:top/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/180/90/0
|
|
||||||
modellist:id=%gingerbread_brick_stairs,state=facing:east/half:top/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/0/0
|
|
||||||
modellist:id=%gingerbread_brick_stairs,state=facing:east/half:top/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/180/90/0
|
|
||||||
modellist:id=%gingerbread_brick_stairs,state=facing:east/half:bottom/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000
|
|
||||||
modellist:id=%gingerbread_brick_stairs,state=facing:east/half:bottom/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000:R/0/270/0
|
|
||||||
modellist:id=%gingerbread_brick_stairs,state=facing:east/half:bottom/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/8.000000
|
|
||||||
modellist:id=%gingerbread_brick_stairs,state=facing:east/half:bottom/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/270/0
|
|
||||||
modellist:id=%gingerbread_brick_stairs,state=facing:east/half:bottom/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:n/0/0.000000/0.000000/8.000000/8.000000
|
|
||||||
modellist:id=%gingerbread_brick_slab,state=type:top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/8.000000
|
|
||||||
modellist:id=%gingerbread_brick_slab,state=type:bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000
|
|
@ -1,317 +0,0 @@
|
|||||||
modname:create_confectionery
|
|
||||||
|
|
||||||
texture:id=chocolate_bricks,filename=assets/create_confectionery/textures/blocks/chocolate_bricks.png,xcount=1,ycount=1
|
|
||||||
texture:id=black_chocolate_bricks,filename=assets/create_confectionery/textures/blocks/black_chocolate_bricks.png,xcount=1,ycount=1
|
|
||||||
texture:id=white_chocolate_bricks,filename=assets/create_confectionery/textures/blocks/white_chocolate_bricks.png,xcount=1,ycount=1
|
|
||||||
texture:id=ruby_chocolate_bricks,filename=assets/create_confectionery/textures/blocks/ruby_chocolate_bricks.png,xcount=1,ycount=1
|
|
||||||
texture:id=caramel_bricks,filename=assets/create_confectionery/textures/blocks/caramel_bricks.png,xcount=1,ycount=1
|
|
||||||
texture:id=gingerbread_block,filename=assets/create_confectionery/textures/blocks/gingerbread_block.png,xcount=1,ycount=1
|
|
||||||
texture:id=gingerbread_bricks,filename=assets/create_confectionery/textures/blocks/gingerbread_bricks.png,xcount=1,ycount=1
|
|
||||||
block:id=%chocolate_bricks,patch0=0:chocolate_bricks,patch1=0:chocolate_bricks,patch2=0:chocolate_bricks,patch3=0:chocolate_bricks,patch4=0:chocolate_bricks,patch5=0:chocolate_bricks,stdrot=true
|
|
||||||
block:id=%chocolate_bricks_stairs,state=facing:north/half:top/shape:straight,patch0=0:chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%chocolate_bricks_stairs,state=facing:north/half:top/shape:inner_left,patch0=0:chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%chocolate_bricks_stairs,state=facing:north/half:top/shape:inner_right,patch0=0:chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%chocolate_bricks_stairs,state=facing:north/half:top/shape:outer_left,patch0=0:chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%chocolate_bricks_stairs,state=facing:north/half:top/shape:outer_right,patch0=0:chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%chocolate_bricks_stairs,state=facing:north/half:bottom/shape:straight,patch0=0:chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%chocolate_bricks_stairs,state=facing:north/half:bottom/shape:inner_left,patch0=0:chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%chocolate_bricks_stairs,state=facing:north/half:bottom/shape:inner_right,patch0=0:chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%chocolate_bricks_stairs,state=facing:north/half:bottom/shape:outer_left,patch0=0:chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%chocolate_bricks_stairs,state=facing:north/half:bottom/shape:outer_right,patch0=0:chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%chocolate_bricks_stairs,state=facing:south/half:top/shape:straight,patch0=0:chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%chocolate_bricks_stairs,state=facing:south/half:top/shape:inner_left,patch0=0:chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%chocolate_bricks_stairs,state=facing:south/half:top/shape:inner_right,patch0=0:chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%chocolate_bricks_stairs,state=facing:south/half:top/shape:outer_left,patch0=0:chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%chocolate_bricks_stairs,state=facing:south/half:top/shape:outer_right,patch0=0:chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%chocolate_bricks_stairs,state=facing:south/half:bottom/shape:straight,patch0=0:chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%chocolate_bricks_stairs,state=facing:south/half:bottom/shape:inner_left,patch0=0:chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%chocolate_bricks_stairs,state=facing:south/half:bottom/shape:inner_right,patch0=0:chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%chocolate_bricks_stairs,state=facing:south/half:bottom/shape:outer_left,patch0=0:chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%chocolate_bricks_stairs,state=facing:south/half:bottom/shape:outer_right,patch0=0:chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%chocolate_bricks_stairs,state=facing:west/half:top/shape:straight,patch0=0:chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%chocolate_bricks_stairs,state=facing:west/half:top/shape:inner_left,patch0=0:chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%chocolate_bricks_stairs,state=facing:west/half:top/shape:inner_right,patch0=0:chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%chocolate_bricks_stairs,state=facing:west/half:top/shape:outer_left,patch0=0:chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%chocolate_bricks_stairs,state=facing:west/half:top/shape:outer_right,patch0=0:chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%chocolate_bricks_stairs,state=facing:west/half:bottom/shape:straight,patch0=0:chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%chocolate_bricks_stairs,state=facing:west/half:bottom/shape:inner_left,patch0=0:chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%chocolate_bricks_stairs,state=facing:west/half:bottom/shape:inner_right,patch0=0:chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%chocolate_bricks_stairs,state=facing:west/half:bottom/shape:outer_left,patch0=0:chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%chocolate_bricks_stairs,state=facing:west/half:bottom/shape:outer_right,patch0=0:chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%chocolate_bricks_stairs,state=facing:east/half:top/shape:straight,patch0=0:chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%chocolate_bricks_stairs,state=facing:east/half:top/shape:inner_left,patch0=0:chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%chocolate_bricks_stairs,state=facing:east/half:top/shape:inner_right,patch0=0:chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%chocolate_bricks_stairs,state=facing:east/half:top/shape:outer_left,patch0=0:chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%chocolate_bricks_stairs,state=facing:east/half:top/shape:outer_right,patch0=0:chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%chocolate_bricks_stairs,state=facing:east/half:bottom/shape:straight,patch0=0:chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%chocolate_bricks_stairs,state=facing:east/half:bottom/shape:inner_left,patch0=0:chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%chocolate_bricks_stairs,state=facing:east/half:bottom/shape:inner_right,patch0=0:chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%chocolate_bricks_stairs,state=facing:east/half:bottom/shape:outer_left,patch0=0:chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%chocolate_bricks_stairs,state=facing:east/half:bottom/shape:outer_right,patch0=0:chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%chocolate_bricks_slab,state=type:top,patch0=0:chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%chocolate_bricks_slab,state=type:bottom,patch0=0:chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%chocolate_bricks_slab,state=type:double,patch0=0:chocolate_bricks,patch1=0:chocolate_bricks,patch2=0:chocolate_bricks,patch3=0:chocolate_bricks,patch4=0:chocolate_bricks,patch5=0:chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%black_chocolate_bricks,patch0=0:black_chocolate_bricks,patch1=0:black_chocolate_bricks,patch2=0:black_chocolate_bricks,patch3=0:black_chocolate_bricks,patch4=0:black_chocolate_bricks,patch5=0:black_chocolate_bricks,stdrot=true
|
|
||||||
block:id=%black_chocolate_bricks_stairs,state=facing:north/half:top/shape:straight,patch0=0:black_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%black_chocolate_bricks_stairs,state=facing:north/half:top/shape:inner_left,patch0=0:black_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%black_chocolate_bricks_stairs,state=facing:north/half:top/shape:inner_right,patch0=0:black_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%black_chocolate_bricks_stairs,state=facing:north/half:top/shape:outer_left,patch0=0:black_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%black_chocolate_bricks_stairs,state=facing:north/half:top/shape:outer_right,patch0=0:black_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%black_chocolate_bricks_stairs,state=facing:north/half:bottom/shape:straight,patch0=0:black_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%black_chocolate_bricks_stairs,state=facing:north/half:bottom/shape:inner_left,patch0=0:black_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%black_chocolate_bricks_stairs,state=facing:north/half:bottom/shape:inner_right,patch0=0:black_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%black_chocolate_bricks_stairs,state=facing:north/half:bottom/shape:outer_left,patch0=0:black_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%black_chocolate_bricks_stairs,state=facing:north/half:bottom/shape:outer_right,patch0=0:black_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%black_chocolate_bricks_stairs,state=facing:south/half:top/shape:straight,patch0=0:black_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%black_chocolate_bricks_stairs,state=facing:south/half:top/shape:inner_left,patch0=0:black_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%black_chocolate_bricks_stairs,state=facing:south/half:top/shape:inner_right,patch0=0:black_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%black_chocolate_bricks_stairs,state=facing:south/half:top/shape:outer_left,patch0=0:black_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%black_chocolate_bricks_stairs,state=facing:south/half:top/shape:outer_right,patch0=0:black_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%black_chocolate_bricks_stairs,state=facing:south/half:bottom/shape:straight,patch0=0:black_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%black_chocolate_bricks_stairs,state=facing:south/half:bottom/shape:inner_left,patch0=0:black_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%black_chocolate_bricks_stairs,state=facing:south/half:bottom/shape:inner_right,patch0=0:black_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%black_chocolate_bricks_stairs,state=facing:south/half:bottom/shape:outer_left,patch0=0:black_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%black_chocolate_bricks_stairs,state=facing:south/half:bottom/shape:outer_right,patch0=0:black_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%black_chocolate_bricks_stairs,state=facing:west/half:top/shape:straight,patch0=0:black_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%black_chocolate_bricks_stairs,state=facing:west/half:top/shape:inner_left,patch0=0:black_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%black_chocolate_bricks_stairs,state=facing:west/half:top/shape:inner_right,patch0=0:black_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%black_chocolate_bricks_stairs,state=facing:west/half:top/shape:outer_left,patch0=0:black_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%black_chocolate_bricks_stairs,state=facing:west/half:top/shape:outer_right,patch0=0:black_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%black_chocolate_bricks_stairs,state=facing:west/half:bottom/shape:straight,patch0=0:black_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%black_chocolate_bricks_stairs,state=facing:west/half:bottom/shape:inner_left,patch0=0:black_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%black_chocolate_bricks_stairs,state=facing:west/half:bottom/shape:inner_right,patch0=0:black_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%black_chocolate_bricks_stairs,state=facing:west/half:bottom/shape:outer_left,patch0=0:black_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%black_chocolate_bricks_stairs,state=facing:west/half:bottom/shape:outer_right,patch0=0:black_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%black_chocolate_bricks_stairs,state=facing:east/half:top/shape:straight,patch0=0:black_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%black_chocolate_bricks_stairs,state=facing:east/half:top/shape:inner_left,patch0=0:black_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%black_chocolate_bricks_stairs,state=facing:east/half:top/shape:inner_right,patch0=0:black_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%black_chocolate_bricks_stairs,state=facing:east/half:top/shape:outer_left,patch0=0:black_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%black_chocolate_bricks_stairs,state=facing:east/half:top/shape:outer_right,patch0=0:black_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%black_chocolate_bricks_stairs,state=facing:east/half:bottom/shape:straight,patch0=0:black_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%black_chocolate_bricks_stairs,state=facing:east/half:bottom/shape:inner_left,patch0=0:black_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%black_chocolate_bricks_stairs,state=facing:east/half:bottom/shape:inner_right,patch0=0:black_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%black_chocolate_bricks_stairs,state=facing:east/half:bottom/shape:outer_left,patch0=0:black_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%black_chocolate_bricks_stairs,state=facing:east/half:bottom/shape:outer_right,patch0=0:black_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%black_chocolate_bricks_slab,state=type:top,patch0=0:black_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%black_chocolate_bricks_slab,state=type:bottom,patch0=0:black_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%black_chocolate_bricks_slab,state=type:double,patch0=0:black_chocolate_bricks,patch1=0:black_chocolate_bricks,patch2=0:black_chocolate_bricks,patch3=0:black_chocolate_bricks,patch4=0:black_chocolate_bricks,patch5=0:black_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%white_chocolate_bricks,patch0=0:white_chocolate_bricks,patch1=0:white_chocolate_bricks,patch2=0:white_chocolate_bricks,patch3=0:white_chocolate_bricks,patch4=0:white_chocolate_bricks,patch5=0:white_chocolate_bricks,stdrot=true
|
|
||||||
block:id=%white_chocolate_bricks_stairs,state=facing:north/half:top/shape:straight,patch0=0:white_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%white_chocolate_bricks_stairs,state=facing:north/half:top/shape:inner_left,patch0=0:white_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%white_chocolate_bricks_stairs,state=facing:north/half:top/shape:inner_right,patch0=0:white_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%white_chocolate_bricks_stairs,state=facing:north/half:top/shape:outer_left,patch0=0:white_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%white_chocolate_bricks_stairs,state=facing:north/half:top/shape:outer_right,patch0=0:white_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%white_chocolate_bricks_stairs,state=facing:north/half:bottom/shape:straight,patch0=0:white_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%white_chocolate_bricks_stairs,state=facing:north/half:bottom/shape:inner_left,patch0=0:white_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%white_chocolate_bricks_stairs,state=facing:north/half:bottom/shape:inner_right,patch0=0:white_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%white_chocolate_bricks_stairs,state=facing:north/half:bottom/shape:outer_left,patch0=0:white_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%white_chocolate_bricks_stairs,state=facing:north/half:bottom/shape:outer_right,patch0=0:white_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%white_chocolate_bricks_stairs,state=facing:south/half:top/shape:straight,patch0=0:white_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%white_chocolate_bricks_stairs,state=facing:south/half:top/shape:inner_left,patch0=0:white_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%white_chocolate_bricks_stairs,state=facing:south/half:top/shape:inner_right,patch0=0:white_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%white_chocolate_bricks_stairs,state=facing:south/half:top/shape:outer_left,patch0=0:white_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%white_chocolate_bricks_stairs,state=facing:south/half:top/shape:outer_right,patch0=0:white_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%white_chocolate_bricks_stairs,state=facing:south/half:bottom/shape:straight,patch0=0:white_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%white_chocolate_bricks_stairs,state=facing:south/half:bottom/shape:inner_left,patch0=0:white_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%white_chocolate_bricks_stairs,state=facing:south/half:bottom/shape:inner_right,patch0=0:white_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%white_chocolate_bricks_stairs,state=facing:south/half:bottom/shape:outer_left,patch0=0:white_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%white_chocolate_bricks_stairs,state=facing:south/half:bottom/shape:outer_right,patch0=0:white_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%white_chocolate_bricks_stairs,state=facing:west/half:top/shape:straight,patch0=0:white_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%white_chocolate_bricks_stairs,state=facing:west/half:top/shape:inner_left,patch0=0:white_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%white_chocolate_bricks_stairs,state=facing:west/half:top/shape:inner_right,patch0=0:white_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%white_chocolate_bricks_stairs,state=facing:west/half:top/shape:outer_left,patch0=0:white_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%white_chocolate_bricks_stairs,state=facing:west/half:top/shape:outer_right,patch0=0:white_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%white_chocolate_bricks_stairs,state=facing:west/half:bottom/shape:straight,patch0=0:white_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%white_chocolate_bricks_stairs,state=facing:west/half:bottom/shape:inner_left,patch0=0:white_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%white_chocolate_bricks_stairs,state=facing:west/half:bottom/shape:inner_right,patch0=0:white_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%white_chocolate_bricks_stairs,state=facing:west/half:bottom/shape:outer_left,patch0=0:white_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%white_chocolate_bricks_stairs,state=facing:west/half:bottom/shape:outer_right,patch0=0:white_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%white_chocolate_bricks_stairs,state=facing:east/half:top/shape:straight,patch0=0:white_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%white_chocolate_bricks_stairs,state=facing:east/half:top/shape:inner_left,patch0=0:white_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%white_chocolate_bricks_stairs,state=facing:east/half:top/shape:inner_right,patch0=0:white_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%white_chocolate_bricks_stairs,state=facing:east/half:top/shape:outer_left,patch0=0:white_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%white_chocolate_bricks_stairs,state=facing:east/half:top/shape:outer_right,patch0=0:white_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%white_chocolate_bricks_stairs,state=facing:east/half:bottom/shape:straight,patch0=0:white_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%white_chocolate_bricks_stairs,state=facing:east/half:bottom/shape:inner_left,patch0=0:white_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%white_chocolate_bricks_stairs,state=facing:east/half:bottom/shape:inner_right,patch0=0:white_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%white_chocolate_bricks_stairs,state=facing:east/half:bottom/shape:outer_left,patch0=0:white_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%white_chocolate_bricks_stairs,state=facing:east/half:bottom/shape:outer_right,patch0=0:white_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%white_chocolate_bricks_slab,state=type:top,patch0=0:white_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%white_chocolate_bricks_slab,state=type:bottom,patch0=0:white_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%white_chocolate_bricks_slab,state=type:double,patch0=0:white_chocolate_bricks,patch1=0:white_chocolate_bricks,patch2=0:white_chocolate_bricks,patch3=0:white_chocolate_bricks,patch4=0:white_chocolate_bricks,patch5=0:white_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%ruby_chocolate_bricks,patch0=0:ruby_chocolate_bricks,patch1=0:ruby_chocolate_bricks,patch2=0:ruby_chocolate_bricks,patch3=0:ruby_chocolate_bricks,patch4=0:ruby_chocolate_bricks,patch5=0:ruby_chocolate_bricks,stdrot=true
|
|
||||||
block:id=%ruby_chocolate_brick_stairs,state=facing:north/half:top/shape:straight,patch0=0:ruby_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%ruby_chocolate_brick_stairs,state=facing:north/half:top/shape:inner_left,patch0=0:ruby_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%ruby_chocolate_brick_stairs,state=facing:north/half:top/shape:inner_right,patch0=0:ruby_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%ruby_chocolate_brick_stairs,state=facing:north/half:top/shape:outer_left,patch0=0:ruby_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%ruby_chocolate_brick_stairs,state=facing:north/half:top/shape:outer_right,patch0=0:ruby_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%ruby_chocolate_brick_stairs,state=facing:north/half:bottom/shape:straight,patch0=0:ruby_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%ruby_chocolate_brick_stairs,state=facing:north/half:bottom/shape:inner_left,patch0=0:ruby_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%ruby_chocolate_brick_stairs,state=facing:north/half:bottom/shape:inner_right,patch0=0:ruby_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%ruby_chocolate_brick_stairs,state=facing:north/half:bottom/shape:outer_left,patch0=0:ruby_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%ruby_chocolate_brick_stairs,state=facing:north/half:bottom/shape:outer_right,patch0=0:ruby_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%ruby_chocolate_brick_stairs,state=facing:south/half:top/shape:straight,patch0=0:ruby_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%ruby_chocolate_brick_stairs,state=facing:south/half:top/shape:inner_left,patch0=0:ruby_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%ruby_chocolate_brick_stairs,state=facing:south/half:top/shape:inner_right,patch0=0:ruby_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%ruby_chocolate_brick_stairs,state=facing:south/half:top/shape:outer_left,patch0=0:ruby_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%ruby_chocolate_brick_stairs,state=facing:south/half:top/shape:outer_right,patch0=0:ruby_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%ruby_chocolate_brick_stairs,state=facing:south/half:bottom/shape:straight,patch0=0:ruby_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%ruby_chocolate_brick_stairs,state=facing:south/half:bottom/shape:inner_left,patch0=0:ruby_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%ruby_chocolate_brick_stairs,state=facing:south/half:bottom/shape:inner_right,patch0=0:ruby_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%ruby_chocolate_brick_stairs,state=facing:south/half:bottom/shape:outer_left,patch0=0:ruby_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%ruby_chocolate_brick_stairs,state=facing:south/half:bottom/shape:outer_right,patch0=0:ruby_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%ruby_chocolate_brick_stairs,state=facing:west/half:top/shape:straight,patch0=0:ruby_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%ruby_chocolate_brick_stairs,state=facing:west/half:top/shape:inner_left,patch0=0:ruby_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%ruby_chocolate_brick_stairs,state=facing:west/half:top/shape:inner_right,patch0=0:ruby_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%ruby_chocolate_brick_stairs,state=facing:west/half:top/shape:outer_left,patch0=0:ruby_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%ruby_chocolate_brick_stairs,state=facing:west/half:top/shape:outer_right,patch0=0:ruby_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%ruby_chocolate_brick_stairs,state=facing:west/half:bottom/shape:straight,patch0=0:ruby_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%ruby_chocolate_brick_stairs,state=facing:west/half:bottom/shape:inner_left,patch0=0:ruby_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%ruby_chocolate_brick_stairs,state=facing:west/half:bottom/shape:inner_right,patch0=0:ruby_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%ruby_chocolate_brick_stairs,state=facing:west/half:bottom/shape:outer_left,patch0=0:ruby_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%ruby_chocolate_brick_stairs,state=facing:west/half:bottom/shape:outer_right,patch0=0:ruby_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%ruby_chocolate_brick_stairs,state=facing:east/half:top/shape:straight,patch0=0:ruby_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%ruby_chocolate_brick_stairs,state=facing:east/half:top/shape:inner_left,patch0=0:ruby_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%ruby_chocolate_brick_stairs,state=facing:east/half:top/shape:inner_right,patch0=0:ruby_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%ruby_chocolate_brick_stairs,state=facing:east/half:top/shape:outer_left,patch0=0:ruby_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%ruby_chocolate_brick_stairs,state=facing:east/half:top/shape:outer_right,patch0=0:ruby_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%ruby_chocolate_brick_stairs,state=facing:east/half:bottom/shape:straight,patch0=0:ruby_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%ruby_chocolate_brick_stairs,state=facing:east/half:bottom/shape:inner_left,patch0=0:ruby_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%ruby_chocolate_brick_stairs,state=facing:east/half:bottom/shape:inner_right,patch0=0:ruby_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%ruby_chocolate_brick_stairs,state=facing:east/half:bottom/shape:outer_left,patch0=0:ruby_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%ruby_chocolate_brick_stairs,state=facing:east/half:bottom/shape:outer_right,patch0=0:ruby_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%ruby_chocolate_brick_slab,state=type:top,patch0=0:ruby_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%ruby_chocolate_brick_slab,state=type:bottom,patch0=0:ruby_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%ruby_chocolate_brick_slab,state=type:double,patch0=0:ruby_chocolate_bricks,patch1=0:ruby_chocolate_bricks,patch2=0:ruby_chocolate_bricks,patch3=0:ruby_chocolate_bricks,patch4=0:ruby_chocolate_bricks,patch5=0:ruby_chocolate_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%caramel_bricks,patch0=0:caramel_bricks,patch1=0:caramel_bricks,patch2=0:caramel_bricks,patch3=0:caramel_bricks,patch4=0:caramel_bricks,patch5=0:caramel_bricks,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%caramel_bricks_stairs,state=facing:north/half:top/shape:straight,patch0=0:caramel_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%caramel_bricks_stairs,state=facing:north/half:top/shape:inner_left,patch0=0:caramel_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%caramel_bricks_stairs,state=facing:north/half:top/shape:inner_right,patch0=0:caramel_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%caramel_bricks_stairs,state=facing:north/half:top/shape:outer_left,patch0=0:caramel_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%caramel_bricks_stairs,state=facing:north/half:top/shape:outer_right,patch0=0:caramel_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%caramel_bricks_stairs,state=facing:north/half:bottom/shape:straight,patch0=0:caramel_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%caramel_bricks_stairs,state=facing:north/half:bottom/shape:inner_left,patch0=0:caramel_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%caramel_bricks_stairs,state=facing:north/half:bottom/shape:inner_right,patch0=0:caramel_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%caramel_bricks_stairs,state=facing:north/half:bottom/shape:outer_left,patch0=0:caramel_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%caramel_bricks_stairs,state=facing:north/half:bottom/shape:outer_right,patch0=0:caramel_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%caramel_bricks_stairs,state=facing:south/half:top/shape:straight,patch0=0:caramel_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%caramel_bricks_stairs,state=facing:south/half:top/shape:inner_left,patch0=0:caramel_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%caramel_bricks_stairs,state=facing:south/half:top/shape:inner_right,patch0=0:caramel_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%caramel_bricks_stairs,state=facing:south/half:top/shape:outer_left,patch0=0:caramel_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%caramel_bricks_stairs,state=facing:south/half:top/shape:outer_right,patch0=0:caramel_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%caramel_bricks_stairs,state=facing:south/half:bottom/shape:straight,patch0=0:caramel_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%caramel_bricks_stairs,state=facing:south/half:bottom/shape:inner_left,patch0=0:caramel_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%caramel_bricks_stairs,state=facing:south/half:bottom/shape:inner_right,patch0=0:caramel_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%caramel_bricks_stairs,state=facing:south/half:bottom/shape:outer_left,patch0=0:caramel_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%caramel_bricks_stairs,state=facing:south/half:bottom/shape:outer_right,patch0=0:caramel_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%caramel_bricks_stairs,state=facing:west/half:top/shape:straight,patch0=0:caramel_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%caramel_bricks_stairs,state=facing:west/half:top/shape:inner_left,patch0=0:caramel_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%caramel_bricks_stairs,state=facing:west/half:top/shape:inner_right,patch0=0:caramel_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%caramel_bricks_stairs,state=facing:west/half:top/shape:outer_left,patch0=0:caramel_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%caramel_bricks_stairs,state=facing:west/half:top/shape:outer_right,patch0=0:caramel_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%caramel_bricks_stairs,state=facing:west/half:bottom/shape:straight,patch0=0:caramel_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%caramel_bricks_stairs,state=facing:west/half:bottom/shape:inner_left,patch0=0:caramel_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%caramel_bricks_stairs,state=facing:west/half:bottom/shape:inner_right,patch0=0:caramel_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%caramel_bricks_stairs,state=facing:west/half:bottom/shape:outer_left,patch0=0:caramel_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%caramel_bricks_stairs,state=facing:west/half:bottom/shape:outer_right,patch0=0:caramel_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%caramel_bricks_stairs,state=facing:east/half:top/shape:straight,patch0=0:caramel_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%caramel_bricks_stairs,state=facing:east/half:top/shape:inner_left,patch0=0:caramel_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%caramel_bricks_stairs,state=facing:east/half:top/shape:inner_right,patch0=0:caramel_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%caramel_bricks_stairs,state=facing:east/half:top/shape:outer_left,patch0=0:caramel_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%caramel_bricks_stairs,state=facing:east/half:top/shape:outer_right,patch0=0:caramel_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%caramel_bricks_stairs,state=facing:east/half:bottom/shape:straight,patch0=0:caramel_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%caramel_bricks_stairs,state=facing:east/half:bottom/shape:inner_left,patch0=0:caramel_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%caramel_bricks_stairs,state=facing:east/half:bottom/shape:inner_right,patch0=0:caramel_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%caramel_bricks_stairs,state=facing:east/half:bottom/shape:outer_left,patch0=0:caramel_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%caramel_bricks_stairs,state=facing:east/half:bottom/shape:outer_right,patch0=0:caramel_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%caramel_bricks_slab,state=type:top,patch0=0:caramel_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%caramel_bricks_slab,state=type:bottom,patch0=0:caramel_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%caramel_bricks_slab,state=type:double,patch0=0:caramel_bricks,patch1=0:caramel_bricks,patch2=0:caramel_bricks,patch3=0:caramel_bricks,patch4=0:caramel_bricks,patch5=0:caramel_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_block,patch0=0:gingerbread_block,patch1=0:gingerbread_block,patch2=0:gingerbread_block,patch3=0:gingerbread_block,patch4=0:gingerbread_block,patch5=0:gingerbread_block,stdrot=true
|
|
||||||
block:id=%gingerbread_stairs,state=facing:north/half:top/shape:straight,patch0=0:gingerbread_block,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_stairs,state=facing:north/half:top/shape:inner_left,patch0=0:gingerbread_block,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_stairs,state=facing:north/half:top/shape:inner_right,patch0=0:gingerbread_block,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_stairs,state=facing:north/half:top/shape:outer_left,patch0=0:gingerbread_block,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_stairs,state=facing:north/half:top/shape:outer_right,patch0=0:gingerbread_block,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_stairs,state=facing:north/half:bottom/shape:straight,patch0=0:gingerbread_block,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_stairs,state=facing:north/half:bottom/shape:inner_left,patch0=0:gingerbread_block,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_stairs,state=facing:north/half:bottom/shape:inner_right,patch0=0:gingerbread_block,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_stairs,state=facing:north/half:bottom/shape:outer_left,patch0=0:gingerbread_block,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_stairs,state=facing:north/half:bottom/shape:outer_right,patch0=0:gingerbread_block,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_stairs,state=facing:south/half:top/shape:straight,patch0=0:gingerbread_block,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_stairs,state=facing:south/half:top/shape:inner_left,patch0=0:gingerbread_block,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_stairs,state=facing:south/half:top/shape:inner_right,patch0=0:gingerbread_block,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_stairs,state=facing:south/half:top/shape:outer_left,patch0=0:gingerbread_block,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_stairs,state=facing:south/half:top/shape:outer_right,patch0=0:gingerbread_block,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_stairs,state=facing:south/half:bottom/shape:straight,patch0=0:gingerbread_block,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_stairs,state=facing:south/half:bottom/shape:inner_left,patch0=0:gingerbread_block,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_stairs,state=facing:south/half:bottom/shape:inner_right,patch0=0:gingerbread_block,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_stairs,state=facing:south/half:bottom/shape:outer_left,patch0=0:gingerbread_block,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_stairs,state=facing:south/half:bottom/shape:outer_right,patch0=0:gingerbread_block,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_stairs,state=facing:west/half:top/shape:straight,patch0=0:gingerbread_block,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_stairs,state=facing:west/half:top/shape:inner_left,patch0=0:gingerbread_block,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_stairs,state=facing:west/half:top/shape:inner_right,patch0=0:gingerbread_block,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_stairs,state=facing:west/half:top/shape:outer_left,patch0=0:gingerbread_block,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_stairs,state=facing:west/half:top/shape:outer_right,patch0=0:gingerbread_block,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_stairs,state=facing:west/half:bottom/shape:straight,patch0=0:gingerbread_block,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_stairs,state=facing:west/half:bottom/shape:inner_left,patch0=0:gingerbread_block,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_stairs,state=facing:west/half:bottom/shape:inner_right,patch0=0:gingerbread_block,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_stairs,state=facing:west/half:bottom/shape:outer_left,patch0=0:gingerbread_block,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_stairs,state=facing:west/half:bottom/shape:outer_right,patch0=0:gingerbread_block,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_stairs,state=facing:east/half:top/shape:straight,patch0=0:gingerbread_block,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_stairs,state=facing:east/half:top/shape:inner_left,patch0=0:gingerbread_block,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_stairs,state=facing:east/half:top/shape:inner_right,patch0=0:gingerbread_block,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_stairs,state=facing:east/half:top/shape:outer_left,patch0=0:gingerbread_block,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_stairs,state=facing:east/half:top/shape:outer_right,patch0=0:gingerbread_block,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_stairs,state=facing:east/half:bottom/shape:straight,patch0=0:gingerbread_block,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_stairs,state=facing:east/half:bottom/shape:inner_left,patch0=0:gingerbread_block,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_stairs,state=facing:east/half:bottom/shape:inner_right,patch0=0:gingerbread_block,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_stairs,state=facing:east/half:bottom/shape:outer_left,patch0=0:gingerbread_block,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_stairs,state=facing:east/half:bottom/shape:outer_right,patch0=0:gingerbread_block,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_slab,state=type:top,patch0=0:gingerbread_block,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_slab,state=type:bottom,patch0=0:gingerbread_block,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_slab,state=type:double,patch0=0:gingerbread_block,patch1=0:gingerbread_block,patch2=0:gingerbread_block,patch3=0:gingerbread_block,patch4=0:gingerbread_block,patch5=0:gingerbread_block,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbreak_bricks,patch0=0:gingerbread_bricks,patch1=0:gingerbread_bricks,patch2=0:gingerbread_bricks,patch3=0:gingerbread_bricks,patch4=0:gingerbread_bricks,patch5=0:gingerbread_bricks,stdrot=true
|
|
||||||
block:id=%gingerbread_brick_stairs,state=facing:north/half:top/shape:straight,patch0=0:gingerbread_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_brick_stairs,state=facing:north/half:top/shape:inner_left,patch0=0:gingerbread_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_brick_stairs,state=facing:north/half:top/shape:inner_right,patch0=0:gingerbread_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_brick_stairs,state=facing:north/half:top/shape:outer_left,patch0=0:gingerbread_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_brick_stairs,state=facing:north/half:top/shape:outer_right,patch0=0:gingerbread_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_brick_stairs,state=facing:north/half:bottom/shape:straight,patch0=0:gingerbread_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_brick_stairs,state=facing:north/half:bottom/shape:inner_left,patch0=0:gingerbread_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_brick_stairs,state=facing:north/half:bottom/shape:inner_right,patch0=0:gingerbread_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_brick_stairs,state=facing:north/half:bottom/shape:outer_left,patch0=0:gingerbread_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_brick_stairs,state=facing:north/half:bottom/shape:outer_right,patch0=0:gingerbread_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_brick_stairs,state=facing:south/half:top/shape:straight,patch0=0:gingerbread_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_brick_stairs,state=facing:south/half:top/shape:inner_left,patch0=0:gingerbread_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_brick_stairs,state=facing:south/half:top/shape:inner_right,patch0=0:gingerbread_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_brick_stairs,state=facing:south/half:top/shape:outer_left,patch0=0:gingerbread_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_brick_stairs,state=facing:south/half:top/shape:outer_right,patch0=0:gingerbread_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_brick_stairs,state=facing:south/half:bottom/shape:straight,patch0=0:gingerbread_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_brick_stairs,state=facing:south/half:bottom/shape:inner_left,patch0=0:gingerbread_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_brick_stairs,state=facing:south/half:bottom/shape:inner_right,patch0=0:gingerbread_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_brick_stairs,state=facing:south/half:bottom/shape:outer_left,patch0=0:gingerbread_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_brick_stairs,state=facing:south/half:bottom/shape:outer_right,patch0=0:gingerbread_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_brick_stairs,state=facing:west/half:top/shape:straight,patch0=0:gingerbread_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_brick_stairs,state=facing:west/half:top/shape:inner_left,patch0=0:gingerbread_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_brick_stairs,state=facing:west/half:top/shape:inner_right,patch0=0:gingerbread_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_brick_stairs,state=facing:west/half:top/shape:outer_left,patch0=0:gingerbread_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_brick_stairs,state=facing:west/half:top/shape:outer_right,patch0=0:gingerbread_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_brick_stairs,state=facing:west/half:bottom/shape:straight,patch0=0:gingerbread_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_brick_stairs,state=facing:west/half:bottom/shape:inner_left,patch0=0:gingerbread_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_brick_stairs,state=facing:west/half:bottom/shape:inner_right,patch0=0:gingerbread_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_brick_stairs,state=facing:west/half:bottom/shape:outer_left,patch0=0:gingerbread_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_brick_stairs,state=facing:west/half:bottom/shape:outer_right,patch0=0:gingerbread_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_brick_stairs,state=facing:east/half:top/shape:straight,patch0=0:gingerbread_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_brick_stairs,state=facing:east/half:top/shape:inner_left,patch0=0:gingerbread_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_brick_stairs,state=facing:east/half:top/shape:inner_right,patch0=0:gingerbread_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_brick_stairs,state=facing:east/half:top/shape:outer_left,patch0=0:gingerbread_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_brick_stairs,state=facing:east/half:top/shape:outer_right,patch0=0:gingerbread_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_brick_stairs,state=facing:east/half:bottom/shape:straight,patch0=0:gingerbread_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_brick_stairs,state=facing:east/half:bottom/shape:inner_left,patch0=0:gingerbread_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_brick_stairs,state=facing:east/half:bottom/shape:inner_right,patch0=0:gingerbread_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_brick_stairs,state=facing:east/half:bottom/shape:outer_left,patch0=0:gingerbread_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_brick_stairs,state=facing:east/half:bottom/shape:outer_right,patch0=0:gingerbread_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_brick_slab,state=type:top,patch0=0:gingerbread_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_brick_slab,state=type:bottom,patch0=0:gingerbread_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gingerbread_brick_slab,state=type:double,patch0=0:gingerbread_bricks,patch1=0:gingerbread_bricks,patch2=0:gingerbread_bricks,patch3=0:gingerbread_bricks,patch4=0:gingerbread_bricks,patch5=0:gingerbread_bricks,transparency=SEMITRANSPARENT,stdrot=true
|
|
@ -1,89 +0,0 @@
|
|||||||
modname:createaddition
|
|
||||||
|
|
||||||
modellist:id=%electric_motor,state=facing:north,box=3.000000/3.000000/0.000000:13.000000/13.000000/14.000000:u180/0/9.500000/8.000000/14.500000/15.000000:s/0/1.500000/1.500000/6.500000/6.500000:w90/0/9.500000/8.000000/14.500000/15.000000:e270/0/9.500000/8.000000/14.500000/15.000000:d/0/9.500000/8.000000/14.500000/15.000000:n/0/9.500000/1.500000/14.500000/6.500000:R/0/180/0,box=0.000000/0.000000/5.000000:16.000000/16.000000/11.000000:u90/0/2.500000/8.000000/5.500000/16.000000:s90/0/0.000000/0.000000/8.000000/8.000000:w/0/2.500000/8.000000/5.500000/16.000000:e/0/2.500000/8.000000/5.500000/16.000000:d90/0/2.500000/8.000000/5.500000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/180/0
|
|
||||||
modellist:id=%electric_motor,state=facing:east,box=3.000000/3.000000/0.000000:13.000000/13.000000/14.000000:u180/0/9.500000/8.000000/14.500000/15.000000:s/0/1.500000/1.500000/6.500000/6.500000:w90/0/9.500000/8.000000/14.500000/15.000000:e270/0/9.500000/8.000000/14.500000/15.000000:d/0/9.500000/8.000000/14.500000/15.000000:n/0/9.500000/1.500000/14.500000/6.500000:R/0/270/0,box=0.000000/0.000000/5.000000:16.000000/16.000000/11.000000:u90/0/2.500000/8.000000/5.500000/16.000000:s90/0/0.000000/0.000000/8.000000/8.000000:w/0/2.500000/8.000000/5.500000/16.000000:e/0/2.500000/8.000000/5.500000/16.000000:d90/0/2.500000/8.000000/5.500000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/270/0
|
|
||||||
modellist:id=%electric_motor,state=facing:south,box=3.000000/3.000000/0.000000:13.000000/13.000000/14.000000:u180/0/9.500000/8.000000/14.500000/15.000000:s/0/1.500000/1.500000/6.500000/6.500000:w90/0/9.500000/8.000000/14.500000/15.000000:e270/0/9.500000/8.000000/14.500000/15.000000:d/0/9.500000/8.000000/14.500000/15.000000:n/0/9.500000/1.500000/14.500000/6.500000,box=0.000000/0.000000/5.000000:16.000000/16.000000/11.000000:u90/0/2.500000/8.000000/5.500000/16.000000:s90/0/0.000000/0.000000/8.000000/8.000000:w/0/2.500000/8.000000/5.500000/16.000000:e/0/2.500000/8.000000/5.500000/16.000000:d90/0/2.500000/8.000000/5.500000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000
|
|
||||||
modellist:id=%electric_motor,state=facing:west,box=3.000000/3.000000/0.000000:13.000000/13.000000/14.000000:u180/0/9.500000/8.000000/14.500000/15.000000:s/0/1.500000/1.500000/6.500000/6.500000:w90/0/9.500000/8.000000/14.500000/15.000000:e270/0/9.500000/8.000000/14.500000/15.000000:d/0/9.500000/8.000000/14.500000/15.000000:n/0/9.500000/1.500000/14.500000/6.500000:R/0/90/0,box=0.000000/0.000000/5.000000:16.000000/16.000000/11.000000:u90/0/2.500000/8.000000/5.500000/16.000000:s90/0/0.000000/0.000000/8.000000/8.000000:w/0/2.500000/8.000000/5.500000/16.000000:e/0/2.500000/8.000000/5.500000/16.000000:d90/0/2.500000/8.000000/5.500000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/0/90/0
|
|
||||||
modellist:id=%electric_motor,state=facing:up,box=3.000000/3.000000/0.000000:13.000000/13.000000/14.000000:u180/0/9.500000/8.000000/14.500000/15.000000:s/0/1.500000/1.500000/6.500000/6.500000:w90/0/9.500000/8.000000/14.500000/15.000000:e270/0/9.500000/8.000000/14.500000/15.000000:d/0/9.500000/8.000000/14.500000/15.000000:n/0/9.500000/1.500000/14.500000/6.500000:R/90/90/0,box=0.000000/0.000000/5.000000:16.000000/16.000000/11.000000:u90/0/2.500000/8.000000/5.500000/16.000000:s90/0/0.000000/0.000000/8.000000/8.000000:w/0/2.500000/8.000000/5.500000/16.000000:e/0/2.500000/8.000000/5.500000/16.000000:d90/0/2.500000/8.000000/5.500000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/90/90/0
|
|
||||||
modellist:id=%electric_motor,state=facing:down,box=3.000000/3.000000/0.000000:13.000000/13.000000/14.000000:u180/0/9.500000/8.000000/14.500000/15.000000:s/0/1.500000/1.500000/6.500000/6.500000:w90/0/9.500000/8.000000/14.500000/15.000000:e270/0/9.500000/8.000000/14.500000/15.000000:d/0/9.500000/8.000000/14.500000/15.000000:n/0/9.500000/1.500000/14.500000/6.500000:R/270/90/0,box=0.000000/0.000000/5.000000:16.000000/16.000000/11.000000:u90/0/2.500000/8.000000/5.500000/16.000000:s90/0/0.000000/0.000000/8.000000/8.000000:w/0/2.500000/8.000000/5.500000/16.000000:e/0/2.500000/8.000000/5.500000/16.000000:d90/0/2.500000/8.000000/5.500000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:R/270/90/0
|
|
||||||
modellist:id=%alternator,state=facing:north,box=0.000000/0.000000/3.000000:16.000000/16.000000/13.000000:u90/0/1.500000/0.000000/6.500000/8.000000:s/0/8.000000/8.000000/16.000000/16.000000:w/0/1.500000/0.000000/6.500000/8.000000:e180/0/1.500000/0.000000/6.500000/8.000000:d270/0/1.500000/0.000000/6.500000/8.000000:n/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0,box=2.000000/2.000000/0.000000:14.000000/14.000000/14.000000:u/0/9.000000/0.000000/15.000000/7.000000:s/0/1.000000/9.000000/7.000000/15.000000:w/0/8.000000/1.000000/15.000000/7.000000:e/0/9.000000/1.000000/16.000000/7.000000:d/0/9.000000/1.000000/15.000000/8.000000:n/0/9.000000/1.000000/15.000000/7.000000:R/0/180/0
|
|
||||||
modellist:id=%alternator,state=facing:east,box=0.000000/0.000000/3.000000:16.000000/16.000000/13.000000:u90/0/1.500000/0.000000/6.500000/8.000000:s/0/8.000000/8.000000/16.000000/16.000000:w/0/1.500000/0.000000/6.500000/8.000000:e180/0/1.500000/0.000000/6.500000/8.000000:d270/0/1.500000/0.000000/6.500000/8.000000:n/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0,box=2.000000/2.000000/0.000000:14.000000/14.000000/14.000000:u/0/9.000000/0.000000/15.000000/7.000000:s/0/1.000000/9.000000/7.000000/15.000000:w/0/8.000000/1.000000/15.000000/7.000000:e/0/9.000000/1.000000/16.000000/7.000000:d/0/9.000000/1.000000/15.000000/8.000000:n/0/9.000000/1.000000/15.000000/7.000000:R/0/270/0
|
|
||||||
modellist:id=%alternator,state=facing:south,box=0.000000/0.000000/3.000000:16.000000/16.000000/13.000000:u90/0/1.500000/0.000000/6.500000/8.000000:s/0/8.000000/8.000000/16.000000/16.000000:w/0/1.500000/0.000000/6.500000/8.000000:e180/0/1.500000/0.000000/6.500000/8.000000:d270/0/1.500000/0.000000/6.500000/8.000000:n/0/8.000000/8.000000/16.000000/16.000000,box=2.000000/2.000000/0.000000:14.000000/14.000000/14.000000:u/0/9.000000/0.000000/15.000000/7.000000:s/0/1.000000/9.000000/7.000000/15.000000:w/0/8.000000/1.000000/15.000000/7.000000:e/0/9.000000/1.000000/16.000000/7.000000:d/0/9.000000/1.000000/15.000000/8.000000:n/0/9.000000/1.000000/15.000000/7.000000
|
|
||||||
modellist:id=%alternator,state=facing:west,box=0.000000/0.000000/3.000000:16.000000/16.000000/13.000000:u90/0/1.500000/0.000000/6.500000/8.000000:s/0/8.000000/8.000000/16.000000/16.000000:w/0/1.500000/0.000000/6.500000/8.000000:e180/0/1.500000/0.000000/6.500000/8.000000:d270/0/1.500000/0.000000/6.500000/8.000000:n/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0,box=2.000000/2.000000/0.000000:14.000000/14.000000/14.000000:u/0/9.000000/0.000000/15.000000/7.000000:s/0/1.000000/9.000000/7.000000/15.000000:w/0/8.000000/1.000000/15.000000/7.000000:e/0/9.000000/1.000000/16.000000/7.000000:d/0/9.000000/1.000000/15.000000/8.000000:n/0/9.000000/1.000000/15.000000/7.000000:R/0/90/0
|
|
||||||
modellist:id=%alternator,state=facing:up,box=0.000000/0.000000/3.000000:16.000000/16.000000/13.000000:u90/0/1.500000/0.000000/6.500000/8.000000:s/0/8.000000/8.000000/16.000000/16.000000:w/0/1.500000/0.000000/6.500000/8.000000:e180/0/1.500000/0.000000/6.500000/8.000000:d270/0/1.500000/0.000000/6.500000/8.000000:n/0/8.000000/8.000000/16.000000/16.000000:R/90/90/0,box=2.000000/2.000000/0.000000:14.000000/14.000000/14.000000:u/0/9.000000/0.000000/15.000000/7.000000:s/0/1.000000/9.000000/7.000000/15.000000:w/0/8.000000/1.000000/15.000000/7.000000:e/0/9.000000/1.000000/16.000000/7.000000:d/0/9.000000/1.000000/15.000000/8.000000:n/0/9.000000/1.000000/15.000000/7.000000:R/90/90/0
|
|
||||||
modellist:id=%alternator,state=facing:down,box=0.000000/0.000000/3.000000:16.000000/16.000000/13.000000:u90/0/1.500000/0.000000/6.500000/8.000000:s/0/8.000000/8.000000/16.000000/16.000000:w/0/1.500000/0.000000/6.500000/8.000000:e180/0/1.500000/0.000000/6.500000/8.000000:d270/0/1.500000/0.000000/6.500000/8.000000:n/0/8.000000/8.000000/16.000000/16.000000:R/270/90/0,box=2.000000/2.000000/0.000000:14.000000/14.000000/14.000000:u/0/9.000000/0.000000/15.000000/7.000000:s/0/1.000000/9.000000/7.000000/15.000000:w/0/8.000000/1.000000/15.000000/7.000000:e/0/9.000000/1.000000/16.000000/7.000000:d/0/9.000000/1.000000/15.000000/8.000000:n/0/9.000000/1.000000/15.000000/7.000000:R/270/90/0
|
|
||||||
modellist:id=%rolling_mill,state=facing:north,box=0.000000/0.000000/0.000000:16.000000/5.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/5.000000:w/1/0.000000/0.000000/16.000000/5.000000:e/1/0.000000/0.000000/16.000000/5.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/5.000000:R/0/270/0,box=2.000000/5.000000/2.000000:4.000000/16.000000/14.000000:u90/1/2.000000/3.000000/14.000000/5.000000:s/2/2.000000/0.000000/4.000000/11.000000:w/2/2.000000/0.000000/14.000000/11.000000:e/2/2.000000/0.000000/14.000000/11.000000:n/2/12.000000/0.000000/14.000000/11.000000:R/0/270/0,box=12.000000/5.000000/2.000000:14.000000/16.000000/14.000000:u270/1/2.000000/3.000000/14.000000/5.000000:s/2/12.000000/0.000000/14.000000/11.000000:w/2/2.000000/0.000000/14.000000/11.000000:e/2/2.000000/0.000000/14.000000/11.000000:n/2/2.000000/0.000000/4.000000/11.000000:R/0/270/0
|
|
||||||
modellist:id=%rolling_mill,state=facing:south,box=0.000000/0.000000/0.000000:16.000000/5.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/5.000000:w/1/0.000000/0.000000/16.000000/5.000000:e/1/0.000000/0.000000/16.000000/5.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/5.000000:R/0/90/0,box=2.000000/5.000000/2.000000:4.000000/16.000000/14.000000:u90/1/2.000000/3.000000/14.000000/5.000000:s/2/2.000000/0.000000/4.000000/11.000000:w/2/2.000000/0.000000/14.000000/11.000000:e/2/2.000000/0.000000/14.000000/11.000000:n/2/12.000000/0.000000/14.000000/11.000000:R/0/90/0,box=12.000000/5.000000/2.000000:14.000000/16.000000/14.000000:u270/1/2.000000/3.000000/14.000000/5.000000:s/2/12.000000/0.000000/14.000000/11.000000:w/2/2.000000/0.000000/14.000000/11.000000:e/2/2.000000/0.000000/14.000000/11.000000:n/2/2.000000/0.000000/4.000000/11.000000:R/0/90/0
|
|
||||||
modellist:id=%rolling_mill,state=facing:west,box=0.000000/0.000000/0.000000:16.000000/5.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/5.000000:w/1/0.000000/0.000000/16.000000/5.000000:e/1/0.000000/0.000000/16.000000/5.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/5.000000:R/0/180/0,box=2.000000/5.000000/2.000000:4.000000/16.000000/14.000000:u90/1/2.000000/3.000000/14.000000/5.000000:s/2/2.000000/0.000000/4.000000/11.000000:w/2/2.000000/0.000000/14.000000/11.000000:e/2/2.000000/0.000000/14.000000/11.000000:n/2/12.000000/0.000000/14.000000/11.000000:R/0/180/0,box=12.000000/5.000000/2.000000:14.000000/16.000000/14.000000:u270/1/2.000000/3.000000/14.000000/5.000000:s/2/12.000000/0.000000/14.000000/11.000000:w/2/2.000000/0.000000/14.000000/11.000000:e/2/2.000000/0.000000/14.000000/11.000000:n/2/2.000000/0.000000/4.000000/11.000000:R/0/180/0
|
|
||||||
modellist:id=%rolling_mill,state=facing:east,box=0.000000/0.000000/0.000000:16.000000/5.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/5.000000:w/1/0.000000/0.000000/16.000000/5.000000:e/1/0.000000/0.000000/16.000000/5.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/5.000000,box=2.000000/5.000000/2.000000:4.000000/16.000000/14.000000:u90/1/2.000000/3.000000/14.000000/5.000000:s/2/2.000000/0.000000/4.000000/11.000000:w/2/2.000000/0.000000/14.000000/11.000000:e/2/2.000000/0.000000/14.000000/11.000000:n/2/12.000000/0.000000/14.000000/11.000000,box=12.000000/5.000000/2.000000:14.000000/16.000000/14.000000:u270/1/2.000000/3.000000/14.000000/5.000000:s/2/12.000000/0.000000/14.000000/11.000000:w/2/2.000000/0.000000/14.000000/11.000000:e/2/2.000000/0.000000/14.000000/11.000000:n/2/2.000000/0.000000/4.000000/11.000000
|
|
||||||
modellist:id=%creative_energy,box=0.000000/2.000000/0.000000:16.000000/14.000000/16.000000:u/0/8.500000/8.500000/15.500000/15.500000:s/1/0.000000/3.000000/16.000000/15.000000:w/1/0.000000/3.000000/16.000000/15.000000:e/1/0.000000/3.000000/16.000000/15.000000:d/0/8.500000/8.500000/15.500000/15.500000:n/1/0.000000/3.000000/16.000000/15.000000,box=1.000000/0.000000/1.000000:15.000000/16.000000/15.000000:u/0/8.500000/8.500000/15.500000/15.500000:s/0/0.500000/8.500000/7.500000/15.500000:w/0/0.500000/8.500000/7.500000/15.500000:e/0/0.500000/8.500000/7.500000/15.500000:d/0/8.500000/8.500000/15.500000/15.500000:n/0/0.500000/8.500000/7.500000/15.500000
|
|
||||||
modellist:id=%connector,state=facing:north,box=7.000000/1.000000/7.000000:9.000000/5.000000/9.000000:u/0/1.500000/0.000000/2.000000/0.500000:s/0/1.000000/0.000000/1.500000/1.000000:w/0/0.500000/0.000000/1.000000/1.000000:e/0/1.500000/0.000000/2.000000/1.000000:d/0/1.500000/0.000000/2.000000/0.500000:n/0/0.000000/0.000000/0.500000/1.000000:R/90/180/0,box=6.000000/0.000000/6.000000:10.000000/2.000000/10.000000:u/0/1.000000/1.000000/2.000000/2.000000:s/0/1.000000/1.500000/2.000000/2.000000:w/0/1.000000/1.500000/2.000000/2.000000:e/0/1.000000/1.500000/2.000000/2.000000:d/0/1.000000/1.000000/2.000000/2.000000:n/0/1.000000/1.500000/2.000000/2.000000:R/90/180/0,box=6.000000/3.000000/6.000000:10.000000/4.000000/10.000000:u/0/0.000000/1.000000/1.000000/2.000000:s/0/0.000000/1.000000/1.000000/1.250000:w/0/0.000000/1.000000/1.000000/1.250000:e/0/0.000000/1.000000/1.000000/1.250000:d/0/0.000000/1.000000/1.000000/2.000000:n/0/0.000000/1.000000/1.000000/1.250000:R/90/180/0
|
|
||||||
modellist:id=%connector,state=facing:east,box=7.000000/1.000000/7.000000:9.000000/5.000000/9.000000:u/0/1.500000/0.000000/2.000000/0.500000:s/0/1.000000/0.000000/1.500000/1.000000:w/0/0.500000/0.000000/1.000000/1.000000:e/0/1.500000/0.000000/2.000000/1.000000:d/0/1.500000/0.000000/2.000000/0.500000:n/0/0.000000/0.000000/0.500000/1.000000:R/90/270/0,box=6.000000/0.000000/6.000000:10.000000/2.000000/10.000000:u/0/1.000000/1.000000/2.000000/2.000000:s/0/1.000000/1.500000/2.000000/2.000000:w/0/1.000000/1.500000/2.000000/2.000000:e/0/1.000000/1.500000/2.000000/2.000000:d/0/1.000000/1.000000/2.000000/2.000000:n/0/1.000000/1.500000/2.000000/2.000000:R/90/270/0,box=6.000000/3.000000/6.000000:10.000000/4.000000/10.000000:u/0/0.000000/1.000000/1.000000/2.000000:s/0/0.000000/1.000000/1.000000/1.250000:w/0/0.000000/1.000000/1.000000/1.250000:e/0/0.000000/1.000000/1.000000/1.250000:d/0/0.000000/1.000000/1.000000/2.000000:n/0/0.000000/1.000000/1.000000/1.250000:R/90/270/0
|
|
||||||
modellist:id=%connector,state=facing:south,box=7.000000/1.000000/7.000000:9.000000/5.000000/9.000000:u/0/1.500000/0.000000/2.000000/0.500000:s/0/1.000000/0.000000/1.500000/1.000000:w/0/0.500000/0.000000/1.000000/1.000000:e/0/1.500000/0.000000/2.000000/1.000000:d/0/1.500000/0.000000/2.000000/0.500000:n/0/0.000000/0.000000/0.500000/1.000000:R/90/0/0,box=6.000000/0.000000/6.000000:10.000000/2.000000/10.000000:u/0/1.000000/1.000000/2.000000/2.000000:s/0/1.000000/1.500000/2.000000/2.000000:w/0/1.000000/1.500000/2.000000/2.000000:e/0/1.000000/1.500000/2.000000/2.000000:d/0/1.000000/1.000000/2.000000/2.000000:n/0/1.000000/1.500000/2.000000/2.000000:R/90/0/0,box=6.000000/3.000000/6.000000:10.000000/4.000000/10.000000:u/0/0.000000/1.000000/1.000000/2.000000:s/0/0.000000/1.000000/1.000000/1.250000:w/0/0.000000/1.000000/1.000000/1.250000:e/0/0.000000/1.000000/1.000000/1.250000:d/0/0.000000/1.000000/1.000000/2.000000:n/0/0.000000/1.000000/1.000000/1.250000:R/90/0/0
|
|
||||||
modellist:id=%connector,state=facing:west,box=7.000000/1.000000/7.000000:9.000000/5.000000/9.000000:u/0/1.500000/0.000000/2.000000/0.500000:s/0/1.000000/0.000000/1.500000/1.000000:w/0/0.500000/0.000000/1.000000/1.000000:e/0/1.500000/0.000000/2.000000/1.000000:d/0/1.500000/0.000000/2.000000/0.500000:n/0/0.000000/0.000000/0.500000/1.000000:R/90/90/0,box=6.000000/0.000000/6.000000:10.000000/2.000000/10.000000:u/0/1.000000/1.000000/2.000000/2.000000:s/0/1.000000/1.500000/2.000000/2.000000:w/0/1.000000/1.500000/2.000000/2.000000:e/0/1.000000/1.500000/2.000000/2.000000:d/0/1.000000/1.000000/2.000000/2.000000:n/0/1.000000/1.500000/2.000000/2.000000:R/90/90/0,box=6.000000/3.000000/6.000000:10.000000/4.000000/10.000000:u/0/0.000000/1.000000/1.000000/2.000000:s/0/0.000000/1.000000/1.000000/1.250000:w/0/0.000000/1.000000/1.000000/1.250000:e/0/0.000000/1.000000/1.000000/1.250000:d/0/0.000000/1.000000/1.000000/2.000000:n/0/0.000000/1.000000/1.000000/1.250000:R/90/90/0
|
|
||||||
modellist:id=%connector,state=facing:up,box=7.000000/1.000000/7.000000:9.000000/5.000000/9.000000:u/0/1.500000/0.000000/2.000000/0.500000:s/0/1.000000/0.000000/1.500000/1.000000:w/0/0.500000/0.000000/1.000000/1.000000:e/0/1.500000/0.000000/2.000000/1.000000:d/0/1.500000/0.000000/2.000000/0.500000:n/0/0.000000/0.000000/0.500000/1.000000:R/180/90/0,box=6.000000/0.000000/6.000000:10.000000/2.000000/10.000000:u/0/1.000000/1.000000/2.000000/2.000000:s/0/1.000000/1.500000/2.000000/2.000000:w/0/1.000000/1.500000/2.000000/2.000000:e/0/1.000000/1.500000/2.000000/2.000000:d/0/1.000000/1.000000/2.000000/2.000000:n/0/1.000000/1.500000/2.000000/2.000000:R/180/90/0,box=6.000000/3.000000/6.000000:10.000000/4.000000/10.000000:u/0/0.000000/1.000000/1.000000/2.000000:s/0/0.000000/1.000000/1.000000/1.250000:w/0/0.000000/1.000000/1.000000/1.250000:e/0/0.000000/1.000000/1.000000/1.250000:d/0/0.000000/1.000000/1.000000/2.000000:n/0/0.000000/1.000000/1.000000/1.250000:R/180/90/0
|
|
||||||
modellist:id=%connector,state=facing:down,box=7.000000/1.000000/7.000000:9.000000/5.000000/9.000000:u/0/1.500000/0.000000/2.000000/0.500000:s/0/1.000000/0.000000/1.500000/1.000000:w/0/0.500000/0.000000/1.000000/1.000000:e/0/1.500000/0.000000/2.000000/1.000000:d/0/1.500000/0.000000/2.000000/0.500000:n/0/0.000000/0.000000/0.500000/1.000000:R/0/90/0,box=6.000000/0.000000/6.000000:10.000000/2.000000/10.000000:u/0/1.000000/1.000000/2.000000/2.000000:s/0/1.000000/1.500000/2.000000/2.000000:w/0/1.000000/1.500000/2.000000/2.000000:e/0/1.000000/1.500000/2.000000/2.000000:d/0/1.000000/1.000000/2.000000/2.000000:n/0/1.000000/1.500000/2.000000/2.000000:R/0/90/0,box=6.000000/3.000000/6.000000:10.000000/4.000000/10.000000:u/0/0.000000/1.000000/1.000000/2.000000:s/0/0.000000/1.000000/1.000000/1.250000:w/0/0.000000/1.000000/1.000000/1.250000:e/0/0.000000/1.000000/1.000000/1.250000:d/0/0.000000/1.000000/1.000000/2.000000:n/0/0.000000/1.000000/1.000000/1.250000:R/0/90/0
|
|
||||||
modellist:id=%accumulator,state=facing:north,box=0.000000/0.000000/0.000000:16.000000/12.000000/16.000000:u/0/8.000000/0.000000/12.000000/4.000000:s/0/0.000000/5.000000/4.000000/8.000000:w/0/0.000000/5.000000/4.000000/8.000000:e/0/0.000000/5.000000/4.000000/8.000000:d/0/8.000000/4.000000/12.000000/8.000000:n/0/0.000000/5.000000/4.000000/8.000000:R/0/90/0,box=12.000000/13.000000/7.000000:14.000000/17.000000/9.000000:u/1/2.000000/0.000000/4.000000/2.000000:s/1/2.000000/0.000000/4.000000/4.000000:w/1/4.000000/0.000000/6.000000/4.000000:e/1/6.000000/0.000000/8.000000/4.000000:d/1/0.000000/0.000000/2.000000/2.000000:n/1/0.000000/0.000000/2.000000/4.000000:R/0/90/0,box=2.000000/13.000000/7.000000:4.000000/17.000000/9.000000:u/1/2.000000/0.000000/4.000000/2.000000:s/1/2.000000/0.000000/4.000000/4.000000:w/1/4.000000/0.000000/6.000000/4.000000:e/1/6.000000/0.000000/8.000000/4.000000:d/1/0.000000/0.000000/2.000000/2.000000:n/1/0.000000/0.000000/2.000000/4.000000:R/0/90/0,box=11.000000/12.000000/6.000000:15.000000/14.000000/10.000000:u/1/8.000000/8.000000/12.000000/12.000000:s/1/8.000000/4.000000/12.000000/6.000000:w/1/12.000000/4.000000/16.000000/6.000000:e/1/12.000000/4.000000/16.000000/6.000000:n/1/8.000000/4.000000/12.000000/6.000000:R/0/90/0,box=1.000000/12.000000/6.000000:5.000000/14.000000/10.000000:u/1/4.000000/8.000000/8.000000/12.000000:s/1/4.000000/4.000000/8.000000/6.000000:w/1/4.000000/4.000000/8.000000/6.000000:e/1/0.000000/4.000000/4.000000/6.000000:n/1/0.000000/4.000000/4.000000/6.000000:R/0/90/0,box=11.000000/15.000000/6.000000:15.000000/16.000000/10.000000:u/1/0.000000/8.000000/4.000000/12.000000:s/1/0.000000/8.000000/4.000000/9.000000:w/1/0.000000/8.000000/4.000000/9.000000:e/1/0.000000/8.000000/4.000000/9.000000:d/1/0.000000/8.000000/4.000000/12.000000:n/1/0.000000/8.000000/4.000000/9.000000:R/0/90/0,box=1.000000/15.000000/6.000000:5.000000/16.000000/10.000000:u/1/0.000000/8.000000/4.000000/12.000000:s/1/0.000000/8.000000/4.000000/9.000000:w/1/0.000000/8.000000/4.000000/9.000000:e/1/0.000000/8.000000/4.000000/9.000000:d/1/0.000000/8.000000/4.000000/12.000000:n/1/0.000000/8.000000/4.000000/9.000000:R/0/90/0
|
|
||||||
modellist:id=%accumulator,state=facing:south,box=0.000000/0.000000/0.000000:16.000000/12.000000/16.000000:u/0/8.000000/0.000000/12.000000/4.000000:s/0/0.000000/5.000000/4.000000/8.000000:w/0/0.000000/5.000000/4.000000/8.000000:e/0/0.000000/5.000000/4.000000/8.000000:d/0/8.000000/4.000000/12.000000/8.000000:n/0/0.000000/5.000000/4.000000/8.000000:R/0/270/0,box=12.000000/13.000000/7.000000:14.000000/17.000000/9.000000:u/1/2.000000/0.000000/4.000000/2.000000:s/1/2.000000/0.000000/4.000000/4.000000:w/1/4.000000/0.000000/6.000000/4.000000:e/1/6.000000/0.000000/8.000000/4.000000:d/1/0.000000/0.000000/2.000000/2.000000:n/1/0.000000/0.000000/2.000000/4.000000:R/0/270/0,box=2.000000/13.000000/7.000000:4.000000/17.000000/9.000000:u/1/2.000000/0.000000/4.000000/2.000000:s/1/2.000000/0.000000/4.000000/4.000000:w/1/4.000000/0.000000/6.000000/4.000000:e/1/6.000000/0.000000/8.000000/4.000000:d/1/0.000000/0.000000/2.000000/2.000000:n/1/0.000000/0.000000/2.000000/4.000000:R/0/270/0,box=11.000000/12.000000/6.000000:15.000000/14.000000/10.000000:u/1/8.000000/8.000000/12.000000/12.000000:s/1/8.000000/4.000000/12.000000/6.000000:w/1/12.000000/4.000000/16.000000/6.000000:e/1/12.000000/4.000000/16.000000/6.000000:n/1/8.000000/4.000000/12.000000/6.000000:R/0/270/0,box=1.000000/12.000000/6.000000:5.000000/14.000000/10.000000:u/1/4.000000/8.000000/8.000000/12.000000:s/1/4.000000/4.000000/8.000000/6.000000:w/1/4.000000/4.000000/8.000000/6.000000:e/1/0.000000/4.000000/4.000000/6.000000:n/1/0.000000/4.000000/4.000000/6.000000:R/0/270/0,box=11.000000/15.000000/6.000000:15.000000/16.000000/10.000000:u/1/0.000000/8.000000/4.000000/12.000000:s/1/0.000000/8.000000/4.000000/9.000000:w/1/0.000000/8.000000/4.000000/9.000000:e/1/0.000000/8.000000/4.000000/9.000000:d/1/0.000000/8.000000/4.000000/12.000000:n/1/0.000000/8.000000/4.000000/9.000000:R/0/270/0,box=1.000000/15.000000/6.000000:5.000000/16.000000/10.000000:u/1/0.000000/8.000000/4.000000/12.000000:s/1/0.000000/8.000000/4.000000/9.000000:w/1/0.000000/8.000000/4.000000/9.000000:e/1/0.000000/8.000000/4.000000/9.000000:d/1/0.000000/8.000000/4.000000/12.000000:n/1/0.000000/8.000000/4.000000/9.000000:R/0/270/0
|
|
||||||
modellist:id=%accumulator,state=facing:west,box=0.000000/0.000000/0.000000:16.000000/12.000000/16.000000:u/0/8.000000/0.000000/12.000000/4.000000:s/0/0.000000/5.000000/4.000000/8.000000:w/0/0.000000/5.000000/4.000000/8.000000:e/0/0.000000/5.000000/4.000000/8.000000:d/0/8.000000/4.000000/12.000000/8.000000:n/0/0.000000/5.000000/4.000000/8.000000,box=12.000000/13.000000/7.000000:14.000000/17.000000/9.000000:u/1/2.000000/0.000000/4.000000/2.000000:s/1/2.000000/0.000000/4.000000/4.000000:w/1/4.000000/0.000000/6.000000/4.000000:e/1/6.000000/0.000000/8.000000/4.000000:d/1/0.000000/0.000000/2.000000/2.000000:n/1/0.000000/0.000000/2.000000/4.000000,box=2.000000/13.000000/7.000000:4.000000/17.000000/9.000000:u/1/2.000000/0.000000/4.000000/2.000000:s/1/2.000000/0.000000/4.000000/4.000000:w/1/4.000000/0.000000/6.000000/4.000000:e/1/6.000000/0.000000/8.000000/4.000000:d/1/0.000000/0.000000/2.000000/2.000000:n/1/0.000000/0.000000/2.000000/4.000000,box=11.000000/12.000000/6.000000:15.000000/14.000000/10.000000:u/1/8.000000/8.000000/12.000000/12.000000:s/1/8.000000/4.000000/12.000000/6.000000:w/1/12.000000/4.000000/16.000000/6.000000:e/1/12.000000/4.000000/16.000000/6.000000:n/1/8.000000/4.000000/12.000000/6.000000,box=1.000000/12.000000/6.000000:5.000000/14.000000/10.000000:u/1/4.000000/8.000000/8.000000/12.000000:s/1/4.000000/4.000000/8.000000/6.000000:w/1/4.000000/4.000000/8.000000/6.000000:e/1/0.000000/4.000000/4.000000/6.000000:n/1/0.000000/4.000000/4.000000/6.000000,box=11.000000/15.000000/6.000000:15.000000/16.000000/10.000000:u/1/0.000000/8.000000/4.000000/12.000000:s/1/0.000000/8.000000/4.000000/9.000000:w/1/0.000000/8.000000/4.000000/9.000000:e/1/0.000000/8.000000/4.000000/9.000000:d/1/0.000000/8.000000/4.000000/12.000000:n/1/0.000000/8.000000/4.000000/9.000000,box=1.000000/15.000000/6.000000:5.000000/16.000000/10.000000:u/1/0.000000/8.000000/4.000000/12.000000:s/1/0.000000/8.000000/4.000000/9.000000:w/1/0.000000/8.000000/4.000000/9.000000:e/1/0.000000/8.000000/4.000000/9.000000:d/1/0.000000/8.000000/4.000000/12.000000:n/1/0.000000/8.000000/4.000000/9.000000
|
|
||||||
modellist:id=%accumulator,state=facing:east,box=0.000000/0.000000/0.000000:16.000000/12.000000/16.000000:u/0/8.000000/0.000000/12.000000/4.000000:s/0/0.000000/5.000000/4.000000/8.000000:w/0/0.000000/5.000000/4.000000/8.000000:e/0/0.000000/5.000000/4.000000/8.000000:d/0/8.000000/4.000000/12.000000/8.000000:n/0/0.000000/5.000000/4.000000/8.000000:R/0/180/0,box=12.000000/13.000000/7.000000:14.000000/17.000000/9.000000:u/1/2.000000/0.000000/4.000000/2.000000:s/1/2.000000/0.000000/4.000000/4.000000:w/1/4.000000/0.000000/6.000000/4.000000:e/1/6.000000/0.000000/8.000000/4.000000:d/1/0.000000/0.000000/2.000000/2.000000:n/1/0.000000/0.000000/2.000000/4.000000:R/0/180/0,box=2.000000/13.000000/7.000000:4.000000/17.000000/9.000000:u/1/2.000000/0.000000/4.000000/2.000000:s/1/2.000000/0.000000/4.000000/4.000000:w/1/4.000000/0.000000/6.000000/4.000000:e/1/6.000000/0.000000/8.000000/4.000000:d/1/0.000000/0.000000/2.000000/2.000000:n/1/0.000000/0.000000/2.000000/4.000000:R/0/180/0,box=11.000000/12.000000/6.000000:15.000000/14.000000/10.000000:u/1/8.000000/8.000000/12.000000/12.000000:s/1/8.000000/4.000000/12.000000/6.000000:w/1/12.000000/4.000000/16.000000/6.000000:e/1/12.000000/4.000000/16.000000/6.000000:n/1/8.000000/4.000000/12.000000/6.000000:R/0/180/0,box=1.000000/12.000000/6.000000:5.000000/14.000000/10.000000:u/1/4.000000/8.000000/8.000000/12.000000:s/1/4.000000/4.000000/8.000000/6.000000:w/1/4.000000/4.000000/8.000000/6.000000:e/1/0.000000/4.000000/4.000000/6.000000:n/1/0.000000/4.000000/4.000000/6.000000:R/0/180/0,box=11.000000/15.000000/6.000000:15.000000/16.000000/10.000000:u/1/0.000000/8.000000/4.000000/12.000000:s/1/0.000000/8.000000/4.000000/9.000000:w/1/0.000000/8.000000/4.000000/9.000000:e/1/0.000000/8.000000/4.000000/9.000000:d/1/0.000000/8.000000/4.000000/12.000000:n/1/0.000000/8.000000/4.000000/9.000000:R/0/180/0,box=1.000000/15.000000/6.000000:5.000000/16.000000/10.000000:u/1/0.000000/8.000000/4.000000/12.000000:s/1/0.000000/8.000000/4.000000/9.000000:w/1/0.000000/8.000000/4.000000/9.000000:e/1/0.000000/8.000000/4.000000/9.000000:d/1/0.000000/8.000000/4.000000/12.000000:n/1/0.000000/8.000000/4.000000/9.000000:R/0/180/0
|
|
||||||
modellist:id=%heater,state=facing:north,box=4.000000/2.000000/4.000000:12.000000/13.000000/12.000000:u/0/11.500000/11.500000/15.500000/15.500000:s/0/6.000000/9.500000/10.000000/15.000000:w/0/6.000000/9.500000/10.000000/15.000000:e/0/6.000000/9.500000/10.000000/15.000000:n/0/6.000000/9.500000/10.000000/15.000000:R/90/180/0,box=3.000000/0.000000/3.000000:13.000000/2.000000/13.000000:u/0/11.000000/11.000000/16.000000/16.000000:s/0/5.500000/15.000000/10.500000/16.000000:w/0/5.500000/15.000000/10.500000/16.000000:e/0/5.500000/15.000000/10.500000/16.000000:d/0/11.000000/6.000000/16.000000/11.000000:n/0/5.500000/15.000000/10.500000/16.000000:R/90/180/0,box=5.000000/13.000000/5.000000:11.000000/16.000000/11.000000:u/0/0.000000/11.500000/3.000000/14.500000:s/0/0.000000/14.500000/3.000000/16.000000:w/0/0.000000/14.500000/3.000000/16.000000:e/0/0.000000/14.500000/3.000000/16.000000:n/0/0.000000/14.500000/3.000000/16.000000:R/90/180/0,box=3.000000/3.000000/3.000000:13.000000/7.000000/13.000000:u90/0/0.000000/2.000000/5.000000/7.000000:s/0/5.000000/0.000000/10.000000/2.000000:w/0/0.000000/0.000000/5.000000/2.000000:e/0/0.000000/0.000000/5.000000/2.000000:d90/0/5.000000/2.000000/10.000000/7.000000:n/0/5.000000/0.000000/10.000000/2.000000:R/90/180/0,box=3.000000/8.000000/3.000000:13.000000/12.000000/13.000000:u90/0/0.000000/2.000000/5.000000/7.000000:s/0/5.000000/0.000000/10.000000/2.000000:w/0/0.000000/0.000000/5.000000/2.000000:e/0/0.000000/0.000000/5.000000/2.000000:d90/0/5.000000/2.000000/10.000000/7.000000:n/0/5.000000/0.000000/10.000000/2.000000:R/90/180/0
|
|
||||||
modellist:id=%heater,state=facing:east,box=4.000000/2.000000/4.000000:12.000000/13.000000/12.000000:u/0/11.500000/11.500000/15.500000/15.500000:s/0/6.000000/9.500000/10.000000/15.000000:w/0/6.000000/9.500000/10.000000/15.000000:e/0/6.000000/9.500000/10.000000/15.000000:n/0/6.000000/9.500000/10.000000/15.000000:R/90/270/0,box=3.000000/0.000000/3.000000:13.000000/2.000000/13.000000:u/0/11.000000/11.000000/16.000000/16.000000:s/0/5.500000/15.000000/10.500000/16.000000:w/0/5.500000/15.000000/10.500000/16.000000:e/0/5.500000/15.000000/10.500000/16.000000:d/0/11.000000/6.000000/16.000000/11.000000:n/0/5.500000/15.000000/10.500000/16.000000:R/90/270/0,box=5.000000/13.000000/5.000000:11.000000/16.000000/11.000000:u/0/0.000000/11.500000/3.000000/14.500000:s/0/0.000000/14.500000/3.000000/16.000000:w/0/0.000000/14.500000/3.000000/16.000000:e/0/0.000000/14.500000/3.000000/16.000000:n/0/0.000000/14.500000/3.000000/16.000000:R/90/270/0,box=3.000000/3.000000/3.000000:13.000000/7.000000/13.000000:u90/0/0.000000/2.000000/5.000000/7.000000:s/0/5.000000/0.000000/10.000000/2.000000:w/0/0.000000/0.000000/5.000000/2.000000:e/0/0.000000/0.000000/5.000000/2.000000:d90/0/5.000000/2.000000/10.000000/7.000000:n/0/5.000000/0.000000/10.000000/2.000000:R/90/270/0,box=3.000000/8.000000/3.000000:13.000000/12.000000/13.000000:u90/0/0.000000/2.000000/5.000000/7.000000:s/0/5.000000/0.000000/10.000000/2.000000:w/0/0.000000/0.000000/5.000000/2.000000:e/0/0.000000/0.000000/5.000000/2.000000:d90/0/5.000000/2.000000/10.000000/7.000000:n/0/5.000000/0.000000/10.000000/2.000000:R/90/270/0
|
|
||||||
modellist:id=%heater,state=facing:south,box=4.000000/2.000000/4.000000:12.000000/13.000000/12.000000:u/0/11.500000/11.500000/15.500000/15.500000:s/0/6.000000/9.500000/10.000000/15.000000:w/0/6.000000/9.500000/10.000000/15.000000:e/0/6.000000/9.500000/10.000000/15.000000:n/0/6.000000/9.500000/10.000000/15.000000:R/90/0/0,box=3.000000/0.000000/3.000000:13.000000/2.000000/13.000000:u/0/11.000000/11.000000/16.000000/16.000000:s/0/5.500000/15.000000/10.500000/16.000000:w/0/5.500000/15.000000/10.500000/16.000000:e/0/5.500000/15.000000/10.500000/16.000000:d/0/11.000000/6.000000/16.000000/11.000000:n/0/5.500000/15.000000/10.500000/16.000000:R/90/0/0,box=5.000000/13.000000/5.000000:11.000000/16.000000/11.000000:u/0/0.000000/11.500000/3.000000/14.500000:s/0/0.000000/14.500000/3.000000/16.000000:w/0/0.000000/14.500000/3.000000/16.000000:e/0/0.000000/14.500000/3.000000/16.000000:n/0/0.000000/14.500000/3.000000/16.000000:R/90/0/0,box=3.000000/3.000000/3.000000:13.000000/7.000000/13.000000:u90/0/0.000000/2.000000/5.000000/7.000000:s/0/5.000000/0.000000/10.000000/2.000000:w/0/0.000000/0.000000/5.000000/2.000000:e/0/0.000000/0.000000/5.000000/2.000000:d90/0/5.000000/2.000000/10.000000/7.000000:n/0/5.000000/0.000000/10.000000/2.000000:R/90/0/0,box=3.000000/8.000000/3.000000:13.000000/12.000000/13.000000:u90/0/0.000000/2.000000/5.000000/7.000000:s/0/5.000000/0.000000/10.000000/2.000000:w/0/0.000000/0.000000/5.000000/2.000000:e/0/0.000000/0.000000/5.000000/2.000000:d90/0/5.000000/2.000000/10.000000/7.000000:n/0/5.000000/0.000000/10.000000/2.000000:R/90/0/0
|
|
||||||
modellist:id=%heater,state=facing:west,box=4.000000/2.000000/4.000000:12.000000/13.000000/12.000000:u/0/11.500000/11.500000/15.500000/15.500000:s/0/6.000000/9.500000/10.000000/15.000000:w/0/6.000000/9.500000/10.000000/15.000000:e/0/6.000000/9.500000/10.000000/15.000000:n/0/6.000000/9.500000/10.000000/15.000000:R/90/90/0,box=3.000000/0.000000/3.000000:13.000000/2.000000/13.000000:u/0/11.000000/11.000000/16.000000/16.000000:s/0/5.500000/15.000000/10.500000/16.000000:w/0/5.500000/15.000000/10.500000/16.000000:e/0/5.500000/15.000000/10.500000/16.000000:d/0/11.000000/6.000000/16.000000/11.000000:n/0/5.500000/15.000000/10.500000/16.000000:R/90/90/0,box=5.000000/13.000000/5.000000:11.000000/16.000000/11.000000:u/0/0.000000/11.500000/3.000000/14.500000:s/0/0.000000/14.500000/3.000000/16.000000:w/0/0.000000/14.500000/3.000000/16.000000:e/0/0.000000/14.500000/3.000000/16.000000:n/0/0.000000/14.500000/3.000000/16.000000:R/90/90/0,box=3.000000/3.000000/3.000000:13.000000/7.000000/13.000000:u90/0/0.000000/2.000000/5.000000/7.000000:s/0/5.000000/0.000000/10.000000/2.000000:w/0/0.000000/0.000000/5.000000/2.000000:e/0/0.000000/0.000000/5.000000/2.000000:d90/0/5.000000/2.000000/10.000000/7.000000:n/0/5.000000/0.000000/10.000000/2.000000:R/90/90/0,box=3.000000/8.000000/3.000000:13.000000/12.000000/13.000000:u90/0/0.000000/2.000000/5.000000/7.000000:s/0/5.000000/0.000000/10.000000/2.000000:w/0/0.000000/0.000000/5.000000/2.000000:e/0/0.000000/0.000000/5.000000/2.000000:d90/0/5.000000/2.000000/10.000000/7.000000:n/0/5.000000/0.000000/10.000000/2.000000:R/90/90/0
|
|
||||||
modellist:id=%heater,state=facing:up,box=4.000000/2.000000/4.000000:12.000000/13.000000/12.000000:u/0/11.500000/11.500000/15.500000/15.500000:s/0/6.000000/9.500000/10.000000/15.000000:w/0/6.000000/9.500000/10.000000/15.000000:e/0/6.000000/9.500000/10.000000/15.000000:n/0/6.000000/9.500000/10.000000/15.000000:R/180/90/0,box=3.000000/0.000000/3.000000:13.000000/2.000000/13.000000:u/0/11.000000/11.000000/16.000000/16.000000:s/0/5.500000/15.000000/10.500000/16.000000:w/0/5.500000/15.000000/10.500000/16.000000:e/0/5.500000/15.000000/10.500000/16.000000:d/0/11.000000/6.000000/16.000000/11.000000:n/0/5.500000/15.000000/10.500000/16.000000:R/180/90/0,box=5.000000/13.000000/5.000000:11.000000/16.000000/11.000000:u/0/0.000000/11.500000/3.000000/14.500000:s/0/0.000000/14.500000/3.000000/16.000000:w/0/0.000000/14.500000/3.000000/16.000000:e/0/0.000000/14.500000/3.000000/16.000000:n/0/0.000000/14.500000/3.000000/16.000000:R/180/90/0,box=3.000000/3.000000/3.000000:13.000000/7.000000/13.000000:u90/0/0.000000/2.000000/5.000000/7.000000:s/0/5.000000/0.000000/10.000000/2.000000:w/0/0.000000/0.000000/5.000000/2.000000:e/0/0.000000/0.000000/5.000000/2.000000:d90/0/5.000000/2.000000/10.000000/7.000000:n/0/5.000000/0.000000/10.000000/2.000000:R/180/90/0,box=3.000000/8.000000/3.000000:13.000000/12.000000/13.000000:u90/0/0.000000/2.000000/5.000000/7.000000:s/0/5.000000/0.000000/10.000000/2.000000:w/0/0.000000/0.000000/5.000000/2.000000:e/0/0.000000/0.000000/5.000000/2.000000:d90/0/5.000000/2.000000/10.000000/7.000000:n/0/5.000000/0.000000/10.000000/2.000000:R/180/90/0
|
|
||||||
modellist:id=%heater,state=facing:down,box=4.000000/2.000000/4.000000:12.000000/13.000000/12.000000:u/0/11.500000/11.500000/15.500000/15.500000:s/0/6.000000/9.500000/10.000000/15.000000:w/0/6.000000/9.500000/10.000000/15.000000:e/0/6.000000/9.500000/10.000000/15.000000:n/0/6.000000/9.500000/10.000000/15.000000:R/0/90/0,box=3.000000/0.000000/3.000000:13.000000/2.000000/13.000000:u/0/11.000000/11.000000/16.000000/16.000000:s/0/5.500000/15.000000/10.500000/16.000000:w/0/5.500000/15.000000/10.500000/16.000000:e/0/5.500000/15.000000/10.500000/16.000000:d/0/11.000000/6.000000/16.000000/11.000000:n/0/5.500000/15.000000/10.500000/16.000000:R/0/90/0,box=5.000000/13.000000/5.000000:11.000000/16.000000/11.000000:u/0/0.000000/11.500000/3.000000/14.500000:s/0/0.000000/14.500000/3.000000/16.000000:w/0/0.000000/14.500000/3.000000/16.000000:e/0/0.000000/14.500000/3.000000/16.000000:n/0/0.000000/14.500000/3.000000/16.000000:R/0/90/0,box=3.000000/3.000000/3.000000:13.000000/7.000000/13.000000:u90/0/0.000000/2.000000/5.000000/7.000000:s/0/5.000000/0.000000/10.000000/2.000000:w/0/0.000000/0.000000/5.000000/2.000000:e/0/0.000000/0.000000/5.000000/2.000000:d90/0/5.000000/2.000000/10.000000/7.000000:n/0/5.000000/0.000000/10.000000/2.000000:R/0/90/0,box=3.000000/8.000000/3.000000:13.000000/12.000000/13.000000:u90/0/0.000000/2.000000/5.000000/7.000000:s/0/5.000000/0.000000/10.000000/2.000000:w/0/0.000000/0.000000/5.000000/2.000000:e/0/0.000000/0.000000/5.000000/2.000000:d90/0/5.000000/2.000000/10.000000/7.000000:n/0/5.000000/0.000000/10.000000/2.000000:R/0/90/0
|
|
||||||
modellist:id=%redstone_relay,state=facing:north/vertical:true/powered:true,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/9.000000/16.000000/11.000000:w/0/0.000000/5.000000/16.000000/7.000000:e/0/0.000000/5.000000/16.000000/7.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/9.000000/16.000000/11.000000:R/90/180/0,box=2.000000/3.000000/7.000000:4.000000/7.000000/9.000000:u/2/2.000000/0.000000/4.000000/2.000000:s/2/2.000000/0.000000/4.000000/4.000000:w/2/4.000000/0.000000/6.000000/4.000000:e/2/6.000000/0.000000/8.000000/4.000000:d/2/0.000000/0.000000/2.000000/2.000000:n/2/0.000000/0.000000/2.000000/4.000000:R/90/180/0,box=12.000000/3.000000/7.000000:14.000000/7.000000/9.000000:u/2/2.000000/0.000000/4.000000/2.000000:s/2/2.000000/0.000000/4.000000/4.000000:w/2/4.000000/0.000000/6.000000/4.000000:e/2/6.000000/0.000000/8.000000/4.000000:d/2/0.000000/0.000000/2.000000/2.000000:n/2/0.000000/0.000000/2.000000/4.000000:R/90/180/0,box=1.000000/2.000000/6.000000:5.000000/4.000000/10.000000:u/2/8.000000/8.000000/12.000000/12.000000:s/2/8.000000/4.000000/12.000000/6.000000:w/2/12.000000/4.000000/16.000000/6.000000:e/2/12.000000/4.000000/16.000000/6.000000:n/2/8.000000/4.000000/12.000000/6.000000:R/90/180/0,box=11.000000/2.000000/6.000000:15.000000/4.000000/10.000000:u/2/4.000000/8.000000/8.000000/12.000000:s/2/4.000000/4.000000/8.000000/6.000000:w/2/4.000000/4.000000/8.000000/6.000000:e/2/0.000000/4.000000/4.000000/6.000000:n/2/0.000000/4.000000/4.000000/6.000000:R/90/180/0,box=1.000000/5.000000/6.000000:5.000000/6.000000/10.000000:u/2/0.000000/8.000000/4.000000/12.000000:s/2/0.000000/8.000000/4.000000/9.000000:w/2/0.000000/8.000000/4.000000/9.000000:e/2/0.000000/8.000000/4.000000/9.000000:d/2/0.000000/8.000000/4.000000/12.000000:n/2/0.000000/8.000000/4.000000/9.000000:R/90/180/0,box=11.000000/5.000000/6.000000:15.000000/6.000000/10.000000:u/2/0.000000/8.000000/4.000000/12.000000:s/2/0.000000/8.000000/4.000000/9.000000:w/2/0.000000/8.000000/4.000000/9.000000:e/2/0.000000/8.000000/4.000000/9.000000:d/2/0.000000/8.000000/4.000000/12.000000:n/2/0.000000/8.000000/4.000000/9.000000:R/90/180/0
|
|
||||||
modellist:id=%redstone_relay,state=facing:north/vertical:false/powered:true,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/9.000000/16.000000/11.000000:w/0/0.000000/5.000000/16.000000/7.000000:e/0/0.000000/5.000000/16.000000/7.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/9.000000/16.000000/11.000000:R/0/270/0,box=2.000000/3.000000/7.000000:4.000000/7.000000/9.000000:u/2/2.000000/0.000000/4.000000/2.000000:s/2/2.000000/0.000000/4.000000/4.000000:w/2/4.000000/0.000000/6.000000/4.000000:e/2/6.000000/0.000000/8.000000/4.000000:d/2/0.000000/0.000000/2.000000/2.000000:n/2/0.000000/0.000000/2.000000/4.000000:R/0/270/0,box=12.000000/3.000000/7.000000:14.000000/7.000000/9.000000:u/2/2.000000/0.000000/4.000000/2.000000:s/2/2.000000/0.000000/4.000000/4.000000:w/2/4.000000/0.000000/6.000000/4.000000:e/2/6.000000/0.000000/8.000000/4.000000:d/2/0.000000/0.000000/2.000000/2.000000:n/2/0.000000/0.000000/2.000000/4.000000:R/0/270/0,box=1.000000/2.000000/6.000000:5.000000/4.000000/10.000000:u/2/8.000000/8.000000/12.000000/12.000000:s/2/8.000000/4.000000/12.000000/6.000000:w/2/12.000000/4.000000/16.000000/6.000000:e/2/12.000000/4.000000/16.000000/6.000000:n/2/8.000000/4.000000/12.000000/6.000000:R/0/270/0,box=11.000000/2.000000/6.000000:15.000000/4.000000/10.000000:u/2/4.000000/8.000000/8.000000/12.000000:s/2/4.000000/4.000000/8.000000/6.000000:w/2/4.000000/4.000000/8.000000/6.000000:e/2/0.000000/4.000000/4.000000/6.000000:n/2/0.000000/4.000000/4.000000/6.000000:R/0/270/0,box=1.000000/5.000000/6.000000:5.000000/6.000000/10.000000:u/2/0.000000/8.000000/4.000000/12.000000:s/2/0.000000/8.000000/4.000000/9.000000:w/2/0.000000/8.000000/4.000000/9.000000:e/2/0.000000/8.000000/4.000000/9.000000:d/2/0.000000/8.000000/4.000000/12.000000:n/2/0.000000/8.000000/4.000000/9.000000:R/0/270/0,box=11.000000/5.000000/6.000000:15.000000/6.000000/10.000000:u/2/0.000000/8.000000/4.000000/12.000000:s/2/0.000000/8.000000/4.000000/9.000000:w/2/0.000000/8.000000/4.000000/9.000000:e/2/0.000000/8.000000/4.000000/9.000000:d/2/0.000000/8.000000/4.000000/12.000000:n/2/0.000000/8.000000/4.000000/9.000000:R/0/270/0
|
|
||||||
modellist:id=%redstone_relay,state=facing:north/vertical:true/powered:false,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/9.000000/16.000000/11.000000:w/0/0.000000/5.000000/16.000000/7.000000:e/0/0.000000/5.000000/16.000000/7.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/9.000000/16.000000/11.000000:R/90/180/0,box=2.000000/3.000000/7.000000:4.000000/7.000000/9.000000:u/2/2.000000/0.000000/4.000000/2.000000:s/2/2.000000/0.000000/4.000000/4.000000:w/2/4.000000/0.000000/6.000000/4.000000:e/2/6.000000/0.000000/8.000000/4.000000:d/2/0.000000/0.000000/2.000000/2.000000:n/2/0.000000/0.000000/2.000000/4.000000:R/90/180/0,box=12.000000/3.000000/7.000000:14.000000/7.000000/9.000000:u/2/2.000000/0.000000/4.000000/2.000000:s/2/2.000000/0.000000/4.000000/4.000000:w/2/4.000000/0.000000/6.000000/4.000000:e/2/6.000000/0.000000/8.000000/4.000000:d/2/0.000000/0.000000/2.000000/2.000000:n/2/0.000000/0.000000/2.000000/4.000000:R/90/180/0,box=1.000000/2.000000/6.000000:5.000000/4.000000/10.000000:u/2/8.000000/8.000000/12.000000/12.000000:s/2/8.000000/4.000000/12.000000/6.000000:w/2/12.000000/4.000000/16.000000/6.000000:e/2/12.000000/4.000000/16.000000/6.000000:n/2/8.000000/4.000000/12.000000/6.000000:R/90/180/0,box=11.000000/2.000000/6.000000:15.000000/4.000000/10.000000:u/2/4.000000/8.000000/8.000000/12.000000:s/2/4.000000/4.000000/8.000000/6.000000:w/2/4.000000/4.000000/8.000000/6.000000:e/2/0.000000/4.000000/4.000000/6.000000:n/2/0.000000/4.000000/4.000000/6.000000:R/90/180/0,box=1.000000/5.000000/6.000000:5.000000/6.000000/10.000000:u/2/0.000000/8.000000/4.000000/12.000000:s/2/0.000000/8.000000/4.000000/9.000000:w/2/0.000000/8.000000/4.000000/9.000000:e/2/0.000000/8.000000/4.000000/9.000000:d/2/0.000000/8.000000/4.000000/12.000000:n/2/0.000000/8.000000/4.000000/9.000000:R/90/180/0,box=11.000000/5.000000/6.000000:15.000000/6.000000/10.000000:u/2/0.000000/8.000000/4.000000/12.000000:s/2/0.000000/8.000000/4.000000/9.000000:w/2/0.000000/8.000000/4.000000/9.000000:e/2/0.000000/8.000000/4.000000/9.000000:d/2/0.000000/8.000000/4.000000/12.000000:n/2/0.000000/8.000000/4.000000/9.000000:R/90/180/0
|
|
||||||
modellist:id=%redstone_relay,state=facing:north/vertical:false/powered:false,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/9.000000/16.000000/11.000000:w/0/0.000000/5.000000/16.000000/7.000000:e/0/0.000000/5.000000/16.000000/7.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/9.000000/16.000000/11.000000:R/0/270/0,box=2.000000/3.000000/7.000000:4.000000/7.000000/9.000000:u/2/2.000000/0.000000/4.000000/2.000000:s/2/2.000000/0.000000/4.000000/4.000000:w/2/4.000000/0.000000/6.000000/4.000000:e/2/6.000000/0.000000/8.000000/4.000000:d/2/0.000000/0.000000/2.000000/2.000000:n/2/0.000000/0.000000/2.000000/4.000000:R/0/270/0,box=12.000000/3.000000/7.000000:14.000000/7.000000/9.000000:u/2/2.000000/0.000000/4.000000/2.000000:s/2/2.000000/0.000000/4.000000/4.000000:w/2/4.000000/0.000000/6.000000/4.000000:e/2/6.000000/0.000000/8.000000/4.000000:d/2/0.000000/0.000000/2.000000/2.000000:n/2/0.000000/0.000000/2.000000/4.000000:R/0/270/0,box=1.000000/2.000000/6.000000:5.000000/4.000000/10.000000:u/2/8.000000/8.000000/12.000000/12.000000:s/2/8.000000/4.000000/12.000000/6.000000:w/2/12.000000/4.000000/16.000000/6.000000:e/2/12.000000/4.000000/16.000000/6.000000:n/2/8.000000/4.000000/12.000000/6.000000:R/0/270/0,box=11.000000/2.000000/6.000000:15.000000/4.000000/10.000000:u/2/4.000000/8.000000/8.000000/12.000000:s/2/4.000000/4.000000/8.000000/6.000000:w/2/4.000000/4.000000/8.000000/6.000000:e/2/0.000000/4.000000/4.000000/6.000000:n/2/0.000000/4.000000/4.000000/6.000000:R/0/270/0,box=1.000000/5.000000/6.000000:5.000000/6.000000/10.000000:u/2/0.000000/8.000000/4.000000/12.000000:s/2/0.000000/8.000000/4.000000/9.000000:w/2/0.000000/8.000000/4.000000/9.000000:e/2/0.000000/8.000000/4.000000/9.000000:d/2/0.000000/8.000000/4.000000/12.000000:n/2/0.000000/8.000000/4.000000/9.000000:R/0/270/0,box=11.000000/5.000000/6.000000:15.000000/6.000000/10.000000:u/2/0.000000/8.000000/4.000000/12.000000:s/2/0.000000/8.000000/4.000000/9.000000:w/2/0.000000/8.000000/4.000000/9.000000:e/2/0.000000/8.000000/4.000000/9.000000:d/2/0.000000/8.000000/4.000000/12.000000:n/2/0.000000/8.000000/4.000000/9.000000:R/0/270/0
|
|
||||||
modellist:id=%redstone_relay,state=facing:south/vertical:true/powered:true,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/9.000000/16.000000/11.000000:w/0/0.000000/5.000000/16.000000/7.000000:e/0/0.000000/5.000000/16.000000/7.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/9.000000/16.000000/11.000000:R/90/0/0,box=2.000000/3.000000/7.000000:4.000000/7.000000/9.000000:u/2/2.000000/0.000000/4.000000/2.000000:s/2/2.000000/0.000000/4.000000/4.000000:w/2/4.000000/0.000000/6.000000/4.000000:e/2/6.000000/0.000000/8.000000/4.000000:d/2/0.000000/0.000000/2.000000/2.000000:n/2/0.000000/0.000000/2.000000/4.000000:R/90/0/0,box=12.000000/3.000000/7.000000:14.000000/7.000000/9.000000:u/2/2.000000/0.000000/4.000000/2.000000:s/2/2.000000/0.000000/4.000000/4.000000:w/2/4.000000/0.000000/6.000000/4.000000:e/2/6.000000/0.000000/8.000000/4.000000:d/2/0.000000/0.000000/2.000000/2.000000:n/2/0.000000/0.000000/2.000000/4.000000:R/90/0/0,box=1.000000/2.000000/6.000000:5.000000/4.000000/10.000000:u/2/8.000000/8.000000/12.000000/12.000000:s/2/8.000000/4.000000/12.000000/6.000000:w/2/12.000000/4.000000/16.000000/6.000000:e/2/12.000000/4.000000/16.000000/6.000000:n/2/8.000000/4.000000/12.000000/6.000000:R/90/0/0,box=11.000000/2.000000/6.000000:15.000000/4.000000/10.000000:u/2/4.000000/8.000000/8.000000/12.000000:s/2/4.000000/4.000000/8.000000/6.000000:w/2/4.000000/4.000000/8.000000/6.000000:e/2/0.000000/4.000000/4.000000/6.000000:n/2/0.000000/4.000000/4.000000/6.000000:R/90/0/0,box=1.000000/5.000000/6.000000:5.000000/6.000000/10.000000:u/2/0.000000/8.000000/4.000000/12.000000:s/2/0.000000/8.000000/4.000000/9.000000:w/2/0.000000/8.000000/4.000000/9.000000:e/2/0.000000/8.000000/4.000000/9.000000:d/2/0.000000/8.000000/4.000000/12.000000:n/2/0.000000/8.000000/4.000000/9.000000:R/90/0/0,box=11.000000/5.000000/6.000000:15.000000/6.000000/10.000000:u/2/0.000000/8.000000/4.000000/12.000000:s/2/0.000000/8.000000/4.000000/9.000000:w/2/0.000000/8.000000/4.000000/9.000000:e/2/0.000000/8.000000/4.000000/9.000000:d/2/0.000000/8.000000/4.000000/12.000000:n/2/0.000000/8.000000/4.000000/9.000000:R/90/0/0
|
|
||||||
modellist:id=%redstone_relay,state=facing:south/vertical:false/powered:true,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/9.000000/16.000000/11.000000:w/0/0.000000/5.000000/16.000000/7.000000:e/0/0.000000/5.000000/16.000000/7.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/9.000000/16.000000/11.000000:R/0/90/0,box=2.000000/3.000000/7.000000:4.000000/7.000000/9.000000:u/2/2.000000/0.000000/4.000000/2.000000:s/2/2.000000/0.000000/4.000000/4.000000:w/2/4.000000/0.000000/6.000000/4.000000:e/2/6.000000/0.000000/8.000000/4.000000:d/2/0.000000/0.000000/2.000000/2.000000:n/2/0.000000/0.000000/2.000000/4.000000:R/0/90/0,box=12.000000/3.000000/7.000000:14.000000/7.000000/9.000000:u/2/2.000000/0.000000/4.000000/2.000000:s/2/2.000000/0.000000/4.000000/4.000000:w/2/4.000000/0.000000/6.000000/4.000000:e/2/6.000000/0.000000/8.000000/4.000000:d/2/0.000000/0.000000/2.000000/2.000000:n/2/0.000000/0.000000/2.000000/4.000000:R/0/90/0,box=1.000000/2.000000/6.000000:5.000000/4.000000/10.000000:u/2/8.000000/8.000000/12.000000/12.000000:s/2/8.000000/4.000000/12.000000/6.000000:w/2/12.000000/4.000000/16.000000/6.000000:e/2/12.000000/4.000000/16.000000/6.000000:n/2/8.000000/4.000000/12.000000/6.000000:R/0/90/0,box=11.000000/2.000000/6.000000:15.000000/4.000000/10.000000:u/2/4.000000/8.000000/8.000000/12.000000:s/2/4.000000/4.000000/8.000000/6.000000:w/2/4.000000/4.000000/8.000000/6.000000:e/2/0.000000/4.000000/4.000000/6.000000:n/2/0.000000/4.000000/4.000000/6.000000:R/0/90/0,box=1.000000/5.000000/6.000000:5.000000/6.000000/10.000000:u/2/0.000000/8.000000/4.000000/12.000000:s/2/0.000000/8.000000/4.000000/9.000000:w/2/0.000000/8.000000/4.000000/9.000000:e/2/0.000000/8.000000/4.000000/9.000000:d/2/0.000000/8.000000/4.000000/12.000000:n/2/0.000000/8.000000/4.000000/9.000000:R/0/90/0,box=11.000000/5.000000/6.000000:15.000000/6.000000/10.000000:u/2/0.000000/8.000000/4.000000/12.000000:s/2/0.000000/8.000000/4.000000/9.000000:w/2/0.000000/8.000000/4.000000/9.000000:e/2/0.000000/8.000000/4.000000/9.000000:d/2/0.000000/8.000000/4.000000/12.000000:n/2/0.000000/8.000000/4.000000/9.000000:R/0/90/0
|
|
||||||
modellist:id=%redstone_relay,state=facing:south/vertical:true/powered:false,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/9.000000/16.000000/11.000000:w/0/0.000000/5.000000/16.000000/7.000000:e/0/0.000000/5.000000/16.000000/7.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/9.000000/16.000000/11.000000:R/90/0/0,box=2.000000/3.000000/7.000000:4.000000/7.000000/9.000000:u/2/2.000000/0.000000/4.000000/2.000000:s/2/2.000000/0.000000/4.000000/4.000000:w/2/4.000000/0.000000/6.000000/4.000000:e/2/6.000000/0.000000/8.000000/4.000000:d/2/0.000000/0.000000/2.000000/2.000000:n/2/0.000000/0.000000/2.000000/4.000000:R/90/0/0,box=12.000000/3.000000/7.000000:14.000000/7.000000/9.000000:u/2/2.000000/0.000000/4.000000/2.000000:s/2/2.000000/0.000000/4.000000/4.000000:w/2/4.000000/0.000000/6.000000/4.000000:e/2/6.000000/0.000000/8.000000/4.000000:d/2/0.000000/0.000000/2.000000/2.000000:n/2/0.000000/0.000000/2.000000/4.000000:R/90/0/0,box=1.000000/2.000000/6.000000:5.000000/4.000000/10.000000:u/2/8.000000/8.000000/12.000000/12.000000:s/2/8.000000/4.000000/12.000000/6.000000:w/2/12.000000/4.000000/16.000000/6.000000:e/2/12.000000/4.000000/16.000000/6.000000:n/2/8.000000/4.000000/12.000000/6.000000:R/90/0/0,box=11.000000/2.000000/6.000000:15.000000/4.000000/10.000000:u/2/4.000000/8.000000/8.000000/12.000000:s/2/4.000000/4.000000/8.000000/6.000000:w/2/4.000000/4.000000/8.000000/6.000000:e/2/0.000000/4.000000/4.000000/6.000000:n/2/0.000000/4.000000/4.000000/6.000000:R/90/0/0,box=1.000000/5.000000/6.000000:5.000000/6.000000/10.000000:u/2/0.000000/8.000000/4.000000/12.000000:s/2/0.000000/8.000000/4.000000/9.000000:w/2/0.000000/8.000000/4.000000/9.000000:e/2/0.000000/8.000000/4.000000/9.000000:d/2/0.000000/8.000000/4.000000/12.000000:n/2/0.000000/8.000000/4.000000/9.000000:R/90/0/0,box=11.000000/5.000000/6.000000:15.000000/6.000000/10.000000:u/2/0.000000/8.000000/4.000000/12.000000:s/2/0.000000/8.000000/4.000000/9.000000:w/2/0.000000/8.000000/4.000000/9.000000:e/2/0.000000/8.000000/4.000000/9.000000:d/2/0.000000/8.000000/4.000000/12.000000:n/2/0.000000/8.000000/4.000000/9.000000:R/90/0/0
|
|
||||||
modellist:id=%redstone_relay,state=facing:south/vertical:false/powered:false,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/9.000000/16.000000/11.000000:w/0/0.000000/5.000000/16.000000/7.000000:e/0/0.000000/5.000000/16.000000/7.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/9.000000/16.000000/11.000000:R/0/90/0,box=2.000000/3.000000/7.000000:4.000000/7.000000/9.000000:u/2/2.000000/0.000000/4.000000/2.000000:s/2/2.000000/0.000000/4.000000/4.000000:w/2/4.000000/0.000000/6.000000/4.000000:e/2/6.000000/0.000000/8.000000/4.000000:d/2/0.000000/0.000000/2.000000/2.000000:n/2/0.000000/0.000000/2.000000/4.000000:R/0/90/0,box=12.000000/3.000000/7.000000:14.000000/7.000000/9.000000:u/2/2.000000/0.000000/4.000000/2.000000:s/2/2.000000/0.000000/4.000000/4.000000:w/2/4.000000/0.000000/6.000000/4.000000:e/2/6.000000/0.000000/8.000000/4.000000:d/2/0.000000/0.000000/2.000000/2.000000:n/2/0.000000/0.000000/2.000000/4.000000:R/0/90/0,box=1.000000/2.000000/6.000000:5.000000/4.000000/10.000000:u/2/8.000000/8.000000/12.000000/12.000000:s/2/8.000000/4.000000/12.000000/6.000000:w/2/12.000000/4.000000/16.000000/6.000000:e/2/12.000000/4.000000/16.000000/6.000000:n/2/8.000000/4.000000/12.000000/6.000000:R/0/90/0,box=11.000000/2.000000/6.000000:15.000000/4.000000/10.000000:u/2/4.000000/8.000000/8.000000/12.000000:s/2/4.000000/4.000000/8.000000/6.000000:w/2/4.000000/4.000000/8.000000/6.000000:e/2/0.000000/4.000000/4.000000/6.000000:n/2/0.000000/4.000000/4.000000/6.000000:R/0/90/0,box=1.000000/5.000000/6.000000:5.000000/6.000000/10.000000:u/2/0.000000/8.000000/4.000000/12.000000:s/2/0.000000/8.000000/4.000000/9.000000:w/2/0.000000/8.000000/4.000000/9.000000:e/2/0.000000/8.000000/4.000000/9.000000:d/2/0.000000/8.000000/4.000000/12.000000:n/2/0.000000/8.000000/4.000000/9.000000:R/0/90/0,box=11.000000/5.000000/6.000000:15.000000/6.000000/10.000000:u/2/0.000000/8.000000/4.000000/12.000000:s/2/0.000000/8.000000/4.000000/9.000000:w/2/0.000000/8.000000/4.000000/9.000000:e/2/0.000000/8.000000/4.000000/9.000000:d/2/0.000000/8.000000/4.000000/12.000000:n/2/0.000000/8.000000/4.000000/9.000000:R/0/90/0
|
|
||||||
modellist:id=%redstone_relay,state=facing:west/vertical:true/powered:true,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/9.000000/16.000000/11.000000:w/0/0.000000/5.000000/16.000000/7.000000:e/0/0.000000/5.000000/16.000000/7.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/9.000000/16.000000/11.000000:R/90/90/0,box=2.000000/3.000000/7.000000:4.000000/7.000000/9.000000:u/2/2.000000/0.000000/4.000000/2.000000:s/2/2.000000/0.000000/4.000000/4.000000:w/2/4.000000/0.000000/6.000000/4.000000:e/2/6.000000/0.000000/8.000000/4.000000:d/2/0.000000/0.000000/2.000000/2.000000:n/2/0.000000/0.000000/2.000000/4.000000:R/90/90/0,box=12.000000/3.000000/7.000000:14.000000/7.000000/9.000000:u/2/2.000000/0.000000/4.000000/2.000000:s/2/2.000000/0.000000/4.000000/4.000000:w/2/4.000000/0.000000/6.000000/4.000000:e/2/6.000000/0.000000/8.000000/4.000000:d/2/0.000000/0.000000/2.000000/2.000000:n/2/0.000000/0.000000/2.000000/4.000000:R/90/90/0,box=1.000000/2.000000/6.000000:5.000000/4.000000/10.000000:u/2/8.000000/8.000000/12.000000/12.000000:s/2/8.000000/4.000000/12.000000/6.000000:w/2/12.000000/4.000000/16.000000/6.000000:e/2/12.000000/4.000000/16.000000/6.000000:n/2/8.000000/4.000000/12.000000/6.000000:R/90/90/0,box=11.000000/2.000000/6.000000:15.000000/4.000000/10.000000:u/2/4.000000/8.000000/8.000000/12.000000:s/2/4.000000/4.000000/8.000000/6.000000:w/2/4.000000/4.000000/8.000000/6.000000:e/2/0.000000/4.000000/4.000000/6.000000:n/2/0.000000/4.000000/4.000000/6.000000:R/90/90/0,box=1.000000/5.000000/6.000000:5.000000/6.000000/10.000000:u/2/0.000000/8.000000/4.000000/12.000000:s/2/0.000000/8.000000/4.000000/9.000000:w/2/0.000000/8.000000/4.000000/9.000000:e/2/0.000000/8.000000/4.000000/9.000000:d/2/0.000000/8.000000/4.000000/12.000000:n/2/0.000000/8.000000/4.000000/9.000000:R/90/90/0,box=11.000000/5.000000/6.000000:15.000000/6.000000/10.000000:u/2/0.000000/8.000000/4.000000/12.000000:s/2/0.000000/8.000000/4.000000/9.000000:w/2/0.000000/8.000000/4.000000/9.000000:e/2/0.000000/8.000000/4.000000/9.000000:d/2/0.000000/8.000000/4.000000/12.000000:n/2/0.000000/8.000000/4.000000/9.000000:R/90/90/0
|
|
||||||
modellist:id=%redstone_relay,state=facing:west/vertical:false/powered:true,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/9.000000/16.000000/11.000000:w/0/0.000000/5.000000/16.000000/7.000000:e/0/0.000000/5.000000/16.000000/7.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/9.000000/16.000000/11.000000:R/0/180/0,box=2.000000/3.000000/7.000000:4.000000/7.000000/9.000000:u/2/2.000000/0.000000/4.000000/2.000000:s/2/2.000000/0.000000/4.000000/4.000000:w/2/4.000000/0.000000/6.000000/4.000000:e/2/6.000000/0.000000/8.000000/4.000000:d/2/0.000000/0.000000/2.000000/2.000000:n/2/0.000000/0.000000/2.000000/4.000000:R/0/180/0,box=12.000000/3.000000/7.000000:14.000000/7.000000/9.000000:u/2/2.000000/0.000000/4.000000/2.000000:s/2/2.000000/0.000000/4.000000/4.000000:w/2/4.000000/0.000000/6.000000/4.000000:e/2/6.000000/0.000000/8.000000/4.000000:d/2/0.000000/0.000000/2.000000/2.000000:n/2/0.000000/0.000000/2.000000/4.000000:R/0/180/0,box=1.000000/2.000000/6.000000:5.000000/4.000000/10.000000:u/2/8.000000/8.000000/12.000000/12.000000:s/2/8.000000/4.000000/12.000000/6.000000:w/2/12.000000/4.000000/16.000000/6.000000:e/2/12.000000/4.000000/16.000000/6.000000:n/2/8.000000/4.000000/12.000000/6.000000:R/0/180/0,box=11.000000/2.000000/6.000000:15.000000/4.000000/10.000000:u/2/4.000000/8.000000/8.000000/12.000000:s/2/4.000000/4.000000/8.000000/6.000000:w/2/4.000000/4.000000/8.000000/6.000000:e/2/0.000000/4.000000/4.000000/6.000000:n/2/0.000000/4.000000/4.000000/6.000000:R/0/180/0,box=1.000000/5.000000/6.000000:5.000000/6.000000/10.000000:u/2/0.000000/8.000000/4.000000/12.000000:s/2/0.000000/8.000000/4.000000/9.000000:w/2/0.000000/8.000000/4.000000/9.000000:e/2/0.000000/8.000000/4.000000/9.000000:d/2/0.000000/8.000000/4.000000/12.000000:n/2/0.000000/8.000000/4.000000/9.000000:R/0/180/0,box=11.000000/5.000000/6.000000:15.000000/6.000000/10.000000:u/2/0.000000/8.000000/4.000000/12.000000:s/2/0.000000/8.000000/4.000000/9.000000:w/2/0.000000/8.000000/4.000000/9.000000:e/2/0.000000/8.000000/4.000000/9.000000:d/2/0.000000/8.000000/4.000000/12.000000:n/2/0.000000/8.000000/4.000000/9.000000:R/0/180/0
|
|
||||||
modellist:id=%redstone_relay,state=facing:west/vertical:true/powered:false,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/9.000000/16.000000/11.000000:w/0/0.000000/5.000000/16.000000/7.000000:e/0/0.000000/5.000000/16.000000/7.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/9.000000/16.000000/11.000000:R/90/90/0,box=2.000000/3.000000/7.000000:4.000000/7.000000/9.000000:u/2/2.000000/0.000000/4.000000/2.000000:s/2/2.000000/0.000000/4.000000/4.000000:w/2/4.000000/0.000000/6.000000/4.000000:e/2/6.000000/0.000000/8.000000/4.000000:d/2/0.000000/0.000000/2.000000/2.000000:n/2/0.000000/0.000000/2.000000/4.000000:R/90/90/0,box=12.000000/3.000000/7.000000:14.000000/7.000000/9.000000:u/2/2.000000/0.000000/4.000000/2.000000:s/2/2.000000/0.000000/4.000000/4.000000:w/2/4.000000/0.000000/6.000000/4.000000:e/2/6.000000/0.000000/8.000000/4.000000:d/2/0.000000/0.000000/2.000000/2.000000:n/2/0.000000/0.000000/2.000000/4.000000:R/90/90/0,box=1.000000/2.000000/6.000000:5.000000/4.000000/10.000000:u/2/8.000000/8.000000/12.000000/12.000000:s/2/8.000000/4.000000/12.000000/6.000000:w/2/12.000000/4.000000/16.000000/6.000000:e/2/12.000000/4.000000/16.000000/6.000000:n/2/8.000000/4.000000/12.000000/6.000000:R/90/90/0,box=11.000000/2.000000/6.000000:15.000000/4.000000/10.000000:u/2/4.000000/8.000000/8.000000/12.000000:s/2/4.000000/4.000000/8.000000/6.000000:w/2/4.000000/4.000000/8.000000/6.000000:e/2/0.000000/4.000000/4.000000/6.000000:n/2/0.000000/4.000000/4.000000/6.000000:R/90/90/0,box=1.000000/5.000000/6.000000:5.000000/6.000000/10.000000:u/2/0.000000/8.000000/4.000000/12.000000:s/2/0.000000/8.000000/4.000000/9.000000:w/2/0.000000/8.000000/4.000000/9.000000:e/2/0.000000/8.000000/4.000000/9.000000:d/2/0.000000/8.000000/4.000000/12.000000:n/2/0.000000/8.000000/4.000000/9.000000:R/90/90/0,box=11.000000/5.000000/6.000000:15.000000/6.000000/10.000000:u/2/0.000000/8.000000/4.000000/12.000000:s/2/0.000000/8.000000/4.000000/9.000000:w/2/0.000000/8.000000/4.000000/9.000000:e/2/0.000000/8.000000/4.000000/9.000000:d/2/0.000000/8.000000/4.000000/12.000000:n/2/0.000000/8.000000/4.000000/9.000000:R/90/90/0
|
|
||||||
modellist:id=%redstone_relay,state=facing:west/vertical:false/powered:false,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/9.000000/16.000000/11.000000:w/0/0.000000/5.000000/16.000000/7.000000:e/0/0.000000/5.000000/16.000000/7.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/9.000000/16.000000/11.000000:R/0/180/0,box=2.000000/3.000000/7.000000:4.000000/7.000000/9.000000:u/2/2.000000/0.000000/4.000000/2.000000:s/2/2.000000/0.000000/4.000000/4.000000:w/2/4.000000/0.000000/6.000000/4.000000:e/2/6.000000/0.000000/8.000000/4.000000:d/2/0.000000/0.000000/2.000000/2.000000:n/2/0.000000/0.000000/2.000000/4.000000:R/0/180/0,box=12.000000/3.000000/7.000000:14.000000/7.000000/9.000000:u/2/2.000000/0.000000/4.000000/2.000000:s/2/2.000000/0.000000/4.000000/4.000000:w/2/4.000000/0.000000/6.000000/4.000000:e/2/6.000000/0.000000/8.000000/4.000000:d/2/0.000000/0.000000/2.000000/2.000000:n/2/0.000000/0.000000/2.000000/4.000000:R/0/180/0,box=1.000000/2.000000/6.000000:5.000000/4.000000/10.000000:u/2/8.000000/8.000000/12.000000/12.000000:s/2/8.000000/4.000000/12.000000/6.000000:w/2/12.000000/4.000000/16.000000/6.000000:e/2/12.000000/4.000000/16.000000/6.000000:n/2/8.000000/4.000000/12.000000/6.000000:R/0/180/0,box=11.000000/2.000000/6.000000:15.000000/4.000000/10.000000:u/2/4.000000/8.000000/8.000000/12.000000:s/2/4.000000/4.000000/8.000000/6.000000:w/2/4.000000/4.000000/8.000000/6.000000:e/2/0.000000/4.000000/4.000000/6.000000:n/2/0.000000/4.000000/4.000000/6.000000:R/0/180/0,box=1.000000/5.000000/6.000000:5.000000/6.000000/10.000000:u/2/0.000000/8.000000/4.000000/12.000000:s/2/0.000000/8.000000/4.000000/9.000000:w/2/0.000000/8.000000/4.000000/9.000000:e/2/0.000000/8.000000/4.000000/9.000000:d/2/0.000000/8.000000/4.000000/12.000000:n/2/0.000000/8.000000/4.000000/9.000000:R/0/180/0,box=11.000000/5.000000/6.000000:15.000000/6.000000/10.000000:u/2/0.000000/8.000000/4.000000/12.000000:s/2/0.000000/8.000000/4.000000/9.000000:w/2/0.000000/8.000000/4.000000/9.000000:e/2/0.000000/8.000000/4.000000/9.000000:d/2/0.000000/8.000000/4.000000/12.000000:n/2/0.000000/8.000000/4.000000/9.000000:R/0/180/0
|
|
||||||
modellist:id=%redstone_relay,state=facing:east/vertical:true/powered:true,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/9.000000/16.000000/11.000000:w/0/0.000000/5.000000/16.000000/7.000000:e/0/0.000000/5.000000/16.000000/7.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/9.000000/16.000000/11.000000:R/90/270/0,box=2.000000/3.000000/7.000000:4.000000/7.000000/9.000000:u/2/2.000000/0.000000/4.000000/2.000000:s/2/2.000000/0.000000/4.000000/4.000000:w/2/4.000000/0.000000/6.000000/4.000000:e/2/6.000000/0.000000/8.000000/4.000000:d/2/0.000000/0.000000/2.000000/2.000000:n/2/0.000000/0.000000/2.000000/4.000000:R/90/270/0,box=12.000000/3.000000/7.000000:14.000000/7.000000/9.000000:u/2/2.000000/0.000000/4.000000/2.000000:s/2/2.000000/0.000000/4.000000/4.000000:w/2/4.000000/0.000000/6.000000/4.000000:e/2/6.000000/0.000000/8.000000/4.000000:d/2/0.000000/0.000000/2.000000/2.000000:n/2/0.000000/0.000000/2.000000/4.000000:R/90/270/0,box=1.000000/2.000000/6.000000:5.000000/4.000000/10.000000:u/2/8.000000/8.000000/12.000000/12.000000:s/2/8.000000/4.000000/12.000000/6.000000:w/2/12.000000/4.000000/16.000000/6.000000:e/2/12.000000/4.000000/16.000000/6.000000:n/2/8.000000/4.000000/12.000000/6.000000:R/90/270/0,box=11.000000/2.000000/6.000000:15.000000/4.000000/10.000000:u/2/4.000000/8.000000/8.000000/12.000000:s/2/4.000000/4.000000/8.000000/6.000000:w/2/4.000000/4.000000/8.000000/6.000000:e/2/0.000000/4.000000/4.000000/6.000000:n/2/0.000000/4.000000/4.000000/6.000000:R/90/270/0,box=1.000000/5.000000/6.000000:5.000000/6.000000/10.000000:u/2/0.000000/8.000000/4.000000/12.000000:s/2/0.000000/8.000000/4.000000/9.000000:w/2/0.000000/8.000000/4.000000/9.000000:e/2/0.000000/8.000000/4.000000/9.000000:d/2/0.000000/8.000000/4.000000/12.000000:n/2/0.000000/8.000000/4.000000/9.000000:R/90/270/0,box=11.000000/5.000000/6.000000:15.000000/6.000000/10.000000:u/2/0.000000/8.000000/4.000000/12.000000:s/2/0.000000/8.000000/4.000000/9.000000:w/2/0.000000/8.000000/4.000000/9.000000:e/2/0.000000/8.000000/4.000000/9.000000:d/2/0.000000/8.000000/4.000000/12.000000:n/2/0.000000/8.000000/4.000000/9.000000:R/90/270/0
|
|
||||||
modellist:id=%redstone_relay,state=facing:east/vertical:false/powered:true,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/9.000000/16.000000/11.000000:w/0/0.000000/5.000000/16.000000/7.000000:e/0/0.000000/5.000000/16.000000/7.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/9.000000/16.000000/11.000000,box=2.000000/3.000000/7.000000:4.000000/7.000000/9.000000:u/2/2.000000/0.000000/4.000000/2.000000:s/2/2.000000/0.000000/4.000000/4.000000:w/2/4.000000/0.000000/6.000000/4.000000:e/2/6.000000/0.000000/8.000000/4.000000:d/2/0.000000/0.000000/2.000000/2.000000:n/2/0.000000/0.000000/2.000000/4.000000,box=12.000000/3.000000/7.000000:14.000000/7.000000/9.000000:u/2/2.000000/0.000000/4.000000/2.000000:s/2/2.000000/0.000000/4.000000/4.000000:w/2/4.000000/0.000000/6.000000/4.000000:e/2/6.000000/0.000000/8.000000/4.000000:d/2/0.000000/0.000000/2.000000/2.000000:n/2/0.000000/0.000000/2.000000/4.000000,box=1.000000/2.000000/6.000000:5.000000/4.000000/10.000000:u/2/8.000000/8.000000/12.000000/12.000000:s/2/8.000000/4.000000/12.000000/6.000000:w/2/12.000000/4.000000/16.000000/6.000000:e/2/12.000000/4.000000/16.000000/6.000000:n/2/8.000000/4.000000/12.000000/6.000000,box=11.000000/2.000000/6.000000:15.000000/4.000000/10.000000:u/2/4.000000/8.000000/8.000000/12.000000:s/2/4.000000/4.000000/8.000000/6.000000:w/2/4.000000/4.000000/8.000000/6.000000:e/2/0.000000/4.000000/4.000000/6.000000:n/2/0.000000/4.000000/4.000000/6.000000,box=1.000000/5.000000/6.000000:5.000000/6.000000/10.000000:u/2/0.000000/8.000000/4.000000/12.000000:s/2/0.000000/8.000000/4.000000/9.000000:w/2/0.000000/8.000000/4.000000/9.000000:e/2/0.000000/8.000000/4.000000/9.000000:d/2/0.000000/8.000000/4.000000/12.000000:n/2/0.000000/8.000000/4.000000/9.000000,box=11.000000/5.000000/6.000000:15.000000/6.000000/10.000000:u/2/0.000000/8.000000/4.000000/12.000000:s/2/0.000000/8.000000/4.000000/9.000000:w/2/0.000000/8.000000/4.000000/9.000000:e/2/0.000000/8.000000/4.000000/9.000000:d/2/0.000000/8.000000/4.000000/12.000000:n/2/0.000000/8.000000/4.000000/9.000000
|
|
||||||
modellist:id=%redstone_relay,state=facing:east/vertical:true/powered:false,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/9.000000/16.000000/11.000000:w/0/0.000000/5.000000/16.000000/7.000000:e/0/0.000000/5.000000/16.000000/7.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/9.000000/16.000000/11.000000:R/90/270/0,box=2.000000/3.000000/7.000000:4.000000/7.000000/9.000000:u/2/2.000000/0.000000/4.000000/2.000000:s/2/2.000000/0.000000/4.000000/4.000000:w/2/4.000000/0.000000/6.000000/4.000000:e/2/6.000000/0.000000/8.000000/4.000000:d/2/0.000000/0.000000/2.000000/2.000000:n/2/0.000000/0.000000/2.000000/4.000000:R/90/270/0,box=12.000000/3.000000/7.000000:14.000000/7.000000/9.000000:u/2/2.000000/0.000000/4.000000/2.000000:s/2/2.000000/0.000000/4.000000/4.000000:w/2/4.000000/0.000000/6.000000/4.000000:e/2/6.000000/0.000000/8.000000/4.000000:d/2/0.000000/0.000000/2.000000/2.000000:n/2/0.000000/0.000000/2.000000/4.000000:R/90/270/0,box=1.000000/2.000000/6.000000:5.000000/4.000000/10.000000:u/2/8.000000/8.000000/12.000000/12.000000:s/2/8.000000/4.000000/12.000000/6.000000:w/2/12.000000/4.000000/16.000000/6.000000:e/2/12.000000/4.000000/16.000000/6.000000:n/2/8.000000/4.000000/12.000000/6.000000:R/90/270/0,box=11.000000/2.000000/6.000000:15.000000/4.000000/10.000000:u/2/4.000000/8.000000/8.000000/12.000000:s/2/4.000000/4.000000/8.000000/6.000000:w/2/4.000000/4.000000/8.000000/6.000000:e/2/0.000000/4.000000/4.000000/6.000000:n/2/0.000000/4.000000/4.000000/6.000000:R/90/270/0,box=1.000000/5.000000/6.000000:5.000000/6.000000/10.000000:u/2/0.000000/8.000000/4.000000/12.000000:s/2/0.000000/8.000000/4.000000/9.000000:w/2/0.000000/8.000000/4.000000/9.000000:e/2/0.000000/8.000000/4.000000/9.000000:d/2/0.000000/8.000000/4.000000/12.000000:n/2/0.000000/8.000000/4.000000/9.000000:R/90/270/0,box=11.000000/5.000000/6.000000:15.000000/6.000000/10.000000:u/2/0.000000/8.000000/4.000000/12.000000:s/2/0.000000/8.000000/4.000000/9.000000:w/2/0.000000/8.000000/4.000000/9.000000:e/2/0.000000/8.000000/4.000000/9.000000:d/2/0.000000/8.000000/4.000000/12.000000:n/2/0.000000/8.000000/4.000000/9.000000:R/90/270/0
|
|
||||||
modellist:id=%redstone_relay,state=facing:east/vertical:false/powered:false,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/9.000000/16.000000/11.000000:w/0/0.000000/5.000000/16.000000/7.000000:e/0/0.000000/5.000000/16.000000/7.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/9.000000/16.000000/11.000000,box=2.000000/3.000000/7.000000:4.000000/7.000000/9.000000:u/2/2.000000/0.000000/4.000000/2.000000:s/2/2.000000/0.000000/4.000000/4.000000:w/2/4.000000/0.000000/6.000000/4.000000:e/2/6.000000/0.000000/8.000000/4.000000:d/2/0.000000/0.000000/2.000000/2.000000:n/2/0.000000/0.000000/2.000000/4.000000,box=12.000000/3.000000/7.000000:14.000000/7.000000/9.000000:u/2/2.000000/0.000000/4.000000/2.000000:s/2/2.000000/0.000000/4.000000/4.000000:w/2/4.000000/0.000000/6.000000/4.000000:e/2/6.000000/0.000000/8.000000/4.000000:d/2/0.000000/0.000000/2.000000/2.000000:n/2/0.000000/0.000000/2.000000/4.000000,box=1.000000/2.000000/6.000000:5.000000/4.000000/10.000000:u/2/8.000000/8.000000/12.000000/12.000000:s/2/8.000000/4.000000/12.000000/6.000000:w/2/12.000000/4.000000/16.000000/6.000000:e/2/12.000000/4.000000/16.000000/6.000000:n/2/8.000000/4.000000/12.000000/6.000000,box=11.000000/2.000000/6.000000:15.000000/4.000000/10.000000:u/2/4.000000/8.000000/8.000000/12.000000:s/2/4.000000/4.000000/8.000000/6.000000:w/2/4.000000/4.000000/8.000000/6.000000:e/2/0.000000/4.000000/4.000000/6.000000:n/2/0.000000/4.000000/4.000000/6.000000,box=1.000000/5.000000/6.000000:5.000000/6.000000/10.000000:u/2/0.000000/8.000000/4.000000/12.000000:s/2/0.000000/8.000000/4.000000/9.000000:w/2/0.000000/8.000000/4.000000/9.000000:e/2/0.000000/8.000000/4.000000/9.000000:d/2/0.000000/8.000000/4.000000/12.000000:n/2/0.000000/8.000000/4.000000/9.000000,box=11.000000/5.000000/6.000000:15.000000/6.000000/10.000000:u/2/0.000000/8.000000/4.000000/12.000000:s/2/0.000000/8.000000/4.000000/9.000000:w/2/0.000000/8.000000/4.000000/9.000000:e/2/0.000000/8.000000/4.000000/9.000000:d/2/0.000000/8.000000/4.000000/12.000000:n/2/0.000000/8.000000/4.000000/9.000000
|
|
||||||
modellist:id=%furnace_burner,state=facing:south/lit:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/0:n/2:R/0/180/0
|
|
||||||
modellist:id=%furnace_burner,state=facing:south/lit:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/0:n/2:R/0/180/0
|
|
||||||
modellist:id=%furnace_burner,state=facing:west/lit:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/0:n/2:R/0/270/0
|
|
||||||
modellist:id=%furnace_burner,state=facing:west/lit:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/0:n/2:R/0/270/0
|
|
||||||
modellist:id=%furnace_burner,state=facing:east/lit:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/0:n/2:R/0/90/0
|
|
||||||
modellist:id=%furnace_burner,state=facing:east/lit:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/0:n/2:R/0/90/0
|
|
||||||
modellist:id=%crude_burner,state=facing:south/lit:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/0:n/2:R/0/180/0
|
|
||||||
modellist:id=%crude_burner,state=facing:south/lit:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/0:n/2:R/0/180/0
|
|
||||||
modellist:id=%crude_burner,state=facing:west/lit:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/0:n/2:R/0/270/0
|
|
||||||
modellist:id=%crude_burner,state=facing:west/lit:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/0:n/2:R/0/270/0
|
|
||||||
modellist:id=%crude_burner,state=facing:east/lit:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/0:n/2:R/0/90/0
|
|
||||||
modellist:id=%crude_burner,state=facing:east/lit:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/0:n/2:R/0/90/0
|
|
||||||
modellist:id=%chocolate_cake,state=bites:0,box=1.000000/0.000000/1.000000:15.000000/8.000000/15.000000:u/0:s/1:w/1:e/1:d/2:n/1
|
|
||||||
modellist:id=%chocolate_cake,state=bites:1,box=3.000000/0.000000/1.000000:15.000000/8.000000/15.000000:u/0:s/1:w/3:e/1:d/2:n/1
|
|
||||||
modellist:id=%chocolate_cake,state=bites:2,box=5.000000/0.000000/1.000000:15.000000/8.000000/15.000000:u/0:s/1:w/3:e/1:d/2:n/1
|
|
||||||
modellist:id=%chocolate_cake,state=bites:3,box=7.000000/0.000000/1.000000:15.000000/8.000000/15.000000:u/0:s/1:w/3:e/1:d/2:n/1
|
|
||||||
modellist:id=%chocolate_cake,state=bites:4,box=9.000000/0.000000/1.000000:15.000000/8.000000/15.000000:u/0:s/1:w/3:e/1:d/2:n/1
|
|
||||||
modellist:id=%chocolate_cake,state=bites:5,box=11.000000/0.000000/1.000000:15.000000/8.000000/15.000000:u/0:s/1:w/3:e/1:d/2:n/1
|
|
||||||
modellist:id=%chocolate_cake,state=bites:6,box=13.000000/0.000000/1.000000:15.000000/8.000000/15.000000:u/0:s/1:w/3:e/1:d/2:n/1
|
|
||||||
modellist:id=%honey_cake,state=bites:0,box=1.000000/0.000000/1.000000:15.000000/8.000000/15.000000:u/0:s/1:w/1:e/1:d/2:n/1
|
|
||||||
modellist:id=%honey_cake,state=bites:1,box=3.000000/0.000000/1.000000:15.000000/8.000000/15.000000:u/0:s/1:w/3:e/1:d/2:n/1
|
|
||||||
modellist:id=%honey_cake,state=bites:2,box=5.000000/0.000000/1.000000:15.000000/8.000000/15.000000:u/0:s/1:w/3:e/1:d/2:n/1
|
|
||||||
modellist:id=%honey_cake,state=bites:3,box=7.000000/0.000000/1.000000:15.000000/8.000000/15.000000:u/0:s/1:w/3:e/1:d/2:n/1
|
|
||||||
modellist:id=%honey_cake,state=bites:4,box=9.000000/0.000000/1.000000:15.000000/8.000000/15.000000:u/0:s/1:w/3:e/1:d/2:n/1
|
|
||||||
modellist:id=%honey_cake,state=bites:5,box=11.000000/0.000000/1.000000:15.000000/8.000000/15.000000:u/0:s/1:w/3:e/1:d/2:n/1
|
|
||||||
modellist:id=%honey_cake,state=bites:6,box=13.000000/0.000000/1.000000:15.000000/8.000000/15.000000:u/0:s/1:w/3:e/1:d/2:n/1
|
|
||||||
modellist:id=%tesla_coil,state=powered:true/facing:north,box=0.000000/0.000000/0.000000:16.000000/10.000000/16.000000:u/0/8.000000/0.000000/12.000000/4.000000:s/0/0.000000/5.500000/4.000000/8.000000:w/0/0.000000/5.500000/4.000000/8.000000:e/0/0.000000/5.500000/4.000000/8.000000:d/0/8.000000/0.000000/12.000000/4.000000:n/0/0.000000/5.500000/4.000000/8.000000:R/90/180/0,box=1.000000/10.000000/1.000000:15.000000/12.000000/15.000000:u/0/8.250000/4.250000/11.750000/7.750000:s/0/0.250000/5.000000/3.750000/5.500000:w/0/0.250000/5.000000/3.750000/5.500000:e/0/0.250000/5.000000/3.750000/5.500000:n/0/0.250000/5.000000/3.750000/5.500000:R/90/180/0,box=1.000000/16.000000/1.000000:11.000000/20.000000/5.000000:u180/0/5.250000/2.750000/7.750000/3.750000:s/0/1.500000/0.000000/4.000000/1.000000:w/0/3.000000/0.000000/4.000000/1.000000:d/0/4.250000/2.750000/6.750000/3.750000:n/0/1.250000/0.000000/3.750000/1.000000:R/90/180/0,box=11.000000/16.000000/1.000000:15.000000/20.000000/11.000000:u/0/6.750000/0.250000/7.750000/2.750000:w/0/1.500000/0.000000/4.000000/1.000000:e/0/1.500000/0.000000/4.000000/1.000000:d/0/6.750000/1.250000/7.750000/3.750000:n/0/2.750000/0.000000/3.750000/1.000000:R/90/180/0,box=5.000000/16.000000/11.000000:15.000000/20.000000/15.000000:u180/0/4.250000/0.250000/6.750000/1.250000:s/0/1.250000/0.000000/3.750000/1.000000:e/0/3.000000/0.000000/4.000000/1.000000:d/0/5.250000/0.250000/7.750000/1.250000:n/0/1.500000/0.000000/4.000000/1.000000:R/90/180/0,box=1.000000/16.000000/5.000000:5.000000/20.000000/15.000000:u180/0/6.750000/0.250000/7.750000/2.750000:s/0/2.750000/0.000000/3.750000/1.000000:w/0/1.500000/0.000000/4.000000/1.000000:e/0/1.500000/0.000000/4.000000/1.000000:d/0/4.250000/0.250000/5.250000/2.750000:R/90/180/0,box=6.000000/12.000000/6.000000:10.000000/22.000000/10.000000:u/0/7.000000/4.500000/8.000000/5.500000:s/0/7.000000/5.500000/8.000000/8.000000:w/0/7.000000/5.500000/8.000000/8.000000:e/0/7.000000/5.500000/8.000000/8.000000:n/0/7.000000/5.500000/8.000000/8.000000:R/90/180/0,box=0.500000/15.500000/7.500000:15.500000/20.500000/8.500000:u/0/4.000000/4.000000/7.750000/4.250000:s/0/4.000000/4.000000/7.750000/4.250000:w/0/4.000000/4.000000/4.250000/5.000000:e/0/4.000000/4.000000/4.250000/5.000000:d/0/4.000000/4.000000/7.750000/4.250000:n/0/4.000000/4.000000/7.750000/4.250000:R/90/180/0,box=7.500000/15.500000/0.500000:8.500000/20.500000/15.500000:u270/0/4.000000/4.000000/7.750000/4.250000:s/0/4.000000/4.000000/4.250000/5.000000:w/0/4.000000/4.000000/7.750000/4.250000:e/0/4.000000/4.000000/7.750000/4.250000:d90/0/4.000000/4.000000/7.750000/4.250000:n/0/4.000000/4.000000/4.250000/5.000000:R/90/180/0,box=0.750000/15.750000/0.750000:15.250000/20.250000/15.250000:u/1/0.000000/0.000000/14.500000/14.500000:s/1/0.000000/0.000000/14.500000/4.500000:w/1/0.000000/0.000000/14.500000/4.500000:e/1/0.000000/0.000000/14.500000/4.500000:d/1/0.000000/0.000000/14.500000/14.500000:n/1/0.000000/0.000000/14.500000/4.500000:R/90/180/0
|
|
||||||
modellist:id=%tesla_coil,state=powered:false/facing:north,box=0.000000/0.000000/0.000000:16.000000/10.000000/16.000000:u/0/8.000000/0.000000/12.000000/4.000000:s/0/0.000000/5.500000/4.000000/8.000000:w/0/0.000000/5.500000/4.000000/8.000000:e/0/0.000000/5.500000/4.000000/8.000000:d/0/8.000000/0.000000/12.000000/4.000000:n/0/0.000000/5.500000/4.000000/8.000000:R/90/180/0,box=1.000000/10.000000/1.000000:15.000000/12.000000/15.000000:u/0/8.250000/4.250000/11.750000/7.750000:s/0/0.250000/5.000000/3.750000/5.500000:w/0/0.250000/5.000000/3.750000/5.500000:e/0/0.250000/5.000000/3.750000/5.500000:n/0/0.250000/5.000000/3.750000/5.500000:R/90/180/0,box=1.000000/16.000000/1.000000:11.000000/20.000000/5.000000:u180/0/5.250000/2.750000/7.750000/3.750000:s/0/1.500000/0.000000/4.000000/1.000000:w/0/3.000000/0.000000/4.000000/1.000000:d/0/4.250000/2.750000/6.750000/3.750000:n/0/1.250000/0.000000/3.750000/1.000000:R/90/180/0,box=11.000000/16.000000/1.000000:15.000000/20.000000/11.000000:u/0/6.750000/0.250000/7.750000/2.750000:w/0/1.500000/0.000000/4.000000/1.000000:e/0/1.500000/0.000000/4.000000/1.000000:d/0/6.750000/1.250000/7.750000/3.750000:n/0/2.750000/0.000000/3.750000/1.000000:R/90/180/0,box=5.000000/16.000000/11.000000:15.000000/20.000000/15.000000:u180/0/4.250000/0.250000/6.750000/1.250000:s/0/1.250000/0.000000/3.750000/1.000000:e/0/3.000000/0.000000/4.000000/1.000000:d/0/5.250000/0.250000/7.750000/1.250000:n/0/1.500000/0.000000/4.000000/1.000000:R/90/180/0,box=1.000000/16.000000/5.000000:5.000000/20.000000/15.000000:u180/0/6.750000/0.250000/7.750000/2.750000:s/0/2.750000/0.000000/3.750000/1.000000:w/0/1.500000/0.000000/4.000000/1.000000:e/0/1.500000/0.000000/4.000000/1.000000:d/0/4.250000/0.250000/5.250000/2.750000:R/90/180/0,box=6.000000/12.000000/6.000000:10.000000/22.000000/10.000000:u/0/7.000000/4.500000/8.000000/5.500000:s/0/7.000000/5.500000/8.000000/8.000000:w/0/7.000000/5.500000/8.000000/8.000000:e/0/7.000000/5.500000/8.000000/8.000000:n/0/7.000000/5.500000/8.000000/8.000000:R/90/180/0,box=0.500000/15.500000/7.500000:15.500000/20.500000/8.500000:u/0/4.000000/4.000000/7.750000/4.250000:s/0/4.000000/4.000000/7.750000/4.250000:w/0/4.000000/4.000000/4.250000/5.000000:e/0/4.000000/4.000000/4.250000/5.000000:d/0/4.000000/4.000000/7.750000/4.250000:n/0/4.000000/4.000000/7.750000/4.250000:R/90/180/0,box=7.500000/15.500000/0.500000:8.500000/20.500000/15.500000:u270/0/4.000000/4.000000/7.750000/4.250000:s/0/4.000000/4.000000/4.250000/5.000000:w/0/4.000000/4.000000/7.750000/4.250000:e/0/4.000000/4.000000/7.750000/4.250000:d90/0/4.000000/4.000000/7.750000/4.250000:n/0/4.000000/4.000000/4.250000/5.000000:R/90/180/0
|
|
||||||
modellist:id=%tesla_coil,state=powered:true/facing:east,box=0.000000/0.000000/0.000000:16.000000/10.000000/16.000000:u/0/8.000000/0.000000/12.000000/4.000000:s/0/0.000000/5.500000/4.000000/8.000000:w/0/0.000000/5.500000/4.000000/8.000000:e/0/0.000000/5.500000/4.000000/8.000000:d/0/8.000000/0.000000/12.000000/4.000000:n/0/0.000000/5.500000/4.000000/8.000000:R/90/270/0,box=1.000000/10.000000/1.000000:15.000000/12.000000/15.000000:u/0/8.250000/4.250000/11.750000/7.750000:s/0/0.250000/5.000000/3.750000/5.500000:w/0/0.250000/5.000000/3.750000/5.500000:e/0/0.250000/5.000000/3.750000/5.500000:n/0/0.250000/5.000000/3.750000/5.500000:R/90/270/0,box=1.000000/16.000000/1.000000:11.000000/20.000000/5.000000:u180/0/5.250000/2.750000/7.750000/3.750000:s/0/1.500000/0.000000/4.000000/1.000000:w/0/3.000000/0.000000/4.000000/1.000000:d/0/4.250000/2.750000/6.750000/3.750000:n/0/1.250000/0.000000/3.750000/1.000000:R/90/270/0,box=11.000000/16.000000/1.000000:15.000000/20.000000/11.000000:u/0/6.750000/0.250000/7.750000/2.750000:w/0/1.500000/0.000000/4.000000/1.000000:e/0/1.500000/0.000000/4.000000/1.000000:d/0/6.750000/1.250000/7.750000/3.750000:n/0/2.750000/0.000000/3.750000/1.000000:R/90/270/0,box=5.000000/16.000000/11.000000:15.000000/20.000000/15.000000:u180/0/4.250000/0.250000/6.750000/1.250000:s/0/1.250000/0.000000/3.750000/1.000000:e/0/3.000000/0.000000/4.000000/1.000000:d/0/5.250000/0.250000/7.750000/1.250000:n/0/1.500000/0.000000/4.000000/1.000000:R/90/270/0,box=1.000000/16.000000/5.000000:5.000000/20.000000/15.000000:u180/0/6.750000/0.250000/7.750000/2.750000:s/0/2.750000/0.000000/3.750000/1.000000:w/0/1.500000/0.000000/4.000000/1.000000:e/0/1.500000/0.000000/4.000000/1.000000:d/0/4.250000/0.250000/5.250000/2.750000:R/90/270/0,box=6.000000/12.000000/6.000000:10.000000/22.000000/10.000000:u/0/7.000000/4.500000/8.000000/5.500000:s/0/7.000000/5.500000/8.000000/8.000000:w/0/7.000000/5.500000/8.000000/8.000000:e/0/7.000000/5.500000/8.000000/8.000000:n/0/7.000000/5.500000/8.000000/8.000000:R/90/270/0,box=0.500000/15.500000/7.500000:15.500000/20.500000/8.500000:u/0/4.000000/4.000000/7.750000/4.250000:s/0/4.000000/4.000000/7.750000/4.250000:w/0/4.000000/4.000000/4.250000/5.000000:e/0/4.000000/4.000000/4.250000/5.000000:d/0/4.000000/4.000000/7.750000/4.250000:n/0/4.000000/4.000000/7.750000/4.250000:R/90/270/0,box=7.500000/15.500000/0.500000:8.500000/20.500000/15.500000:u270/0/4.000000/4.000000/7.750000/4.250000:s/0/4.000000/4.000000/4.250000/5.000000:w/0/4.000000/4.000000/7.750000/4.250000:e/0/4.000000/4.000000/7.750000/4.250000:d90/0/4.000000/4.000000/7.750000/4.250000:n/0/4.000000/4.000000/4.250000/5.000000:R/90/270/0,box=0.750000/15.750000/0.750000:15.250000/20.250000/15.250000:u/1/0.000000/0.000000/14.500000/14.500000:s/1/0.000000/0.000000/14.500000/4.500000:w/1/0.000000/0.000000/14.500000/4.500000:e/1/0.000000/0.000000/14.500000/4.500000:d/1/0.000000/0.000000/14.500000/14.500000:n/1/0.000000/0.000000/14.500000/4.500000:R/90/270/0
|
|
||||||
modellist:id=%tesla_coil,state=powered:false/facing:east,box=0.000000/0.000000/0.000000:16.000000/10.000000/16.000000:u/0/8.000000/0.000000/12.000000/4.000000:s/0/0.000000/5.500000/4.000000/8.000000:w/0/0.000000/5.500000/4.000000/8.000000:e/0/0.000000/5.500000/4.000000/8.000000:d/0/8.000000/0.000000/12.000000/4.000000:n/0/0.000000/5.500000/4.000000/8.000000:R/90/270/0,box=1.000000/10.000000/1.000000:15.000000/12.000000/15.000000:u/0/8.250000/4.250000/11.750000/7.750000:s/0/0.250000/5.000000/3.750000/5.500000:w/0/0.250000/5.000000/3.750000/5.500000:e/0/0.250000/5.000000/3.750000/5.500000:n/0/0.250000/5.000000/3.750000/5.500000:R/90/270/0,box=1.000000/16.000000/1.000000:11.000000/20.000000/5.000000:u180/0/5.250000/2.750000/7.750000/3.750000:s/0/1.500000/0.000000/4.000000/1.000000:w/0/3.000000/0.000000/4.000000/1.000000:d/0/4.250000/2.750000/6.750000/3.750000:n/0/1.250000/0.000000/3.750000/1.000000:R/90/270/0,box=11.000000/16.000000/1.000000:15.000000/20.000000/11.000000:u/0/6.750000/0.250000/7.750000/2.750000:w/0/1.500000/0.000000/4.000000/1.000000:e/0/1.500000/0.000000/4.000000/1.000000:d/0/6.750000/1.250000/7.750000/3.750000:n/0/2.750000/0.000000/3.750000/1.000000:R/90/270/0,box=5.000000/16.000000/11.000000:15.000000/20.000000/15.000000:u180/0/4.250000/0.250000/6.750000/1.250000:s/0/1.250000/0.000000/3.750000/1.000000:e/0/3.000000/0.000000/4.000000/1.000000:d/0/5.250000/0.250000/7.750000/1.250000:n/0/1.500000/0.000000/4.000000/1.000000:R/90/270/0,box=1.000000/16.000000/5.000000:5.000000/20.000000/15.000000:u180/0/6.750000/0.250000/7.750000/2.750000:s/0/2.750000/0.000000/3.750000/1.000000:w/0/1.500000/0.000000/4.000000/1.000000:e/0/1.500000/0.000000/4.000000/1.000000:d/0/4.250000/0.250000/5.250000/2.750000:R/90/270/0,box=6.000000/12.000000/6.000000:10.000000/22.000000/10.000000:u/0/7.000000/4.500000/8.000000/5.500000:s/0/7.000000/5.500000/8.000000/8.000000:w/0/7.000000/5.500000/8.000000/8.000000:e/0/7.000000/5.500000/8.000000/8.000000:n/0/7.000000/5.500000/8.000000/8.000000:R/90/270/0,box=0.500000/15.500000/7.500000:15.500000/20.500000/8.500000:u/0/4.000000/4.000000/7.750000/4.250000:s/0/4.000000/4.000000/7.750000/4.250000:w/0/4.000000/4.000000/4.250000/5.000000:e/0/4.000000/4.000000/4.250000/5.000000:d/0/4.000000/4.000000/7.750000/4.250000:n/0/4.000000/4.000000/7.750000/4.250000:R/90/270/0,box=7.500000/15.500000/0.500000:8.500000/20.500000/15.500000:u270/0/4.000000/4.000000/7.750000/4.250000:s/0/4.000000/4.000000/4.250000/5.000000:w/0/4.000000/4.000000/7.750000/4.250000:e/0/4.000000/4.000000/7.750000/4.250000:d90/0/4.000000/4.000000/7.750000/4.250000:n/0/4.000000/4.000000/4.250000/5.000000:R/90/270/0
|
|
||||||
modellist:id=%tesla_coil,state=powered:true/facing:south,box=0.000000/0.000000/0.000000:16.000000/10.000000/16.000000:u/0/8.000000/0.000000/12.000000/4.000000:s/0/0.000000/5.500000/4.000000/8.000000:w/0/0.000000/5.500000/4.000000/8.000000:e/0/0.000000/5.500000/4.000000/8.000000:d/0/8.000000/0.000000/12.000000/4.000000:n/0/0.000000/5.500000/4.000000/8.000000:R/90/0/0,box=1.000000/10.000000/1.000000:15.000000/12.000000/15.000000:u/0/8.250000/4.250000/11.750000/7.750000:s/0/0.250000/5.000000/3.750000/5.500000:w/0/0.250000/5.000000/3.750000/5.500000:e/0/0.250000/5.000000/3.750000/5.500000:n/0/0.250000/5.000000/3.750000/5.500000:R/90/0/0,box=1.000000/16.000000/1.000000:11.000000/20.000000/5.000000:u180/0/5.250000/2.750000/7.750000/3.750000:s/0/1.500000/0.000000/4.000000/1.000000:w/0/3.000000/0.000000/4.000000/1.000000:d/0/4.250000/2.750000/6.750000/3.750000:n/0/1.250000/0.000000/3.750000/1.000000:R/90/0/0,box=11.000000/16.000000/1.000000:15.000000/20.000000/11.000000:u/0/6.750000/0.250000/7.750000/2.750000:w/0/1.500000/0.000000/4.000000/1.000000:e/0/1.500000/0.000000/4.000000/1.000000:d/0/6.750000/1.250000/7.750000/3.750000:n/0/2.750000/0.000000/3.750000/1.000000:R/90/0/0,box=5.000000/16.000000/11.000000:15.000000/20.000000/15.000000:u180/0/4.250000/0.250000/6.750000/1.250000:s/0/1.250000/0.000000/3.750000/1.000000:e/0/3.000000/0.000000/4.000000/1.000000:d/0/5.250000/0.250000/7.750000/1.250000:n/0/1.500000/0.000000/4.000000/1.000000:R/90/0/0,box=1.000000/16.000000/5.000000:5.000000/20.000000/15.000000:u180/0/6.750000/0.250000/7.750000/2.750000:s/0/2.750000/0.000000/3.750000/1.000000:w/0/1.500000/0.000000/4.000000/1.000000:e/0/1.500000/0.000000/4.000000/1.000000:d/0/4.250000/0.250000/5.250000/2.750000:R/90/0/0,box=6.000000/12.000000/6.000000:10.000000/22.000000/10.000000:u/0/7.000000/4.500000/8.000000/5.500000:s/0/7.000000/5.500000/8.000000/8.000000:w/0/7.000000/5.500000/8.000000/8.000000:e/0/7.000000/5.500000/8.000000/8.000000:n/0/7.000000/5.500000/8.000000/8.000000:R/90/0/0,box=0.500000/15.500000/7.500000:15.500000/20.500000/8.500000:u/0/4.000000/4.000000/7.750000/4.250000:s/0/4.000000/4.000000/7.750000/4.250000:w/0/4.000000/4.000000/4.250000/5.000000:e/0/4.000000/4.000000/4.250000/5.000000:d/0/4.000000/4.000000/7.750000/4.250000:n/0/4.000000/4.000000/7.750000/4.250000:R/90/0/0,box=7.500000/15.500000/0.500000:8.500000/20.500000/15.500000:u270/0/4.000000/4.000000/7.750000/4.250000:s/0/4.000000/4.000000/4.250000/5.000000:w/0/4.000000/4.000000/7.750000/4.250000:e/0/4.000000/4.000000/7.750000/4.250000:d90/0/4.000000/4.000000/7.750000/4.250000:n/0/4.000000/4.000000/4.250000/5.000000:R/90/0/0,box=0.750000/15.750000/0.750000:15.250000/20.250000/15.250000:u/1/0.000000/0.000000/14.500000/14.500000:s/1/0.000000/0.000000/14.500000/4.500000:w/1/0.000000/0.000000/14.500000/4.500000:e/1/0.000000/0.000000/14.500000/4.500000:d/1/0.000000/0.000000/14.500000/14.500000:n/1/0.000000/0.000000/14.500000/4.500000:R/90/0/0
|
|
||||||
modellist:id=%tesla_coil,state=powered:false/facing:south,box=0.000000/0.000000/0.000000:16.000000/10.000000/16.000000:u/0/8.000000/0.000000/12.000000/4.000000:s/0/0.000000/5.500000/4.000000/8.000000:w/0/0.000000/5.500000/4.000000/8.000000:e/0/0.000000/5.500000/4.000000/8.000000:d/0/8.000000/0.000000/12.000000/4.000000:n/0/0.000000/5.500000/4.000000/8.000000:R/90/0/0,box=1.000000/10.000000/1.000000:15.000000/12.000000/15.000000:u/0/8.250000/4.250000/11.750000/7.750000:s/0/0.250000/5.000000/3.750000/5.500000:w/0/0.250000/5.000000/3.750000/5.500000:e/0/0.250000/5.000000/3.750000/5.500000:n/0/0.250000/5.000000/3.750000/5.500000:R/90/0/0,box=1.000000/16.000000/1.000000:11.000000/20.000000/5.000000:u180/0/5.250000/2.750000/7.750000/3.750000:s/0/1.500000/0.000000/4.000000/1.000000:w/0/3.000000/0.000000/4.000000/1.000000:d/0/4.250000/2.750000/6.750000/3.750000:n/0/1.250000/0.000000/3.750000/1.000000:R/90/0/0,box=11.000000/16.000000/1.000000:15.000000/20.000000/11.000000:u/0/6.750000/0.250000/7.750000/2.750000:w/0/1.500000/0.000000/4.000000/1.000000:e/0/1.500000/0.000000/4.000000/1.000000:d/0/6.750000/1.250000/7.750000/3.750000:n/0/2.750000/0.000000/3.750000/1.000000:R/90/0/0,box=5.000000/16.000000/11.000000:15.000000/20.000000/15.000000:u180/0/4.250000/0.250000/6.750000/1.250000:s/0/1.250000/0.000000/3.750000/1.000000:e/0/3.000000/0.000000/4.000000/1.000000:d/0/5.250000/0.250000/7.750000/1.250000:n/0/1.500000/0.000000/4.000000/1.000000:R/90/0/0,box=1.000000/16.000000/5.000000:5.000000/20.000000/15.000000:u180/0/6.750000/0.250000/7.750000/2.750000:s/0/2.750000/0.000000/3.750000/1.000000:w/0/1.500000/0.000000/4.000000/1.000000:e/0/1.500000/0.000000/4.000000/1.000000:d/0/4.250000/0.250000/5.250000/2.750000:R/90/0/0,box=6.000000/12.000000/6.000000:10.000000/22.000000/10.000000:u/0/7.000000/4.500000/8.000000/5.500000:s/0/7.000000/5.500000/8.000000/8.000000:w/0/7.000000/5.500000/8.000000/8.000000:e/0/7.000000/5.500000/8.000000/8.000000:n/0/7.000000/5.500000/8.000000/8.000000:R/90/0/0,box=0.500000/15.500000/7.500000:15.500000/20.500000/8.500000:u/0/4.000000/4.000000/7.750000/4.250000:s/0/4.000000/4.000000/7.750000/4.250000:w/0/4.000000/4.000000/4.250000/5.000000:e/0/4.000000/4.000000/4.250000/5.000000:d/0/4.000000/4.000000/7.750000/4.250000:n/0/4.000000/4.000000/7.750000/4.250000:R/90/0/0,box=7.500000/15.500000/0.500000:8.500000/20.500000/15.500000:u270/0/4.000000/4.000000/7.750000/4.250000:s/0/4.000000/4.000000/4.250000/5.000000:w/0/4.000000/4.000000/7.750000/4.250000:e/0/4.000000/4.000000/7.750000/4.250000:d90/0/4.000000/4.000000/7.750000/4.250000:n/0/4.000000/4.000000/4.250000/5.000000:R/90/0/0
|
|
||||||
modellist:id=%tesla_coil,state=powered:true/facing:west,box=0.000000/0.000000/0.000000:16.000000/10.000000/16.000000:u/0/8.000000/0.000000/12.000000/4.000000:s/0/0.000000/5.500000/4.000000/8.000000:w/0/0.000000/5.500000/4.000000/8.000000:e/0/0.000000/5.500000/4.000000/8.000000:d/0/8.000000/0.000000/12.000000/4.000000:n/0/0.000000/5.500000/4.000000/8.000000:R/90/90/0,box=1.000000/10.000000/1.000000:15.000000/12.000000/15.000000:u/0/8.250000/4.250000/11.750000/7.750000:s/0/0.250000/5.000000/3.750000/5.500000:w/0/0.250000/5.000000/3.750000/5.500000:e/0/0.250000/5.000000/3.750000/5.500000:n/0/0.250000/5.000000/3.750000/5.500000:R/90/90/0,box=1.000000/16.000000/1.000000:11.000000/20.000000/5.000000:u180/0/5.250000/2.750000/7.750000/3.750000:s/0/1.500000/0.000000/4.000000/1.000000:w/0/3.000000/0.000000/4.000000/1.000000:d/0/4.250000/2.750000/6.750000/3.750000:n/0/1.250000/0.000000/3.750000/1.000000:R/90/90/0,box=11.000000/16.000000/1.000000:15.000000/20.000000/11.000000:u/0/6.750000/0.250000/7.750000/2.750000:w/0/1.500000/0.000000/4.000000/1.000000:e/0/1.500000/0.000000/4.000000/1.000000:d/0/6.750000/1.250000/7.750000/3.750000:n/0/2.750000/0.000000/3.750000/1.000000:R/90/90/0,box=5.000000/16.000000/11.000000:15.000000/20.000000/15.000000:u180/0/4.250000/0.250000/6.750000/1.250000:s/0/1.250000/0.000000/3.750000/1.000000:e/0/3.000000/0.000000/4.000000/1.000000:d/0/5.250000/0.250000/7.750000/1.250000:n/0/1.500000/0.000000/4.000000/1.000000:R/90/90/0,box=1.000000/16.000000/5.000000:5.000000/20.000000/15.000000:u180/0/6.750000/0.250000/7.750000/2.750000:s/0/2.750000/0.000000/3.750000/1.000000:w/0/1.500000/0.000000/4.000000/1.000000:e/0/1.500000/0.000000/4.000000/1.000000:d/0/4.250000/0.250000/5.250000/2.750000:R/90/90/0,box=6.000000/12.000000/6.000000:10.000000/22.000000/10.000000:u/0/7.000000/4.500000/8.000000/5.500000:s/0/7.000000/5.500000/8.000000/8.000000:w/0/7.000000/5.500000/8.000000/8.000000:e/0/7.000000/5.500000/8.000000/8.000000:n/0/7.000000/5.500000/8.000000/8.000000:R/90/90/0,box=0.500000/15.500000/7.500000:15.500000/20.500000/8.500000:u/0/4.000000/4.000000/7.750000/4.250000:s/0/4.000000/4.000000/7.750000/4.250000:w/0/4.000000/4.000000/4.250000/5.000000:e/0/4.000000/4.000000/4.250000/5.000000:d/0/4.000000/4.000000/7.750000/4.250000:n/0/4.000000/4.000000/7.750000/4.250000:R/90/90/0,box=7.500000/15.500000/0.500000:8.500000/20.500000/15.500000:u270/0/4.000000/4.000000/7.750000/4.250000:s/0/4.000000/4.000000/4.250000/5.000000:w/0/4.000000/4.000000/7.750000/4.250000:e/0/4.000000/4.000000/7.750000/4.250000:d90/0/4.000000/4.000000/7.750000/4.250000:n/0/4.000000/4.000000/4.250000/5.000000:R/90/90/0,box=0.750000/15.750000/0.750000:15.250000/20.250000/15.250000:u/1/0.000000/0.000000/14.500000/14.500000:s/1/0.000000/0.000000/14.500000/4.500000:w/1/0.000000/0.000000/14.500000/4.500000:e/1/0.000000/0.000000/14.500000/4.500000:d/1/0.000000/0.000000/14.500000/14.500000:n/1/0.000000/0.000000/14.500000/4.500000:R/90/90/0
|
|
||||||
modellist:id=%tesla_coil,state=powered:false/facing:west,box=0.000000/0.000000/0.000000:16.000000/10.000000/16.000000:u/0/8.000000/0.000000/12.000000/4.000000:s/0/0.000000/5.500000/4.000000/8.000000:w/0/0.000000/5.500000/4.000000/8.000000:e/0/0.000000/5.500000/4.000000/8.000000:d/0/8.000000/0.000000/12.000000/4.000000:n/0/0.000000/5.500000/4.000000/8.000000:R/90/90/0,box=1.000000/10.000000/1.000000:15.000000/12.000000/15.000000:u/0/8.250000/4.250000/11.750000/7.750000:s/0/0.250000/5.000000/3.750000/5.500000:w/0/0.250000/5.000000/3.750000/5.500000:e/0/0.250000/5.000000/3.750000/5.500000:n/0/0.250000/5.000000/3.750000/5.500000:R/90/90/0,box=1.000000/16.000000/1.000000:11.000000/20.000000/5.000000:u180/0/5.250000/2.750000/7.750000/3.750000:s/0/1.500000/0.000000/4.000000/1.000000:w/0/3.000000/0.000000/4.000000/1.000000:d/0/4.250000/2.750000/6.750000/3.750000:n/0/1.250000/0.000000/3.750000/1.000000:R/90/90/0,box=11.000000/16.000000/1.000000:15.000000/20.000000/11.000000:u/0/6.750000/0.250000/7.750000/2.750000:w/0/1.500000/0.000000/4.000000/1.000000:e/0/1.500000/0.000000/4.000000/1.000000:d/0/6.750000/1.250000/7.750000/3.750000:n/0/2.750000/0.000000/3.750000/1.000000:R/90/90/0,box=5.000000/16.000000/11.000000:15.000000/20.000000/15.000000:u180/0/4.250000/0.250000/6.750000/1.250000:s/0/1.250000/0.000000/3.750000/1.000000:e/0/3.000000/0.000000/4.000000/1.000000:d/0/5.250000/0.250000/7.750000/1.250000:n/0/1.500000/0.000000/4.000000/1.000000:R/90/90/0,box=1.000000/16.000000/5.000000:5.000000/20.000000/15.000000:u180/0/6.750000/0.250000/7.750000/2.750000:s/0/2.750000/0.000000/3.750000/1.000000:w/0/1.500000/0.000000/4.000000/1.000000:e/0/1.500000/0.000000/4.000000/1.000000:d/0/4.250000/0.250000/5.250000/2.750000:R/90/90/0,box=6.000000/12.000000/6.000000:10.000000/22.000000/10.000000:u/0/7.000000/4.500000/8.000000/5.500000:s/0/7.000000/5.500000/8.000000/8.000000:w/0/7.000000/5.500000/8.000000/8.000000:e/0/7.000000/5.500000/8.000000/8.000000:n/0/7.000000/5.500000/8.000000/8.000000:R/90/90/0,box=0.500000/15.500000/7.500000:15.500000/20.500000/8.500000:u/0/4.000000/4.000000/7.750000/4.250000:s/0/4.000000/4.000000/7.750000/4.250000:w/0/4.000000/4.000000/4.250000/5.000000:e/0/4.000000/4.000000/4.250000/5.000000:d/0/4.000000/4.000000/7.750000/4.250000:n/0/4.000000/4.000000/7.750000/4.250000:R/90/90/0,box=7.500000/15.500000/0.500000:8.500000/20.500000/15.500000:u270/0/4.000000/4.000000/7.750000/4.250000:s/0/4.000000/4.000000/4.250000/5.000000:w/0/4.000000/4.000000/7.750000/4.250000:e/0/4.000000/4.000000/7.750000/4.250000:d90/0/4.000000/4.000000/7.750000/4.250000:n/0/4.000000/4.000000/4.250000/5.000000:R/90/90/0
|
|
||||||
modellist:id=%tesla_coil,state=powered:true/facing:up,box=0.000000/0.000000/0.000000:16.000000/10.000000/16.000000:u/0/8.000000/0.000000/12.000000/4.000000:s/0/0.000000/5.500000/4.000000/8.000000:w/0/0.000000/5.500000/4.000000/8.000000:e/0/0.000000/5.500000/4.000000/8.000000:d/0/8.000000/0.000000/12.000000/4.000000:n/0/0.000000/5.500000/4.000000/8.000000:R/180/90/0,box=1.000000/10.000000/1.000000:15.000000/12.000000/15.000000:u/0/8.250000/4.250000/11.750000/7.750000:s/0/0.250000/5.000000/3.750000/5.500000:w/0/0.250000/5.000000/3.750000/5.500000:e/0/0.250000/5.000000/3.750000/5.500000:n/0/0.250000/5.000000/3.750000/5.500000:R/180/90/0,box=1.000000/16.000000/1.000000:11.000000/20.000000/5.000000:u180/0/5.250000/2.750000/7.750000/3.750000:s/0/1.500000/0.000000/4.000000/1.000000:w/0/3.000000/0.000000/4.000000/1.000000:d/0/4.250000/2.750000/6.750000/3.750000:n/0/1.250000/0.000000/3.750000/1.000000:R/180/90/0,box=11.000000/16.000000/1.000000:15.000000/20.000000/11.000000:u/0/6.750000/0.250000/7.750000/2.750000:w/0/1.500000/0.000000/4.000000/1.000000:e/0/1.500000/0.000000/4.000000/1.000000:d/0/6.750000/1.250000/7.750000/3.750000:n/0/2.750000/0.000000/3.750000/1.000000:R/180/90/0,box=5.000000/16.000000/11.000000:15.000000/20.000000/15.000000:u180/0/4.250000/0.250000/6.750000/1.250000:s/0/1.250000/0.000000/3.750000/1.000000:e/0/3.000000/0.000000/4.000000/1.000000:d/0/5.250000/0.250000/7.750000/1.250000:n/0/1.500000/0.000000/4.000000/1.000000:R/180/90/0,box=1.000000/16.000000/5.000000:5.000000/20.000000/15.000000:u180/0/6.750000/0.250000/7.750000/2.750000:s/0/2.750000/0.000000/3.750000/1.000000:w/0/1.500000/0.000000/4.000000/1.000000:e/0/1.500000/0.000000/4.000000/1.000000:d/0/4.250000/0.250000/5.250000/2.750000:R/180/90/0,box=6.000000/12.000000/6.000000:10.000000/22.000000/10.000000:u/0/7.000000/4.500000/8.000000/5.500000:s/0/7.000000/5.500000/8.000000/8.000000:w/0/7.000000/5.500000/8.000000/8.000000:e/0/7.000000/5.500000/8.000000/8.000000:n/0/7.000000/5.500000/8.000000/8.000000:R/180/90/0,box=0.500000/15.500000/7.500000:15.500000/20.500000/8.500000:u/0/4.000000/4.000000/7.750000/4.250000:s/0/4.000000/4.000000/7.750000/4.250000:w/0/4.000000/4.000000/4.250000/5.000000:e/0/4.000000/4.000000/4.250000/5.000000:d/0/4.000000/4.000000/7.750000/4.250000:n/0/4.000000/4.000000/7.750000/4.250000:R/180/90/0,box=7.500000/15.500000/0.500000:8.500000/20.500000/15.500000:u270/0/4.000000/4.000000/7.750000/4.250000:s/0/4.000000/4.000000/4.250000/5.000000:w/0/4.000000/4.000000/7.750000/4.250000:e/0/4.000000/4.000000/7.750000/4.250000:d90/0/4.000000/4.000000/7.750000/4.250000:n/0/4.000000/4.000000/4.250000/5.000000:R/180/90/0,box=0.750000/15.750000/0.750000:15.250000/20.250000/15.250000:u/1/0.000000/0.000000/14.500000/14.500000:s/1/0.000000/0.000000/14.500000/4.500000:w/1/0.000000/0.000000/14.500000/4.500000:e/1/0.000000/0.000000/14.500000/4.500000:d/1/0.000000/0.000000/14.500000/14.500000:n/1/0.000000/0.000000/14.500000/4.500000:R/180/90/0
|
|
||||||
modellist:id=%tesla_coil,state=powered:false/facing:up,box=0.000000/0.000000/0.000000:16.000000/10.000000/16.000000:u/0/8.000000/0.000000/12.000000/4.000000:s/0/0.000000/5.500000/4.000000/8.000000:w/0/0.000000/5.500000/4.000000/8.000000:e/0/0.000000/5.500000/4.000000/8.000000:d/0/8.000000/0.000000/12.000000/4.000000:n/0/0.000000/5.500000/4.000000/8.000000:R/180/90/0,box=1.000000/10.000000/1.000000:15.000000/12.000000/15.000000:u/0/8.250000/4.250000/11.750000/7.750000:s/0/0.250000/5.000000/3.750000/5.500000:w/0/0.250000/5.000000/3.750000/5.500000:e/0/0.250000/5.000000/3.750000/5.500000:n/0/0.250000/5.000000/3.750000/5.500000:R/180/90/0,box=1.000000/16.000000/1.000000:11.000000/20.000000/5.000000:u180/0/5.250000/2.750000/7.750000/3.750000:s/0/1.500000/0.000000/4.000000/1.000000:w/0/3.000000/0.000000/4.000000/1.000000:d/0/4.250000/2.750000/6.750000/3.750000:n/0/1.250000/0.000000/3.750000/1.000000:R/180/90/0,box=11.000000/16.000000/1.000000:15.000000/20.000000/11.000000:u/0/6.750000/0.250000/7.750000/2.750000:w/0/1.500000/0.000000/4.000000/1.000000:e/0/1.500000/0.000000/4.000000/1.000000:d/0/6.750000/1.250000/7.750000/3.750000:n/0/2.750000/0.000000/3.750000/1.000000:R/180/90/0,box=5.000000/16.000000/11.000000:15.000000/20.000000/15.000000:u180/0/4.250000/0.250000/6.750000/1.250000:s/0/1.250000/0.000000/3.750000/1.000000:e/0/3.000000/0.000000/4.000000/1.000000:d/0/5.250000/0.250000/7.750000/1.250000:n/0/1.500000/0.000000/4.000000/1.000000:R/180/90/0,box=1.000000/16.000000/5.000000:5.000000/20.000000/15.000000:u180/0/6.750000/0.250000/7.750000/2.750000:s/0/2.750000/0.000000/3.750000/1.000000:w/0/1.500000/0.000000/4.000000/1.000000:e/0/1.500000/0.000000/4.000000/1.000000:d/0/4.250000/0.250000/5.250000/2.750000:R/180/90/0,box=6.000000/12.000000/6.000000:10.000000/22.000000/10.000000:u/0/7.000000/4.500000/8.000000/5.500000:s/0/7.000000/5.500000/8.000000/8.000000:w/0/7.000000/5.500000/8.000000/8.000000:e/0/7.000000/5.500000/8.000000/8.000000:n/0/7.000000/5.500000/8.000000/8.000000:R/180/90/0,box=0.500000/15.500000/7.500000:15.500000/20.500000/8.500000:u/0/4.000000/4.000000/7.750000/4.250000:s/0/4.000000/4.000000/7.750000/4.250000:w/0/4.000000/4.000000/4.250000/5.000000:e/0/4.000000/4.000000/4.250000/5.000000:d/0/4.000000/4.000000/7.750000/4.250000:n/0/4.000000/4.000000/7.750000/4.250000:R/180/90/0,box=7.500000/15.500000/0.500000:8.500000/20.500000/15.500000:u270/0/4.000000/4.000000/7.750000/4.250000:s/0/4.000000/4.000000/4.250000/5.000000:w/0/4.000000/4.000000/7.750000/4.250000:e/0/4.000000/4.000000/7.750000/4.250000:d90/0/4.000000/4.000000/7.750000/4.250000:n/0/4.000000/4.000000/4.250000/5.000000:R/180/90/0
|
|
||||||
modellist:id=%tesla_coil,state=powered:true/facing:down,box=0.000000/0.000000/0.000000:16.000000/10.000000/16.000000:u/0/8.000000/0.000000/12.000000/4.000000:s/0/0.000000/5.500000/4.000000/8.000000:w/0/0.000000/5.500000/4.000000/8.000000:e/0/0.000000/5.500000/4.000000/8.000000:d/0/8.000000/0.000000/12.000000/4.000000:n/0/0.000000/5.500000/4.000000/8.000000:R/0/90/0,box=1.000000/10.000000/1.000000:15.000000/12.000000/15.000000:u/0/8.250000/4.250000/11.750000/7.750000:s/0/0.250000/5.000000/3.750000/5.500000:w/0/0.250000/5.000000/3.750000/5.500000:e/0/0.250000/5.000000/3.750000/5.500000:n/0/0.250000/5.000000/3.750000/5.500000:R/0/90/0,box=1.000000/16.000000/1.000000:11.000000/20.000000/5.000000:u180/0/5.250000/2.750000/7.750000/3.750000:s/0/1.500000/0.000000/4.000000/1.000000:w/0/3.000000/0.000000/4.000000/1.000000:d/0/4.250000/2.750000/6.750000/3.750000:n/0/1.250000/0.000000/3.750000/1.000000:R/0/90/0,box=11.000000/16.000000/1.000000:15.000000/20.000000/11.000000:u/0/6.750000/0.250000/7.750000/2.750000:w/0/1.500000/0.000000/4.000000/1.000000:e/0/1.500000/0.000000/4.000000/1.000000:d/0/6.750000/1.250000/7.750000/3.750000:n/0/2.750000/0.000000/3.750000/1.000000:R/0/90/0,box=5.000000/16.000000/11.000000:15.000000/20.000000/15.000000:u180/0/4.250000/0.250000/6.750000/1.250000:s/0/1.250000/0.000000/3.750000/1.000000:e/0/3.000000/0.000000/4.000000/1.000000:d/0/5.250000/0.250000/7.750000/1.250000:n/0/1.500000/0.000000/4.000000/1.000000:R/0/90/0,box=1.000000/16.000000/5.000000:5.000000/20.000000/15.000000:u180/0/6.750000/0.250000/7.750000/2.750000:s/0/2.750000/0.000000/3.750000/1.000000:w/0/1.500000/0.000000/4.000000/1.000000:e/0/1.500000/0.000000/4.000000/1.000000:d/0/4.250000/0.250000/5.250000/2.750000:R/0/90/0,box=6.000000/12.000000/6.000000:10.000000/22.000000/10.000000:u/0/7.000000/4.500000/8.000000/5.500000:s/0/7.000000/5.500000/8.000000/8.000000:w/0/7.000000/5.500000/8.000000/8.000000:e/0/7.000000/5.500000/8.000000/8.000000:n/0/7.000000/5.500000/8.000000/8.000000:R/0/90/0,box=0.500000/15.500000/7.500000:15.500000/20.500000/8.500000:u/0/4.000000/4.000000/7.750000/4.250000:s/0/4.000000/4.000000/7.750000/4.250000:w/0/4.000000/4.000000/4.250000/5.000000:e/0/4.000000/4.000000/4.250000/5.000000:d/0/4.000000/4.000000/7.750000/4.250000:n/0/4.000000/4.000000/7.750000/4.250000:R/0/90/0,box=7.500000/15.500000/0.500000:8.500000/20.500000/15.500000:u270/0/4.000000/4.000000/7.750000/4.250000:s/0/4.000000/4.000000/4.250000/5.000000:w/0/4.000000/4.000000/7.750000/4.250000:e/0/4.000000/4.000000/7.750000/4.250000:d90/0/4.000000/4.000000/7.750000/4.250000:n/0/4.000000/4.000000/4.250000/5.000000:R/0/90/0,box=0.750000/15.750000/0.750000:15.250000/20.250000/15.250000:u/1/0.000000/0.000000/14.500000/14.500000:s/1/0.000000/0.000000/14.500000/4.500000:w/1/0.000000/0.000000/14.500000/4.500000:e/1/0.000000/0.000000/14.500000/4.500000:d/1/0.000000/0.000000/14.500000/14.500000:n/1/0.000000/0.000000/14.500000/4.500000:R/0/90/0
|
|
||||||
modellist:id=%tesla_coil,state=powered:false/facing:down,box=0.000000/0.000000/0.000000:16.000000/10.000000/16.000000:u/0/8.000000/0.000000/12.000000/4.000000:s/0/0.000000/5.500000/4.000000/8.000000:w/0/0.000000/5.500000/4.000000/8.000000:e/0/0.000000/5.500000/4.000000/8.000000:d/0/8.000000/0.000000/12.000000/4.000000:n/0/0.000000/5.500000/4.000000/8.000000:R/0/90/0,box=1.000000/10.000000/1.000000:15.000000/12.000000/15.000000:u/0/8.250000/4.250000/11.750000/7.750000:s/0/0.250000/5.000000/3.750000/5.500000:w/0/0.250000/5.000000/3.750000/5.500000:e/0/0.250000/5.000000/3.750000/5.500000:n/0/0.250000/5.000000/3.750000/5.500000:R/0/90/0,box=1.000000/16.000000/1.000000:11.000000/20.000000/5.000000:u180/0/5.250000/2.750000/7.750000/3.750000:s/0/1.500000/0.000000/4.000000/1.000000:w/0/3.000000/0.000000/4.000000/1.000000:d/0/4.250000/2.750000/6.750000/3.750000:n/0/1.250000/0.000000/3.750000/1.000000:R/0/90/0,box=11.000000/16.000000/1.000000:15.000000/20.000000/11.000000:u/0/6.750000/0.250000/7.750000/2.750000:w/0/1.500000/0.000000/4.000000/1.000000:e/0/1.500000/0.000000/4.000000/1.000000:d/0/6.750000/1.250000/7.750000/3.750000:n/0/2.750000/0.000000/3.750000/1.000000:R/0/90/0,box=5.000000/16.000000/11.000000:15.000000/20.000000/15.000000:u180/0/4.250000/0.250000/6.750000/1.250000:s/0/1.250000/0.000000/3.750000/1.000000:e/0/3.000000/0.000000/4.000000/1.000000:d/0/5.250000/0.250000/7.750000/1.250000:n/0/1.500000/0.000000/4.000000/1.000000:R/0/90/0,box=1.000000/16.000000/5.000000:5.000000/20.000000/15.000000:u180/0/6.750000/0.250000/7.750000/2.750000:s/0/2.750000/0.000000/3.750000/1.000000:w/0/1.500000/0.000000/4.000000/1.000000:e/0/1.500000/0.000000/4.000000/1.000000:d/0/4.250000/0.250000/5.250000/2.750000:R/0/90/0,box=6.000000/12.000000/6.000000:10.000000/22.000000/10.000000:u/0/7.000000/4.500000/8.000000/5.500000:s/0/7.000000/5.500000/8.000000/8.000000:w/0/7.000000/5.500000/8.000000/8.000000:e/0/7.000000/5.500000/8.000000/8.000000:n/0/7.000000/5.500000/8.000000/8.000000:R/0/90/0,box=0.500000/15.500000/7.500000:15.500000/20.500000/8.500000:u/0/4.000000/4.000000/7.750000/4.250000:s/0/4.000000/4.000000/7.750000/4.250000:w/0/4.000000/4.000000/4.250000/5.000000:e/0/4.000000/4.000000/4.250000/5.000000:d/0/4.000000/4.000000/7.750000/4.250000:n/0/4.000000/4.000000/7.750000/4.250000:R/0/90/0,box=7.500000/15.500000/0.500000:8.500000/20.500000/15.500000:u270/0/4.000000/4.000000/7.750000/4.250000:s/0/4.000000/4.000000/4.250000/5.000000:w/0/4.000000/4.000000/7.750000/4.250000:e/0/4.000000/4.000000/7.750000/4.250000:d90/0/4.000000/4.000000/7.750000/4.250000:n/0/4.000000/4.000000/4.250000/5.000000:R/0/90/0
|
|
@ -1,124 +0,0 @@
|
|||||||
modname:createaddition
|
|
||||||
|
|
||||||
texture:id=brass_electric_motor,filename=assets/createaddition/textures/block/electric_motor/brass_electric_motor.png,xcount=1,ycount=1
|
|
||||||
texture:id=alternator,filename=assets/createaddition/textures/block/alternator/alternator.png,xcount=1,ycount=1
|
|
||||||
texture:id=andesite_casing,filename=assets/create/textures/block/andesite_casing.png,xcount=1,ycount=1
|
|
||||||
texture:id=andesite_casing_very_short,filename=assets/create/textures/block/andesite_casing_very_short.png,xcount=1,ycount=1
|
|
||||||
texture:id=fan_side,filename=assets/create/textures/block/fan_side.png,xcount=1,ycount=1
|
|
||||||
texture:id=crate_creative,filename=assets/create/textures/block/crate_creative.png,xcount=1,ycount=1
|
|
||||||
texture:id=creative_fluid_tank,filename=assets/create/textures/block/creative_fluid_tank.png,xcount=1,ycount=1
|
|
||||||
texture:id=accumulator,filename=assets/createaddition/textures/block/accumulator/accumulator.png,xcount=1,ycount=1
|
|
||||||
texture:id=connector,filename=assets/createaddition/textures/block/connector/connector.png,xcount=1,ycount=1
|
|
||||||
texture:id=heater,filename=assets/createaddition/textures/block/heater/heater.png,xcount=1,ycount=1
|
|
||||||
texture:id=redstone_relay_stone_on,filename=assets/createaddition/textures/block/redstone_relay/redstone_relay_stone_on.png,xcount=1,ycount=1
|
|
||||||
texture:id=smooth_stone,filename=assets/minecraft/textures/block/smooth_stone.png,xcount=1,ycount=1
|
|
||||||
texture:id=redstone_relay_stone,filename=assets/createaddition/textures/block/redstone_relay/redstone_relay_stone.png,xcount=1,ycount=1
|
|
||||||
texture:id=furnace_top,filename=assets/minecraft/textures/block/furnace_top.png,xcount=1,ycount=1
|
|
||||||
texture:id=furnace_side,filename=assets/minecraft/textures/block/furnace_side.png,xcount=1,ycount=1
|
|
||||||
texture:id=front_on,filename=assets/createaddition/textures/block/furnace_burner/front_on.png,xcount=1,ycount=1
|
|
||||||
texture:id=front,filename=assets/createaddition/textures/block/furnace_burner/front.png,xcount=1,ycount=1
|
|
||||||
texture:id=copper_casing,filename=assets/create/textures/block/copper_casing.png,xcount=1,ycount=1
|
|
||||||
texture:id=side,filename=assets/createaddition/textures/block/crude_burner/side.png,xcount=1,ycount=1
|
|
||||||
texture:id=front_on1,filename=assets/createaddition/textures/block/crude_burner/front_on.png,xcount=1,ycount=1
|
|
||||||
texture:id=front1,filename=assets/createaddition/textures/block/crude_burner/front.png,xcount=1,ycount=1
|
|
||||||
texture:id=top,filename=assets/createaddition/textures/block/chocolate_cake/top.png,xcount=1,ycount=1
|
|
||||||
texture:id=side1,filename=assets/createaddition/textures/block/chocolate_cake/side.png,xcount=1,ycount=1
|
|
||||||
texture:id=bottom,filename=assets/createaddition/textures/block/chocolate_cake/bottom.png,xcount=1,ycount=1
|
|
||||||
texture:id=inner,filename=assets/createaddition/textures/block/chocolate_cake/inner.png,xcount=1,ycount=1
|
|
||||||
texture:id=top1,filename=assets/createaddition/textures/block/honey_cake/top.png,xcount=1,ycount=1
|
|
||||||
texture:id=side2,filename=assets/createaddition/textures/block/honey_cake/side.png,xcount=1,ycount=1
|
|
||||||
texture:id=bottom1,filename=assets/createaddition/textures/block/honey_cake/bottom.png,xcount=1,ycount=1
|
|
||||||
texture:id=inner1,filename=assets/createaddition/textures/block/honey_cake/inner.png,xcount=1,ycount=1
|
|
||||||
texture:id=tesla_coil,filename=assets/createaddition/textures/block/tesla_coil/tesla_coil.png,xcount=1,ycount=1
|
|
||||||
texture:id=lightning,filename=assets/createaddition/textures/block/tesla_coil/lightning.png,xcount=1,ycount=1
|
|
||||||
block:id=%electric_motor,state=facing:north,patch0=0:brass_electric_motor,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%electric_motor,state=facing:east,patch0=0:brass_electric_motor,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%electric_motor,state=facing:south,patch0=0:brass_electric_motor,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%electric_motor,state=facing:west,patch0=0:brass_electric_motor,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%electric_motor,state=facing:up,patch0=0:brass_electric_motor,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%electric_motor,state=facing:down,patch0=0:brass_electric_motor,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%alternator,state=facing:north,patch0=0:alternator,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%alternator,state=facing:east,patch0=0:alternator,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%alternator,state=facing:south,patch0=0:alternator,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%alternator,state=facing:west,patch0=0:alternator,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%alternator,state=facing:up,patch0=0:alternator,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%alternator,state=facing:down,patch0=0:alternator,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%rolling_mill,state=facing:north,patch0=0:andesite_casing,patch1=0:andesite_casing_very_short,patch2=0:fan_side,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%rolling_mill,state=facing:south,patch0=0:andesite_casing,patch1=0:andesite_casing_very_short,patch2=0:fan_side,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%rolling_mill,state=facing:west,patch0=0:andesite_casing,patch1=0:andesite_casing_very_short,patch2=0:fan_side,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%rolling_mill,state=facing:east,patch0=0:andesite_casing,patch1=0:andesite_casing_very_short,patch2=0:fan_side,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%creative_energy,patch0=0:crate_creative,patch1=0:creative_fluid_tank,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%connector,state=facing:north,patch0=0:accumulator,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%connector,state=facing:east,patch0=0:accumulator,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%connector,state=facing:south,patch0=0:accumulator,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%connector,state=facing:west,patch0=0:accumulator,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%connector,state=facing:up,patch0=0:accumulator,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%connector,state=facing:down,patch0=0:accumulator,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%accumulator,state=facing:north,patch0=0:accumulator,patch1=0:connector,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%accumulator,state=facing:south,patch0=0:accumulator,patch1=0:connector,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%accumulator,state=facing:west,patch0=0:accumulator,patch1=0:connector,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%accumulator,state=facing:east,patch0=0:accumulator,patch1=0:connector,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%heater,state=facing:north,patch0=0:heater,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%heater,state=facing:east,patch0=0:heater,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%heater,state=facing:south,patch0=0:heater,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%heater,state=facing:west,patch0=0:heater,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%heater,state=facing:up,patch0=0:heater,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%heater,state=facing:down,patch0=0:heater,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%redstone_relay,state=facing:north/vertical:true/powered:true,patch0=0:redstone_relay_stone_on,patch1=0:smooth_stone,patch2=0:connector,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%redstone_relay,state=facing:north/vertical:false/powered:true,patch0=0:redstone_relay_stone_on,patch1=0:smooth_stone,patch2=0:connector,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%redstone_relay,state=facing:north/vertical:true/powered:false,patch0=0:redstone_relay_stone,patch1=0:smooth_stone,patch2=0:connector,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%redstone_relay,state=facing:north/vertical:false/powered:false,patch0=0:redstone_relay_stone,patch1=0:smooth_stone,patch2=0:connector,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%redstone_relay,state=facing:south/vertical:true/powered:true,patch0=0:redstone_relay_stone_on,patch1=0:smooth_stone,patch2=0:connector,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%redstone_relay,state=facing:south/vertical:false/powered:true,patch0=0:redstone_relay_stone_on,patch1=0:smooth_stone,patch2=0:connector,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%redstone_relay,state=facing:south/vertical:true/powered:false,patch0=0:redstone_relay_stone,patch1=0:smooth_stone,patch2=0:connector,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%redstone_relay,state=facing:south/vertical:false/powered:false,patch0=0:redstone_relay_stone,patch1=0:smooth_stone,patch2=0:connector,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%redstone_relay,state=facing:west/vertical:true/powered:true,patch0=0:redstone_relay_stone_on,patch1=0:smooth_stone,patch2=0:connector,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%redstone_relay,state=facing:west/vertical:false/powered:true,patch0=0:redstone_relay_stone_on,patch1=0:smooth_stone,patch2=0:connector,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%redstone_relay,state=facing:west/vertical:true/powered:false,patch0=0:redstone_relay_stone,patch1=0:smooth_stone,patch2=0:connector,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%redstone_relay,state=facing:west/vertical:false/powered:false,patch0=0:redstone_relay_stone,patch1=0:smooth_stone,patch2=0:connector,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%redstone_relay,state=facing:east/vertical:true/powered:true,patch0=0:redstone_relay_stone_on,patch1=0:smooth_stone,patch2=0:connector,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%redstone_relay,state=facing:east/vertical:false/powered:true,patch0=0:redstone_relay_stone_on,patch1=0:smooth_stone,patch2=0:connector,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%redstone_relay,state=facing:east/vertical:true/powered:false,patch0=0:redstone_relay_stone,patch1=0:smooth_stone,patch2=0:connector,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%redstone_relay,state=facing:east/vertical:false/powered:false,patch0=0:redstone_relay_stone,patch1=0:smooth_stone,patch2=0:connector,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%furnace_burner,state=facing:north/lit:true,patch0=0:furnace_side,patch1=0:furnace_top,patch2=0:front_on,patch3=0:furnace_side,patch4=0:furnace_top,patch5=0:furnace_side,stdrot=true
|
|
||||||
block:id=%furnace_burner,state=facing:north/lit:false,patch0=0:furnace_side,patch1=0:furnace_top,patch2=0:front,patch3=0:furnace_side,patch4=0:furnace_top,patch5=0:furnace_side,stdrot=true
|
|
||||||
block:id=%furnace_burner,state=facing:south/lit:true,patch0=0:furnace_top,patch1=0:furnace_side,patch2=0:front_on,stdrot=true
|
|
||||||
block:id=%furnace_burner,state=facing:south/lit:false,patch0=0:furnace_top,patch1=0:furnace_side,patch2=0:front,stdrot=true
|
|
||||||
block:id=%furnace_burner,state=facing:west/lit:true,patch0=0:furnace_top,patch1=0:furnace_side,patch2=0:front_on,stdrot=true
|
|
||||||
block:id=%furnace_burner,state=facing:west/lit:false,patch0=0:furnace_top,patch1=0:furnace_side,patch2=0:front,stdrot=true
|
|
||||||
block:id=%furnace_burner,state=facing:east/lit:true,patch0=0:furnace_top,patch1=0:furnace_side,patch2=0:front_on,stdrot=true
|
|
||||||
block:id=%furnace_burner,state=facing:east/lit:false,patch0=0:furnace_top,patch1=0:furnace_side,patch2=0:front,stdrot=true
|
|
||||||
block:id=%crude_burner,state=facing:north/lit:true,patch0=0:side,patch1=0:copper_casing,patch2=0:front_on1,patch3=0:side,patch4=0:copper_casing,patch5=0:side,stdrot=true
|
|
||||||
block:id=%crude_burner,state=facing:north/lit:false,patch0=0:side,patch1=0:copper_casing,patch2=0:front1,patch3=0:side,patch4=0:copper_casing,patch5=0:side,stdrot=true
|
|
||||||
block:id=%crude_burner,state=facing:south/lit:true,patch0=0:copper_casing,patch1=0:side,patch2=0:front_on1,stdrot=true
|
|
||||||
block:id=%crude_burner,state=facing:south/lit:false,patch0=0:copper_casing,patch1=0:side,patch2=0:front1,stdrot=true
|
|
||||||
block:id=%crude_burner,state=facing:west/lit:true,patch0=0:copper_casing,patch1=0:side,patch2=0:front_on1,stdrot=true
|
|
||||||
block:id=%crude_burner,state=facing:west/lit:false,patch0=0:copper_casing,patch1=0:side,patch2=0:front1,stdrot=true
|
|
||||||
block:id=%crude_burner,state=facing:east/lit:true,patch0=0:copper_casing,patch1=0:side,patch2=0:front_on1,stdrot=true
|
|
||||||
block:id=%crude_burner,state=facing:east/lit:false,patch0=0:copper_casing,patch1=0:side,patch2=0:front1,stdrot=true
|
|
||||||
block:id=%chocolate_cake,state=bites:0,patch0=0:top,patch1=0:side1,patch2=0:bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%chocolate_cake,state=bites:1,patch0=0:top,patch1=0:side1,patch2=0:bottom,patch3=0:inner,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%chocolate_cake,state=bites:2,patch0=0:top,patch1=0:side1,patch2=0:bottom,patch3=0:inner,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%chocolate_cake,state=bites:3,patch0=0:top,patch1=0:side1,patch2=0:bottom,patch3=0:inner,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%chocolate_cake,state=bites:4,patch0=0:top,patch1=0:side1,patch2=0:bottom,patch3=0:inner,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%chocolate_cake,state=bites:5,patch0=0:top,patch1=0:side1,patch2=0:bottom,patch3=0:inner,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%chocolate_cake,state=bites:6,patch0=0:top,patch1=0:side1,patch2=0:bottom,patch3=0:inner,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%honey_cake,state=bites:0,patch0=0:top1,patch1=0:side2,patch2=0:bottom1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%honey_cake,state=bites:1,patch0=0:top1,patch1=0:side2,patch2=0:bottom1,patch3=0:inner1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%honey_cake,state=bites:2,patch0=0:top1,patch1=0:side2,patch2=0:bottom1,patch3=0:inner1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%honey_cake,state=bites:3,patch0=0:top1,patch1=0:side2,patch2=0:bottom1,patch3=0:inner1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%honey_cake,state=bites:4,patch0=0:top1,patch1=0:side2,patch2=0:bottom1,patch3=0:inner1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%honey_cake,state=bites:5,patch0=0:top1,patch1=0:side2,patch2=0:bottom1,patch3=0:inner1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%honey_cake,state=bites:6,patch0=0:top1,patch1=0:side2,patch2=0:bottom1,patch3=0:inner1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%tesla_coil,state=powered:true/facing:north,patch0=0:tesla_coil,patch1=0:lightning,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%tesla_coil,state=powered:false/facing:north,patch0=0:tesla_coil,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%tesla_coil,state=powered:true/facing:east,patch0=0:tesla_coil,patch1=0:lightning,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%tesla_coil,state=powered:false/facing:east,patch0=0:tesla_coil,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%tesla_coil,state=powered:true/facing:south,patch0=0:tesla_coil,patch1=0:lightning,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%tesla_coil,state=powered:false/facing:south,patch0=0:tesla_coil,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%tesla_coil,state=powered:true/facing:west,patch0=0:tesla_coil,patch1=0:lightning,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%tesla_coil,state=powered:false/facing:west,patch0=0:tesla_coil,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%tesla_coil,state=powered:true/facing:up,patch0=0:tesla_coil,patch1=0:lightning,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%tesla_coil,state=powered:false/facing:up,patch0=0:tesla_coil,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%tesla_coil,state=powered:true/facing:down,patch0=0:tesla_coil,patch1=0:lightning,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%tesla_coil,state=powered:false/facing:down,patch0=0:tesla_coil,transparency=TRANSPARENT,stdrot=true
|
|
@ -1,3 +0,0 @@
|
|||||||
modname:createchunkloading
|
|
||||||
|
|
||||||
modellist:id=%chunk_loader,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=3.000000/3.000000/3.000000:13.000000/13.000000/13.000000:u/1/3.000000/3.000000/13.000000/13.000000:s/1/3.000000/3.000000/13.000000/13.000000:w/1/3.000000/3.000000/13.000000/13.000000:e/1/3.000000/3.000000/13.000000/13.000000:d/1/3.000000/3.000000/13.000000/13.000000:n/1/3.000000/3.000000/13.000000/13.000000
|
|
@ -1,5 +0,0 @@
|
|||||||
modname:createchunkloading
|
|
||||||
|
|
||||||
texture:id=glass,filename=assets/minecraft/textures/block/glass.png,xcount=1,ycount=1
|
|
||||||
texture:id=chunk_loader,filename=assets/createchunkloading/textures/block/chunk_loader.png,xcount=1,ycount=1
|
|
||||||
block:id=%chunk_loader,patch0=0:glass,patch1=0:chunk_loader,transparency=SEMITRANSPARENT,stdrot=true
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
@ -1,219 +0,0 @@
|
|||||||
modname:darkutils
|
|
||||||
|
|
||||||
modellist:id=%blank_plate,state=hidden:true
|
|
||||||
modellist:id=%blank_plate,state=hidden:false,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/15.000000/16.000000/16.000000:w/0/0.000000/15.000000/16.000000/16.000000:e/0/0.000000/15.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/15.000000/16.000000/16.000000
|
|
||||||
modellist:id=%vector_plate,state=facing:north/hidden:true/powered:true
|
|
||||||
modellist:id=%vector_plate,state=facing:north/hidden:true/powered:false
|
|
||||||
modellist:id=%vector_plate,state=facing:north/hidden:false/powered:true,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/15.000000/16.000000/16.000000:w/0/0.000000/15.000000/16.000000/16.000000:e/0/0.000000/15.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/15.000000/16.000000/16.000000
|
|
||||||
modellist:id=%vector_plate,state=facing:north/hidden:false/powered:false,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/15.000000/16.000000/16.000000:w/1/0.000000/15.000000/16.000000/16.000000:e/1/0.000000/15.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/15.000000/16.000000/16.000000
|
|
||||||
modellist:id=%vector_plate,state=facing:south/hidden:true/powered:true
|
|
||||||
modellist:id=%vector_plate,state=facing:south/hidden:true/powered:false
|
|
||||||
modellist:id=%vector_plate,state=facing:south/hidden:false/powered:true,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/15.000000/16.000000/16.000000:w/0/0.000000/15.000000/16.000000/16.000000:e/0/0.000000/15.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/15.000000/16.000000/16.000000
|
|
||||||
modellist:id=%vector_plate,state=facing:south/hidden:false/powered:false,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/15.000000/16.000000/16.000000:w/1/0.000000/15.000000/16.000000/16.000000:e/1/0.000000/15.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/15.000000/16.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%vector_plate,state=facing:west/hidden:true/powered:true
|
|
||||||
modellist:id=%vector_plate,state=facing:west/hidden:true/powered:false
|
|
||||||
modellist:id=%vector_plate,state=facing:west/hidden:false/powered:true,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/15.000000/16.000000/16.000000:w/0/0.000000/15.000000/16.000000/16.000000:e/0/0.000000/15.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/15.000000/16.000000/16.000000
|
|
||||||
modellist:id=%vector_plate,state=facing:west/hidden:false/powered:false,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/15.000000/16.000000/16.000000:w/1/0.000000/15.000000/16.000000/16.000000:e/1/0.000000/15.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/15.000000/16.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%vector_plate,state=facing:east/hidden:true/powered:true
|
|
||||||
modellist:id=%vector_plate,state=facing:east/hidden:true/powered:false
|
|
||||||
modellist:id=%vector_plate,state=facing:east/hidden:false/powered:true,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/15.000000/16.000000/16.000000:w/0/0.000000/15.000000/16.000000/16.000000:e/0/0.000000/15.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/15.000000/16.000000/16.000000
|
|
||||||
modellist:id=%vector_plate,state=facing:east/hidden:false/powered:false,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/15.000000/16.000000/16.000000:w/1/0.000000/15.000000/16.000000/16.000000:e/1/0.000000/15.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/15.000000/16.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%vector_plate_fast,state=facing:north/hidden:true/powered:true
|
|
||||||
modellist:id=%vector_plate_fast,state=facing:north/hidden:true/powered:false
|
|
||||||
modellist:id=%vector_plate_fast,state=facing:north/hidden:false/powered:true,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/15.000000/16.000000/16.000000:w/0/0.000000/15.000000/16.000000/16.000000:e/0/0.000000/15.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/15.000000/16.000000/16.000000
|
|
||||||
modellist:id=%vector_plate_fast,state=facing:north/hidden:false/powered:false,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/15.000000/16.000000/16.000000:w/1/0.000000/15.000000/16.000000/16.000000:e/1/0.000000/15.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/15.000000/16.000000/16.000000
|
|
||||||
modellist:id=%vector_plate_fast,state=facing:south/hidden:true/powered:true
|
|
||||||
modellist:id=%vector_plate_fast,state=facing:south/hidden:true/powered:false
|
|
||||||
modellist:id=%vector_plate_fast,state=facing:south/hidden:false/powered:true,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/15.000000/16.000000/16.000000:w/0/0.000000/15.000000/16.000000/16.000000:e/0/0.000000/15.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/15.000000/16.000000/16.000000
|
|
||||||
modellist:id=%vector_plate_fast,state=facing:south/hidden:false/powered:false,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/15.000000/16.000000/16.000000:w/1/0.000000/15.000000/16.000000/16.000000:e/1/0.000000/15.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/15.000000/16.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%vector_plate_fast,state=facing:west/hidden:true/powered:true
|
|
||||||
modellist:id=%vector_plate_fast,state=facing:west/hidden:true/powered:false
|
|
||||||
modellist:id=%vector_plate_fast,state=facing:west/hidden:false/powered:true,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/15.000000/16.000000/16.000000:w/0/0.000000/15.000000/16.000000/16.000000:e/0/0.000000/15.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/15.000000/16.000000/16.000000
|
|
||||||
modellist:id=%vector_plate_fast,state=facing:west/hidden:false/powered:false,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/15.000000/16.000000/16.000000:w/1/0.000000/15.000000/16.000000/16.000000:e/1/0.000000/15.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/15.000000/16.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%vector_plate_fast,state=facing:east/hidden:true/powered:true
|
|
||||||
modellist:id=%vector_plate_fast,state=facing:east/hidden:true/powered:false
|
|
||||||
modellist:id=%vector_plate_fast,state=facing:east/hidden:false/powered:true,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/15.000000/16.000000/16.000000:w/0/0.000000/15.000000/16.000000/16.000000:e/0/0.000000/15.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/15.000000/16.000000/16.000000
|
|
||||||
modellist:id=%vector_plate_fast,state=facing:east/hidden:false/powered:false,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/15.000000/16.000000/16.000000:w/1/0.000000/15.000000/16.000000/16.000000:e/1/0.000000/15.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/15.000000/16.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%vector_plate_extreme,state=facing:north/hidden:true/powered:true
|
|
||||||
modellist:id=%vector_plate_extreme,state=facing:north/hidden:true/powered:false
|
|
||||||
modellist:id=%vector_plate_extreme,state=facing:north/hidden:false/powered:true,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/15.000000/16.000000/16.000000:w/0/0.000000/15.000000/16.000000/16.000000:e/0/0.000000/15.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/15.000000/16.000000/16.000000
|
|
||||||
modellist:id=%vector_plate_extreme,state=facing:north/hidden:false/powered:false,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/15.000000/16.000000/16.000000:w/1/0.000000/15.000000/16.000000/16.000000:e/1/0.000000/15.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/15.000000/16.000000/16.000000
|
|
||||||
modellist:id=%vector_plate_extreme,state=facing:south/hidden:true/powered:true
|
|
||||||
modellist:id=%vector_plate_extreme,state=facing:south/hidden:true/powered:false
|
|
||||||
modellist:id=%vector_plate_extreme,state=facing:south/hidden:false/powered:true,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/15.000000/16.000000/16.000000:w/0/0.000000/15.000000/16.000000/16.000000:e/0/0.000000/15.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/15.000000/16.000000/16.000000
|
|
||||||
modellist:id=%vector_plate_extreme,state=facing:south/hidden:false/powered:false,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/15.000000/16.000000/16.000000:w/1/0.000000/15.000000/16.000000/16.000000:e/1/0.000000/15.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/15.000000/16.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%vector_plate_extreme,state=facing:west/hidden:true/powered:true
|
|
||||||
modellist:id=%vector_plate_extreme,state=facing:west/hidden:true/powered:false
|
|
||||||
modellist:id=%vector_plate_extreme,state=facing:west/hidden:false/powered:true,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/15.000000/16.000000/16.000000:w/0/0.000000/15.000000/16.000000/16.000000:e/0/0.000000/15.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/15.000000/16.000000/16.000000
|
|
||||||
modellist:id=%vector_plate_extreme,state=facing:west/hidden:false/powered:false,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/15.000000/16.000000/16.000000:w/1/0.000000/15.000000/16.000000/16.000000:e/1/0.000000/15.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/15.000000/16.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%vector_plate_extreme,state=facing:east/hidden:true/powered:true
|
|
||||||
modellist:id=%vector_plate_extreme,state=facing:east/hidden:true/powered:false
|
|
||||||
modellist:id=%vector_plate_extreme,state=facing:east/hidden:false/powered:true,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/15.000000/16.000000/16.000000:w/0/0.000000/15.000000/16.000000/16.000000:e/0/0.000000/15.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/15.000000/16.000000/16.000000
|
|
||||||
modellist:id=%vector_plate_extreme,state=facing:east/hidden:false/powered:false,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/15.000000/16.000000/16.000000:w/1/0.000000/15.000000/16.000000/16.000000:e/1/0.000000/15.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/15.000000/16.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%vector_plate_ultra,state=facing:north/hidden:true/powered:true
|
|
||||||
modellist:id=%vector_plate_ultra,state=facing:north/hidden:true/powered:false
|
|
||||||
modellist:id=%vector_plate_ultra,state=facing:north/hidden:false/powered:true,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/15.000000/16.000000/16.000000:w/0/0.000000/15.000000/16.000000/16.000000:e/0/0.000000/15.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/15.000000/16.000000/16.000000
|
|
||||||
modellist:id=%vector_plate_ultra,state=facing:north/hidden:false/powered:false,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/15.000000/16.000000/16.000000:w/1/0.000000/15.000000/16.000000/16.000000:e/1/0.000000/15.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/15.000000/16.000000/16.000000
|
|
||||||
modellist:id=%vector_plate_ultra,state=facing:south/hidden:true/powered:true
|
|
||||||
modellist:id=%vector_plate_ultra,state=facing:south/hidden:true/powered:false
|
|
||||||
modellist:id=%vector_plate_ultra,state=facing:south/hidden:false/powered:true,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/15.000000/16.000000/16.000000:w/0/0.000000/15.000000/16.000000/16.000000:e/0/0.000000/15.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/15.000000/16.000000/16.000000
|
|
||||||
modellist:id=%vector_plate_ultra,state=facing:south/hidden:false/powered:false,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/15.000000/16.000000/16.000000:w/1/0.000000/15.000000/16.000000/16.000000:e/1/0.000000/15.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/15.000000/16.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%vector_plate_ultra,state=facing:west/hidden:true/powered:true
|
|
||||||
modellist:id=%vector_plate_ultra,state=facing:west/hidden:true/powered:false
|
|
||||||
modellist:id=%vector_plate_ultra,state=facing:west/hidden:false/powered:true,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/15.000000/16.000000/16.000000:w/0/0.000000/15.000000/16.000000/16.000000:e/0/0.000000/15.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/15.000000/16.000000/16.000000
|
|
||||||
modellist:id=%vector_plate_ultra,state=facing:west/hidden:false/powered:false,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/15.000000/16.000000/16.000000:w/1/0.000000/15.000000/16.000000/16.000000:e/1/0.000000/15.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/15.000000/16.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%vector_plate_ultra,state=facing:east/hidden:true/powered:true
|
|
||||||
modellist:id=%vector_plate_ultra,state=facing:east/hidden:true/powered:false
|
|
||||||
modellist:id=%vector_plate_ultra,state=facing:east/hidden:false/powered:true,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/15.000000/16.000000/16.000000:w/0/0.000000/15.000000/16.000000/16.000000:e/0/0.000000/15.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/15.000000/16.000000/16.000000
|
|
||||||
modellist:id=%vector_plate_ultra,state=facing:east/hidden:false/powered:false,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/15.000000/16.000000/16.000000:w/1/0.000000/15.000000/16.000000/16.000000:e/1/0.000000/15.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/15.000000/16.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%damage_plate,state=hidden:true/powered:true
|
|
||||||
modellist:id=%damage_plate,state=hidden:true/powered:false
|
|
||||||
modellist:id=%damage_plate,state=hidden:false/powered:true,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/15.000000/16.000000/16.000000:w/0/0.000000/15.000000/16.000000/16.000000:e/0/0.000000/15.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/15.000000/16.000000/16.000000
|
|
||||||
modellist:id=%damage_plate,state=hidden:false/powered:false,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/15.000000/16.000000/16.000000:w/1/0.000000/15.000000/16.000000/16.000000:e/1/0.000000/15.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/15.000000/16.000000/16.000000
|
|
||||||
modellist:id=%damage_plate_maim,state=hidden:true/powered:true
|
|
||||||
modellist:id=%damage_plate_maim,state=hidden:true/powered:false
|
|
||||||
modellist:id=%damage_plate_maim,state=hidden:false/powered:true,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/15.000000/16.000000/16.000000:w/0/0.000000/15.000000/16.000000/16.000000:e/0/0.000000/15.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/15.000000/16.000000/16.000000
|
|
||||||
modellist:id=%damage_plate_maim,state=hidden:false/powered:false,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/15.000000/16.000000/16.000000:w/1/0.000000/15.000000/16.000000/16.000000:e/1/0.000000/15.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/15.000000/16.000000/16.000000
|
|
||||||
modellist:id=%damage_plate_player,state=hidden:true/powered:true
|
|
||||||
modellist:id=%damage_plate_player,state=hidden:true/powered:false
|
|
||||||
modellist:id=%damage_plate_player,state=hidden:false/powered:true,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/15.000000/16.000000/16.000000:w/0/0.000000/15.000000/16.000000/16.000000:e/0/0.000000/15.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/15.000000/16.000000/16.000000
|
|
||||||
modellist:id=%damage_plate_player,state=hidden:false/powered:false,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/15.000000/16.000000/16.000000:w/1/0.000000/15.000000/16.000000/16.000000:e/1/0.000000/15.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/15.000000/16.000000/16.000000
|
|
||||||
modellist:id=%flame_plate,state=hidden:true/powered:true
|
|
||||||
modellist:id=%flame_plate,state=hidden:true/powered:false
|
|
||||||
modellist:id=%flame_plate,state=hidden:false/powered:true,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/15.000000/16.000000/16.000000:w/0/0.000000/15.000000/16.000000/16.000000:e/0/0.000000/15.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/15.000000/16.000000/16.000000
|
|
||||||
modellist:id=%flame_plate,state=hidden:false/powered:false,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/15.000000/16.000000/16.000000:w/1/0.000000/15.000000/16.000000/16.000000:e/1/0.000000/15.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/15.000000/16.000000/16.000000
|
|
||||||
modellist:id=%slowness_plate,state=hidden:true/powered:true
|
|
||||||
modellist:id=%slowness_plate,state=hidden:true/powered:false
|
|
||||||
modellist:id=%slowness_plate,state=hidden:false/powered:true,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/15.000000/16.000000/16.000000:w/0/0.000000/15.000000/16.000000/16.000000:e/0/0.000000/15.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/15.000000/16.000000/16.000000
|
|
||||||
modellist:id=%slowness_plate,state=hidden:false/powered:false,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/15.000000/16.000000/16.000000:w/1/0.000000/15.000000/16.000000/16.000000:e/1/0.000000/15.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/15.000000/16.000000/16.000000
|
|
||||||
modellist:id=%fatigue_plate,state=hidden:true/powered:true
|
|
||||||
modellist:id=%fatigue_plate,state=hidden:true/powered:false
|
|
||||||
modellist:id=%fatigue_plate,state=hidden:false/powered:true,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/15.000000/16.000000/16.000000:w/0/0.000000/15.000000/16.000000/16.000000:e/0/0.000000/15.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/15.000000/16.000000/16.000000
|
|
||||||
modellist:id=%fatigue_plate,state=hidden:false/powered:false,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/15.000000/16.000000/16.000000:w/1/0.000000/15.000000/16.000000/16.000000:e/1/0.000000/15.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/15.000000/16.000000/16.000000
|
|
||||||
modellist:id=%darkness_plate,state=hidden:true/powered:true
|
|
||||||
modellist:id=%darkness_plate,state=hidden:true/powered:false
|
|
||||||
modellist:id=%darkness_plate,state=hidden:false/powered:true,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/15.000000/16.000000/16.000000:w/0/0.000000/15.000000/16.000000/16.000000:e/0/0.000000/15.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/15.000000/16.000000/16.000000
|
|
||||||
modellist:id=%darkness_plate,state=hidden:false/powered:false,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/15.000000/16.000000/16.000000:w/1/0.000000/15.000000/16.000000/16.000000:e/1/0.000000/15.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/15.000000/16.000000/16.000000
|
|
||||||
modellist:id=%hunger_plate,state=hidden:true/powered:true
|
|
||||||
modellist:id=%hunger_plate,state=hidden:true/powered:false
|
|
||||||
modellist:id=%hunger_plate,state=hidden:false/powered:true,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/15.000000/16.000000/16.000000:w/0/0.000000/15.000000/16.000000/16.000000:e/0/0.000000/15.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/15.000000/16.000000/16.000000
|
|
||||||
modellist:id=%hunger_plate,state=hidden:false/powered:false,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/15.000000/16.000000/16.000000:w/1/0.000000/15.000000/16.000000/16.000000:e/1/0.000000/15.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/15.000000/16.000000/16.000000
|
|
||||||
modellist:id=%weakness_plate,state=hidden:true/powered:true
|
|
||||||
modellist:id=%weakness_plate,state=hidden:true/powered:false
|
|
||||||
modellist:id=%weakness_plate,state=hidden:false/powered:true,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/15.000000/16.000000/16.000000:w/0/0.000000/15.000000/16.000000/16.000000:e/0/0.000000/15.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/15.000000/16.000000/16.000000
|
|
||||||
modellist:id=%weakness_plate,state=hidden:false/powered:false,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/15.000000/16.000000/16.000000:w/1/0.000000/15.000000/16.000000/16.000000:e/1/0.000000/15.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/15.000000/16.000000/16.000000
|
|
||||||
modellist:id=%poison_plate,state=hidden:true/powered:true
|
|
||||||
modellist:id=%poison_plate,state=hidden:true/powered:false
|
|
||||||
modellist:id=%poison_plate,state=hidden:false/powered:true,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/15.000000/16.000000/16.000000:w/0/0.000000/15.000000/16.000000/16.000000:e/0/0.000000/15.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/15.000000/16.000000/16.000000
|
|
||||||
modellist:id=%poison_plate,state=hidden:false/powered:false,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/15.000000/16.000000/16.000000:w/1/0.000000/15.000000/16.000000/16.000000:e/1/0.000000/15.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/15.000000/16.000000/16.000000
|
|
||||||
modellist:id=%wither_plate,state=hidden:true/powered:true
|
|
||||||
modellist:id=%wither_plate,state=hidden:true/powered:false
|
|
||||||
modellist:id=%wither_plate,state=hidden:false/powered:true,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/15.000000/16.000000/16.000000:w/0/0.000000/15.000000/16.000000/16.000000:e/0/0.000000/15.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/15.000000/16.000000/16.000000
|
|
||||||
modellist:id=%wither_plate,state=hidden:false/powered:false,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/15.000000/16.000000/16.000000:w/1/0.000000/15.000000/16.000000/16.000000:e/1/0.000000/15.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/15.000000/16.000000/16.000000
|
|
||||||
modellist:id=%alert_plate,state=hidden:true/powered:true
|
|
||||||
modellist:id=%alert_plate,state=hidden:true/powered:false
|
|
||||||
modellist:id=%alert_plate,state=hidden:false/powered:true,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/15.000000/16.000000/16.000000:w/0/0.000000/15.000000/16.000000/16.000000:e/0/0.000000/15.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/15.000000/16.000000/16.000000
|
|
||||||
modellist:id=%alert_plate,state=hidden:false/powered:false,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/15.000000/16.000000/16.000000:w/1/0.000000/15.000000/16.000000/16.000000:e/1/0.000000/15.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/15.000000/16.000000/16.000000
|
|
||||||
modellist:id=%levitation_plate,state=hidden:true/powered:true
|
|
||||||
modellist:id=%levitation_plate,state=hidden:true/powered:false
|
|
||||||
modellist:id=%levitation_plate,state=hidden:false/powered:true,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/15.000000/16.000000/16.000000:w/0/0.000000/15.000000/16.000000/16.000000:e/0/0.000000/15.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/15.000000/16.000000/16.000000
|
|
||||||
modellist:id=%levitation_plate,state=hidden:false/powered:false,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/15.000000/16.000000/16.000000:w/1/0.000000/15.000000/16.000000/16.000000:e/1/0.000000/15.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/15.000000/16.000000/16.000000
|
|
||||||
modellist:id=%misfortune_plate,state=hidden:true/powered:true
|
|
||||||
modellist:id=%misfortune_plate,state=hidden:true/powered:false
|
|
||||||
modellist:id=%misfortune_plate,state=hidden:false/powered:true,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/15.000000/16.000000/16.000000:w/0/0.000000/15.000000/16.000000/16.000000:e/0/0.000000/15.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/15.000000/16.000000/16.000000
|
|
||||||
modellist:id=%misfortune_plate,state=hidden:false/powered:false,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/15.000000/16.000000/16.000000:w/1/0.000000/15.000000/16.000000/16.000000:e/1/0.000000/15.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/15.000000/16.000000/16.000000
|
|
||||||
modellist:id=%slowfall_plate,state=hidden:true/powered:true
|
|
||||||
modellist:id=%slowfall_plate,state=hidden:true/powered:false
|
|
||||||
modellist:id=%slowfall_plate,state=hidden:false/powered:true,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/15.000000/16.000000/16.000000:w/0/0.000000/15.000000/16.000000/16.000000:e/0/0.000000/15.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/15.000000/16.000000/16.000000
|
|
||||||
modellist:id=%slowfall_plate,state=hidden:false/powered:false,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/15.000000/16.000000/16.000000:w/1/0.000000/15.000000/16.000000/16.000000:e/1/0.000000/15.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/15.000000/16.000000/16.000000
|
|
||||||
modellist:id=%omen_plate,state=hidden:true/powered:true
|
|
||||||
modellist:id=%omen_plate,state=hidden:true/powered:false
|
|
||||||
modellist:id=%omen_plate,state=hidden:false/powered:true,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/15.000000/16.000000/16.000000:w/0/0.000000/15.000000/16.000000/16.000000:e/0/0.000000/15.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/15.000000/16.000000/16.000000
|
|
||||||
modellist:id=%omen_plate,state=hidden:false/powered:false,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/15.000000/16.000000/16.000000:w/1/0.000000/15.000000/16.000000/16.000000:e/1/0.000000/15.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/15.000000/16.000000/16.000000
|
|
||||||
modellist:id=%frost_plate,state=hidden:true/powered:true
|
|
||||||
modellist:id=%frost_plate,state=hidden:true/powered:false
|
|
||||||
modellist:id=%frost_plate,state=hidden:false/powered:true,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/15.000000/16.000000/16.000000:w/0/0.000000/15.000000/16.000000/16.000000:e/0/0.000000/15.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/15.000000/16.000000/16.000000
|
|
||||||
modellist:id=%frost_plate,state=hidden:false/powered:false,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/15.000000/16.000000/16.000000:w/1/0.000000/15.000000/16.000000/16.000000:e/1/0.000000/15.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/15.000000/16.000000/16.000000
|
|
||||||
modellist:id=%filter_player,state=inverted:true/powered:true,box=0.000000/0.000000/0.000000:2.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/14.000000/16.000000/16.000000,box=14.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/14.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/14.000000/2.000000/16.000000,box=2.000000/0.000000/0.000000:14.000000/2.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=2.000000/0.000000/14.000000:14.000000/2.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=0.000000/2.000000/0.000000:2.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/0.000000:16.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/2.000000/14.000000:2.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/14.000000:16.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/0.000000/2.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/0.000000/16.000000/2.000000,box=14.000000/14.000000/0.000000:16.000000/16.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/2.000000/2.000000,box=2.000000/14.000000/0.000000:14.000000/16.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/14.000000/14.000000:14.000000/16.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/0.000000/14.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=0.500000/0.500000/0.500000:15.500000/15.500000/15.500000:u/0/0.500000/0.500000/15.500000/15.500000:s/0/0.500000/0.500000/15.500000/15.500000:w/0/0.500000/0.500000/15.500000/15.500000:e/0/0.500000/0.500000/15.500000/15.500000:d/0/0.500000/0.500000/15.500000/15.500000:n/0/0.500000/0.500000/15.500000/15.500000
|
|
||||||
modellist:id=%filter_player,state=inverted:true/powered:false,box=0.000000/0.000000/0.000000:2.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/14.000000/16.000000/16.000000,box=14.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/14.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/14.000000/2.000000/16.000000,box=2.000000/0.000000/0.000000:14.000000/2.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=2.000000/0.000000/14.000000:14.000000/2.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=0.000000/2.000000/0.000000:2.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/0.000000:16.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/2.000000/14.000000:2.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/14.000000:16.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/0.000000/2.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/0.000000/16.000000/2.000000,box=14.000000/14.000000/0.000000:16.000000/16.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/2.000000/2.000000,box=2.000000/14.000000/0.000000:14.000000/16.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/14.000000/14.000000:14.000000/16.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/0.000000/14.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=0.500000/0.500000/0.500000:15.500000/15.500000/15.500000:u/0/0.500000/0.500000/15.500000/15.500000:s/0/0.500000/0.500000/15.500000/15.500000:w/0/0.500000/0.500000/15.500000/15.500000:e/0/0.500000/0.500000/15.500000/15.500000:d/0/0.500000/0.500000/15.500000/15.500000:n/0/0.500000/0.500000/15.500000/15.500000,box=2.000000/2.000000/0.400000:14.000000/14.000000/0.400000:n/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/2.000000/15.600000:14.000000/14.000000/15.600000:s/1/0.000000/0.000000/16.000000/16.000000,box=15.600000/2.000000/2.000000:15.600000/14.000000/14.000000:e/1/0.000000/0.000000/16.000000/16.000000,box=0.400000/2.000000/2.000000:0.400000/14.000000/14.000000:w/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/15.600000/2.000000:14.000000/15.600000/14.000000:u/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/0.400000/2.000000:14.000000/0.400000/14.000000:d/1/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%filter_player,state=inverted:false/powered:true,box=0.000000/0.000000/0.000000:2.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/14.000000/16.000000/16.000000,box=14.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/14.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/14.000000/2.000000/16.000000,box=2.000000/0.000000/0.000000:14.000000/2.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=2.000000/0.000000/14.000000:14.000000/2.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=0.000000/2.000000/0.000000:2.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/0.000000:16.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/2.000000/14.000000:2.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/14.000000:16.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/0.000000/2.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/0.000000/16.000000/2.000000,box=14.000000/14.000000/0.000000:16.000000/16.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/2.000000/2.000000,box=2.000000/14.000000/0.000000:14.000000/16.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/14.000000/14.000000:14.000000/16.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/0.000000/14.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=0.500000/0.500000/0.500000:15.500000/15.500000/15.500000:u/0/0.500000/0.500000/15.500000/15.500000:s/0/0.500000/0.500000/15.500000/15.500000:w/0/0.500000/0.500000/15.500000/15.500000:e/0/0.500000/0.500000/15.500000/15.500000:d/0/0.500000/0.500000/15.500000/15.500000:n/0/0.500000/0.500000/15.500000/15.500000
|
|
||||||
modellist:id=%filter_player,state=inverted:false/powered:false,box=0.000000/0.000000/0.000000:2.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/14.000000/16.000000/16.000000,box=14.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/14.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/14.000000/2.000000/16.000000,box=2.000000/0.000000/0.000000:14.000000/2.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=2.000000/0.000000/14.000000:14.000000/2.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=0.000000/2.000000/0.000000:2.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/0.000000:16.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/2.000000/14.000000:2.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/14.000000:16.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/0.000000/2.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/0.000000/16.000000/2.000000,box=14.000000/14.000000/0.000000:16.000000/16.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/2.000000/2.000000,box=2.000000/14.000000/0.000000:14.000000/16.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/14.000000/14.000000:14.000000/16.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/0.000000/14.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=0.500000/0.500000/0.500000:15.500000/15.500000/15.500000:u/0/0.500000/0.500000/15.500000/15.500000:s/0/0.500000/0.500000/15.500000/15.500000:w/0/0.500000/0.500000/15.500000/15.500000:e/0/0.500000/0.500000/15.500000/15.500000:d/0/0.500000/0.500000/15.500000/15.500000:n/0/0.500000/0.500000/15.500000/15.500000,box=2.000000/2.000000/0.400000:14.000000/14.000000/0.400000:n/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/2.000000/15.600000:14.000000/14.000000/15.600000:s/1/0.000000/0.000000/16.000000/16.000000,box=15.600000/2.000000/2.000000:15.600000/14.000000/14.000000:e/1/0.000000/0.000000/16.000000/16.000000,box=0.400000/2.000000/2.000000:0.400000/14.000000/14.000000:w/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/15.600000/2.000000:14.000000/15.600000/14.000000:u/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/0.400000/2.000000:14.000000/0.400000/14.000000:d/1/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%filter_undead,state=inverted:true/powered:true,box=0.000000/0.000000/0.000000:2.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/14.000000/16.000000/16.000000,box=14.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/14.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/14.000000/2.000000/16.000000,box=2.000000/0.000000/0.000000:14.000000/2.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=2.000000/0.000000/14.000000:14.000000/2.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=0.000000/2.000000/0.000000:2.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/0.000000:16.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/2.000000/14.000000:2.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/14.000000:16.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/0.000000/2.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/0.000000/16.000000/2.000000,box=14.000000/14.000000/0.000000:16.000000/16.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/2.000000/2.000000,box=2.000000/14.000000/0.000000:14.000000/16.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/14.000000/14.000000:14.000000/16.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/0.000000/14.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=0.500000/0.500000/0.500000:15.500000/15.500000/15.500000:u/0/0.500000/0.500000/15.500000/15.500000:s/0/0.500000/0.500000/15.500000/15.500000:w/0/0.500000/0.500000/15.500000/15.500000:e/0/0.500000/0.500000/15.500000/15.500000:d/0/0.500000/0.500000/15.500000/15.500000:n/0/0.500000/0.500000/15.500000/15.500000
|
|
||||||
modellist:id=%filter_undead,state=inverted:true/powered:false,box=0.000000/0.000000/0.000000:2.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/14.000000/16.000000/16.000000,box=14.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/14.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/14.000000/2.000000/16.000000,box=2.000000/0.000000/0.000000:14.000000/2.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=2.000000/0.000000/14.000000:14.000000/2.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=0.000000/2.000000/0.000000:2.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/0.000000:16.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/2.000000/14.000000:2.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/14.000000:16.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/0.000000/2.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/0.000000/16.000000/2.000000,box=14.000000/14.000000/0.000000:16.000000/16.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/2.000000/2.000000,box=2.000000/14.000000/0.000000:14.000000/16.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/14.000000/14.000000:14.000000/16.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/0.000000/14.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=0.500000/0.500000/0.500000:15.500000/15.500000/15.500000:u/0/0.500000/0.500000/15.500000/15.500000:s/0/0.500000/0.500000/15.500000/15.500000:w/0/0.500000/0.500000/15.500000/15.500000:e/0/0.500000/0.500000/15.500000/15.500000:d/0/0.500000/0.500000/15.500000/15.500000:n/0/0.500000/0.500000/15.500000/15.500000,box=2.000000/2.000000/0.400000:14.000000/14.000000/0.400000:n/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/2.000000/15.600000:14.000000/14.000000/15.600000:s/1/0.000000/0.000000/16.000000/16.000000,box=15.600000/2.000000/2.000000:15.600000/14.000000/14.000000:e/1/0.000000/0.000000/16.000000/16.000000,box=0.400000/2.000000/2.000000:0.400000/14.000000/14.000000:w/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/15.600000/2.000000:14.000000/15.600000/14.000000:u/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/0.400000/2.000000:14.000000/0.400000/14.000000:d/1/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%filter_undead,state=inverted:false/powered:true,box=0.000000/0.000000/0.000000:2.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/14.000000/16.000000/16.000000,box=14.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/14.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/14.000000/2.000000/16.000000,box=2.000000/0.000000/0.000000:14.000000/2.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=2.000000/0.000000/14.000000:14.000000/2.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=0.000000/2.000000/0.000000:2.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/0.000000:16.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/2.000000/14.000000:2.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/14.000000:16.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/0.000000/2.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/0.000000/16.000000/2.000000,box=14.000000/14.000000/0.000000:16.000000/16.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/2.000000/2.000000,box=2.000000/14.000000/0.000000:14.000000/16.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/14.000000/14.000000:14.000000/16.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/0.000000/14.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=0.500000/0.500000/0.500000:15.500000/15.500000/15.500000:u/0/0.500000/0.500000/15.500000/15.500000:s/0/0.500000/0.500000/15.500000/15.500000:w/0/0.500000/0.500000/15.500000/15.500000:e/0/0.500000/0.500000/15.500000/15.500000:d/0/0.500000/0.500000/15.500000/15.500000:n/0/0.500000/0.500000/15.500000/15.500000
|
|
||||||
modellist:id=%filter_undead,state=inverted:false/powered:false,box=0.000000/0.000000/0.000000:2.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/14.000000/16.000000/16.000000,box=14.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/14.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/14.000000/2.000000/16.000000,box=2.000000/0.000000/0.000000:14.000000/2.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=2.000000/0.000000/14.000000:14.000000/2.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=0.000000/2.000000/0.000000:2.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/0.000000:16.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/2.000000/14.000000:2.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/14.000000:16.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/0.000000/2.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/0.000000/16.000000/2.000000,box=14.000000/14.000000/0.000000:16.000000/16.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/2.000000/2.000000,box=2.000000/14.000000/0.000000:14.000000/16.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/14.000000/14.000000:14.000000/16.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/0.000000/14.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=0.500000/0.500000/0.500000:15.500000/15.500000/15.500000:u/0/0.500000/0.500000/15.500000/15.500000:s/0/0.500000/0.500000/15.500000/15.500000:w/0/0.500000/0.500000/15.500000/15.500000:e/0/0.500000/0.500000/15.500000/15.500000:d/0/0.500000/0.500000/15.500000/15.500000:n/0/0.500000/0.500000/15.500000/15.500000,box=2.000000/2.000000/0.400000:14.000000/14.000000/0.400000:n/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/2.000000/15.600000:14.000000/14.000000/15.600000:s/1/0.000000/0.000000/16.000000/16.000000,box=15.600000/2.000000/2.000000:15.600000/14.000000/14.000000:e/1/0.000000/0.000000/16.000000/16.000000,box=0.400000/2.000000/2.000000:0.400000/14.000000/14.000000:w/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/15.600000/2.000000:14.000000/15.600000/14.000000:u/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/0.400000/2.000000:14.000000/0.400000/14.000000:d/1/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%filter_arthropod,state=inverted:true/powered:true,box=0.000000/0.000000/0.000000:2.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/14.000000/16.000000/16.000000,box=14.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/14.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/14.000000/2.000000/16.000000,box=2.000000/0.000000/0.000000:14.000000/2.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=2.000000/0.000000/14.000000:14.000000/2.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=0.000000/2.000000/0.000000:2.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/0.000000:16.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/2.000000/14.000000:2.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/14.000000:16.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/0.000000/2.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/0.000000/16.000000/2.000000,box=14.000000/14.000000/0.000000:16.000000/16.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/2.000000/2.000000,box=2.000000/14.000000/0.000000:14.000000/16.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/14.000000/14.000000:14.000000/16.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/0.000000/14.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=0.500000/0.500000/0.500000:15.500000/15.500000/15.500000:u/0/0.500000/0.500000/15.500000/15.500000:s/0/0.500000/0.500000/15.500000/15.500000:w/0/0.500000/0.500000/15.500000/15.500000:e/0/0.500000/0.500000/15.500000/15.500000:d/0/0.500000/0.500000/15.500000/15.500000:n/0/0.500000/0.500000/15.500000/15.500000
|
|
||||||
modellist:id=%filter_arthropod,state=inverted:true/powered:false,box=0.000000/0.000000/0.000000:2.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/14.000000/16.000000/16.000000,box=14.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/14.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/14.000000/2.000000/16.000000,box=2.000000/0.000000/0.000000:14.000000/2.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=2.000000/0.000000/14.000000:14.000000/2.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=0.000000/2.000000/0.000000:2.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/0.000000:16.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/2.000000/14.000000:2.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/14.000000:16.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/0.000000/2.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/0.000000/16.000000/2.000000,box=14.000000/14.000000/0.000000:16.000000/16.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/2.000000/2.000000,box=2.000000/14.000000/0.000000:14.000000/16.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/14.000000/14.000000:14.000000/16.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/0.000000/14.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=0.500000/0.500000/0.500000:15.500000/15.500000/15.500000:u/0/0.500000/0.500000/15.500000/15.500000:s/0/0.500000/0.500000/15.500000/15.500000:w/0/0.500000/0.500000/15.500000/15.500000:e/0/0.500000/0.500000/15.500000/15.500000:d/0/0.500000/0.500000/15.500000/15.500000:n/0/0.500000/0.500000/15.500000/15.500000,box=2.000000/2.000000/0.400000:14.000000/14.000000/0.400000:n/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/2.000000/15.600000:14.000000/14.000000/15.600000:s/1/0.000000/0.000000/16.000000/16.000000,box=15.600000/2.000000/2.000000:15.600000/14.000000/14.000000:e/1/0.000000/0.000000/16.000000/16.000000,box=0.400000/2.000000/2.000000:0.400000/14.000000/14.000000:w/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/15.600000/2.000000:14.000000/15.600000/14.000000:u/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/0.400000/2.000000:14.000000/0.400000/14.000000:d/1/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%filter_arthropod,state=inverted:false/powered:true,box=0.000000/0.000000/0.000000:2.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/14.000000/16.000000/16.000000,box=14.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/14.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/14.000000/2.000000/16.000000,box=2.000000/0.000000/0.000000:14.000000/2.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=2.000000/0.000000/14.000000:14.000000/2.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=0.000000/2.000000/0.000000:2.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/0.000000:16.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/2.000000/14.000000:2.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/14.000000:16.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/0.000000/2.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/0.000000/16.000000/2.000000,box=14.000000/14.000000/0.000000:16.000000/16.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/2.000000/2.000000,box=2.000000/14.000000/0.000000:14.000000/16.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/14.000000/14.000000:14.000000/16.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/0.000000/14.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=0.500000/0.500000/0.500000:15.500000/15.500000/15.500000:u/0/0.500000/0.500000/15.500000/15.500000:s/0/0.500000/0.500000/15.500000/15.500000:w/0/0.500000/0.500000/15.500000/15.500000:e/0/0.500000/0.500000/15.500000/15.500000:d/0/0.500000/0.500000/15.500000/15.500000:n/0/0.500000/0.500000/15.500000/15.500000
|
|
||||||
modellist:id=%filter_arthropod,state=inverted:false/powered:false,box=0.000000/0.000000/0.000000:2.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/14.000000/16.000000/16.000000,box=14.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/14.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/14.000000/2.000000/16.000000,box=2.000000/0.000000/0.000000:14.000000/2.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=2.000000/0.000000/14.000000:14.000000/2.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=0.000000/2.000000/0.000000:2.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/0.000000:16.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/2.000000/14.000000:2.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/14.000000:16.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/0.000000/2.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/0.000000/16.000000/2.000000,box=14.000000/14.000000/0.000000:16.000000/16.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/2.000000/2.000000,box=2.000000/14.000000/0.000000:14.000000/16.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/14.000000/14.000000:14.000000/16.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/0.000000/14.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=0.500000/0.500000/0.500000:15.500000/15.500000/15.500000:u/0/0.500000/0.500000/15.500000/15.500000:s/0/0.500000/0.500000/15.500000/15.500000:w/0/0.500000/0.500000/15.500000/15.500000:e/0/0.500000/0.500000/15.500000/15.500000:d/0/0.500000/0.500000/15.500000/15.500000:n/0/0.500000/0.500000/15.500000/15.500000,box=2.000000/2.000000/0.400000:14.000000/14.000000/0.400000:n/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/2.000000/15.600000:14.000000/14.000000/15.600000:s/1/0.000000/0.000000/16.000000/16.000000,box=15.600000/2.000000/2.000000:15.600000/14.000000/14.000000:e/1/0.000000/0.000000/16.000000/16.000000,box=0.400000/2.000000/2.000000:0.400000/14.000000/14.000000:w/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/15.600000/2.000000:14.000000/15.600000/14.000000:u/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/0.400000/2.000000:14.000000/0.400000/14.000000:d/1/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%filter_illager,state=inverted:true/powered:true,box=0.000000/0.000000/0.000000:2.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/14.000000/16.000000/16.000000,box=14.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/14.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/14.000000/2.000000/16.000000,box=2.000000/0.000000/0.000000:14.000000/2.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=2.000000/0.000000/14.000000:14.000000/2.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=0.000000/2.000000/0.000000:2.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/0.000000:16.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/2.000000/14.000000:2.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/14.000000:16.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/0.000000/2.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/0.000000/16.000000/2.000000,box=14.000000/14.000000/0.000000:16.000000/16.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/2.000000/2.000000,box=2.000000/14.000000/0.000000:14.000000/16.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/14.000000/14.000000:14.000000/16.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/0.000000/14.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=0.500000/0.500000/0.500000:15.500000/15.500000/15.500000:u/0/0.500000/0.500000/15.500000/15.500000:s/0/0.500000/0.500000/15.500000/15.500000:w/0/0.500000/0.500000/15.500000/15.500000:e/0/0.500000/0.500000/15.500000/15.500000:d/0/0.500000/0.500000/15.500000/15.500000:n/0/0.500000/0.500000/15.500000/15.500000
|
|
||||||
modellist:id=%filter_illager,state=inverted:true/powered:false,box=0.000000/0.000000/0.000000:2.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/14.000000/16.000000/16.000000,box=14.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/14.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/14.000000/2.000000/16.000000,box=2.000000/0.000000/0.000000:14.000000/2.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=2.000000/0.000000/14.000000:14.000000/2.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=0.000000/2.000000/0.000000:2.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/0.000000:16.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/2.000000/14.000000:2.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/14.000000:16.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/0.000000/2.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/0.000000/16.000000/2.000000,box=14.000000/14.000000/0.000000:16.000000/16.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/2.000000/2.000000,box=2.000000/14.000000/0.000000:14.000000/16.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/14.000000/14.000000:14.000000/16.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/0.000000/14.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=0.500000/0.500000/0.500000:15.500000/15.500000/15.500000:u/0/0.500000/0.500000/15.500000/15.500000:s/0/0.500000/0.500000/15.500000/15.500000:w/0/0.500000/0.500000/15.500000/15.500000:e/0/0.500000/0.500000/15.500000/15.500000:d/0/0.500000/0.500000/15.500000/15.500000:n/0/0.500000/0.500000/15.500000/15.500000,box=2.000000/2.000000/0.400000:14.000000/14.000000/0.400000:n/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/2.000000/15.600000:14.000000/14.000000/15.600000:s/1/0.000000/0.000000/16.000000/16.000000,box=15.600000/2.000000/2.000000:15.600000/14.000000/14.000000:e/1/0.000000/0.000000/16.000000/16.000000,box=0.400000/2.000000/2.000000:0.400000/14.000000/14.000000:w/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/15.600000/2.000000:14.000000/15.600000/14.000000:u/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/0.400000/2.000000:14.000000/0.400000/14.000000:d/1/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%filter_illager,state=inverted:false/powered:true,box=0.000000/0.000000/0.000000:2.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/14.000000/16.000000/16.000000,box=14.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/14.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/14.000000/2.000000/16.000000,box=2.000000/0.000000/0.000000:14.000000/2.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=2.000000/0.000000/14.000000:14.000000/2.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=0.000000/2.000000/0.000000:2.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/0.000000:16.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/2.000000/14.000000:2.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/14.000000:16.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/0.000000/2.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/0.000000/16.000000/2.000000,box=14.000000/14.000000/0.000000:16.000000/16.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/2.000000/2.000000,box=2.000000/14.000000/0.000000:14.000000/16.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/14.000000/14.000000:14.000000/16.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/0.000000/14.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=0.500000/0.500000/0.500000:15.500000/15.500000/15.500000:u/0/0.500000/0.500000/15.500000/15.500000:s/0/0.500000/0.500000/15.500000/15.500000:w/0/0.500000/0.500000/15.500000/15.500000:e/0/0.500000/0.500000/15.500000/15.500000:d/0/0.500000/0.500000/15.500000/15.500000:n/0/0.500000/0.500000/15.500000/15.500000
|
|
||||||
modellist:id=%filter_illager,state=inverted:false/powered:false,box=0.000000/0.000000/0.000000:2.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/14.000000/16.000000/16.000000,box=14.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/14.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/14.000000/2.000000/16.000000,box=2.000000/0.000000/0.000000:14.000000/2.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=2.000000/0.000000/14.000000:14.000000/2.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=0.000000/2.000000/0.000000:2.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/0.000000:16.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/2.000000/14.000000:2.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/14.000000:16.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/0.000000/2.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/0.000000/16.000000/2.000000,box=14.000000/14.000000/0.000000:16.000000/16.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/2.000000/2.000000,box=2.000000/14.000000/0.000000:14.000000/16.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/14.000000/14.000000:14.000000/16.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/0.000000/14.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=0.500000/0.500000/0.500000:15.500000/15.500000/15.500000:u/0/0.500000/0.500000/15.500000/15.500000:s/0/0.500000/0.500000/15.500000/15.500000:w/0/0.500000/0.500000/15.500000/15.500000:e/0/0.500000/0.500000/15.500000/15.500000:d/0/0.500000/0.500000/15.500000/15.500000:n/0/0.500000/0.500000/15.500000/15.500000,box=2.000000/2.000000/0.400000:14.000000/14.000000/0.400000:n/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/2.000000/15.600000:14.000000/14.000000/15.600000:s/1/0.000000/0.000000/16.000000/16.000000,box=15.600000/2.000000/2.000000:15.600000/14.000000/14.000000:e/1/0.000000/0.000000/16.000000/16.000000,box=0.400000/2.000000/2.000000:0.400000/14.000000/14.000000:w/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/15.600000/2.000000:14.000000/15.600000/14.000000:u/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/0.400000/2.000000:14.000000/0.400000/14.000000:d/1/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%filter_raider,state=inverted:true/powered:true,box=0.000000/0.000000/0.000000:2.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/14.000000/16.000000/16.000000,box=14.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/14.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/14.000000/2.000000/16.000000,box=2.000000/0.000000/0.000000:14.000000/2.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=2.000000/0.000000/14.000000:14.000000/2.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=0.000000/2.000000/0.000000:2.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/0.000000:16.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/2.000000/14.000000:2.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/14.000000:16.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/0.000000/2.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/0.000000/16.000000/2.000000,box=14.000000/14.000000/0.000000:16.000000/16.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/2.000000/2.000000,box=2.000000/14.000000/0.000000:14.000000/16.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/14.000000/14.000000:14.000000/16.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/0.000000/14.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=0.500000/0.500000/0.500000:15.500000/15.500000/15.500000:u/0/0.500000/0.500000/15.500000/15.500000:s/0/0.500000/0.500000/15.500000/15.500000:w/0/0.500000/0.500000/15.500000/15.500000:e/0/0.500000/0.500000/15.500000/15.500000:d/0/0.500000/0.500000/15.500000/15.500000:n/0/0.500000/0.500000/15.500000/15.500000
|
|
||||||
modellist:id=%filter_raider,state=inverted:true/powered:false,box=0.000000/0.000000/0.000000:2.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/14.000000/16.000000/16.000000,box=14.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/14.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/14.000000/2.000000/16.000000,box=2.000000/0.000000/0.000000:14.000000/2.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=2.000000/0.000000/14.000000:14.000000/2.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=0.000000/2.000000/0.000000:2.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/0.000000:16.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/2.000000/14.000000:2.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/14.000000:16.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/0.000000/2.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/0.000000/16.000000/2.000000,box=14.000000/14.000000/0.000000:16.000000/16.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/2.000000/2.000000,box=2.000000/14.000000/0.000000:14.000000/16.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/14.000000/14.000000:14.000000/16.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/0.000000/14.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=0.500000/0.500000/0.500000:15.500000/15.500000/15.500000:u/0/0.500000/0.500000/15.500000/15.500000:s/0/0.500000/0.500000/15.500000/15.500000:w/0/0.500000/0.500000/15.500000/15.500000:e/0/0.500000/0.500000/15.500000/15.500000:d/0/0.500000/0.500000/15.500000/15.500000:n/0/0.500000/0.500000/15.500000/15.500000,box=2.000000/2.000000/0.400000:14.000000/14.000000/0.400000:n/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/2.000000/15.600000:14.000000/14.000000/15.600000:s/1/0.000000/0.000000/16.000000/16.000000,box=15.600000/2.000000/2.000000:15.600000/14.000000/14.000000:e/1/0.000000/0.000000/16.000000/16.000000,box=0.400000/2.000000/2.000000:0.400000/14.000000/14.000000:w/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/15.600000/2.000000:14.000000/15.600000/14.000000:u/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/0.400000/2.000000:14.000000/0.400000/14.000000:d/1/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%filter_raider,state=inverted:false/powered:true,box=0.000000/0.000000/0.000000:2.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/14.000000/16.000000/16.000000,box=14.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/14.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/14.000000/2.000000/16.000000,box=2.000000/0.000000/0.000000:14.000000/2.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=2.000000/0.000000/14.000000:14.000000/2.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=0.000000/2.000000/0.000000:2.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/0.000000:16.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/2.000000/14.000000:2.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/14.000000:16.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/0.000000/2.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/0.000000/16.000000/2.000000,box=14.000000/14.000000/0.000000:16.000000/16.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/2.000000/2.000000,box=2.000000/14.000000/0.000000:14.000000/16.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/14.000000/14.000000:14.000000/16.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/0.000000/14.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=0.500000/0.500000/0.500000:15.500000/15.500000/15.500000:u/0/0.500000/0.500000/15.500000/15.500000:s/0/0.500000/0.500000/15.500000/15.500000:w/0/0.500000/0.500000/15.500000/15.500000:e/0/0.500000/0.500000/15.500000/15.500000:d/0/0.500000/0.500000/15.500000/15.500000:n/0/0.500000/0.500000/15.500000/15.500000
|
|
||||||
modellist:id=%filter_raider,state=inverted:false/powered:false,box=0.000000/0.000000/0.000000:2.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/14.000000/16.000000/16.000000,box=14.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/14.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/14.000000/2.000000/16.000000,box=2.000000/0.000000/0.000000:14.000000/2.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=2.000000/0.000000/14.000000:14.000000/2.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=0.000000/2.000000/0.000000:2.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/0.000000:16.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/2.000000/14.000000:2.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/14.000000:16.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/0.000000/2.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/0.000000/16.000000/2.000000,box=14.000000/14.000000/0.000000:16.000000/16.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/2.000000/2.000000,box=2.000000/14.000000/0.000000:14.000000/16.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/14.000000/14.000000:14.000000/16.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/0.000000/14.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=0.500000/0.500000/0.500000:15.500000/15.500000/15.500000:u/0/0.500000/0.500000/15.500000/15.500000:s/0/0.500000/0.500000/15.500000/15.500000:w/0/0.500000/0.500000/15.500000/15.500000:e/0/0.500000/0.500000/15.500000/15.500000:d/0/0.500000/0.500000/15.500000/15.500000:n/0/0.500000/0.500000/15.500000/15.500000,box=2.000000/2.000000/0.400000:14.000000/14.000000/0.400000:n/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/2.000000/15.600000:14.000000/14.000000/15.600000:s/1/0.000000/0.000000/16.000000/16.000000,box=15.600000/2.000000/2.000000:15.600000/14.000000/14.000000:e/1/0.000000/0.000000/16.000000/16.000000,box=0.400000/2.000000/2.000000:0.400000/14.000000/14.000000:w/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/15.600000/2.000000:14.000000/15.600000/14.000000:u/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/0.400000/2.000000:14.000000/0.400000/14.000000:d/1/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%filter_hostile,state=inverted:true/powered:true,box=0.000000/0.000000/0.000000:2.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/14.000000/16.000000/16.000000,box=14.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/14.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/14.000000/2.000000/16.000000,box=2.000000/0.000000/0.000000:14.000000/2.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=2.000000/0.000000/14.000000:14.000000/2.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=0.000000/2.000000/0.000000:2.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/0.000000:16.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/2.000000/14.000000:2.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/14.000000:16.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/0.000000/2.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/0.000000/16.000000/2.000000,box=14.000000/14.000000/0.000000:16.000000/16.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/2.000000/2.000000,box=2.000000/14.000000/0.000000:14.000000/16.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/14.000000/14.000000:14.000000/16.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/0.000000/14.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=0.500000/0.500000/0.500000:15.500000/15.500000/15.500000:u/0/0.500000/0.500000/15.500000/15.500000:s/0/0.500000/0.500000/15.500000/15.500000:w/0/0.500000/0.500000/15.500000/15.500000:e/0/0.500000/0.500000/15.500000/15.500000:d/0/0.500000/0.500000/15.500000/15.500000:n/0/0.500000/0.500000/15.500000/15.500000
|
|
||||||
modellist:id=%filter_hostile,state=inverted:true/powered:false,box=0.000000/0.000000/0.000000:2.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/14.000000/16.000000/16.000000,box=14.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/14.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/14.000000/2.000000/16.000000,box=2.000000/0.000000/0.000000:14.000000/2.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=2.000000/0.000000/14.000000:14.000000/2.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=0.000000/2.000000/0.000000:2.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/0.000000:16.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/2.000000/14.000000:2.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/14.000000:16.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/0.000000/2.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/0.000000/16.000000/2.000000,box=14.000000/14.000000/0.000000:16.000000/16.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/2.000000/2.000000,box=2.000000/14.000000/0.000000:14.000000/16.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/14.000000/14.000000:14.000000/16.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/0.000000/14.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=0.500000/0.500000/0.500000:15.500000/15.500000/15.500000:u/0/0.500000/0.500000/15.500000/15.500000:s/0/0.500000/0.500000/15.500000/15.500000:w/0/0.500000/0.500000/15.500000/15.500000:e/0/0.500000/0.500000/15.500000/15.500000:d/0/0.500000/0.500000/15.500000/15.500000:n/0/0.500000/0.500000/15.500000/15.500000,box=2.000000/2.000000/0.400000:14.000000/14.000000/0.400000:n/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/2.000000/15.600000:14.000000/14.000000/15.600000:s/1/0.000000/0.000000/16.000000/16.000000,box=15.600000/2.000000/2.000000:15.600000/14.000000/14.000000:e/1/0.000000/0.000000/16.000000/16.000000,box=0.400000/2.000000/2.000000:0.400000/14.000000/14.000000:w/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/15.600000/2.000000:14.000000/15.600000/14.000000:u/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/0.400000/2.000000:14.000000/0.400000/14.000000:d/1/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%filter_hostile,state=inverted:false/powered:true,box=0.000000/0.000000/0.000000:2.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/14.000000/16.000000/16.000000,box=14.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/14.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/14.000000/2.000000/16.000000,box=2.000000/0.000000/0.000000:14.000000/2.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=2.000000/0.000000/14.000000:14.000000/2.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=0.000000/2.000000/0.000000:2.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/0.000000:16.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/2.000000/14.000000:2.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/14.000000:16.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/0.000000/2.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/0.000000/16.000000/2.000000,box=14.000000/14.000000/0.000000:16.000000/16.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/2.000000/2.000000,box=2.000000/14.000000/0.000000:14.000000/16.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/14.000000/14.000000:14.000000/16.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/0.000000/14.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=0.500000/0.500000/0.500000:15.500000/15.500000/15.500000:u/0/0.500000/0.500000/15.500000/15.500000:s/0/0.500000/0.500000/15.500000/15.500000:w/0/0.500000/0.500000/15.500000/15.500000:e/0/0.500000/0.500000/15.500000/15.500000:d/0/0.500000/0.500000/15.500000/15.500000:n/0/0.500000/0.500000/15.500000/15.500000
|
|
||||||
modellist:id=%filter_hostile,state=inverted:false/powered:false,box=0.000000/0.000000/0.000000:2.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/14.000000/16.000000/16.000000,box=14.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/14.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/14.000000/2.000000/16.000000,box=2.000000/0.000000/0.000000:14.000000/2.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=2.000000/0.000000/14.000000:14.000000/2.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=0.000000/2.000000/0.000000:2.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/0.000000:16.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/2.000000/14.000000:2.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/14.000000:16.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/0.000000/2.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/0.000000/16.000000/2.000000,box=14.000000/14.000000/0.000000:16.000000/16.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/2.000000/2.000000,box=2.000000/14.000000/0.000000:14.000000/16.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/14.000000/14.000000:14.000000/16.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/0.000000/14.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=0.500000/0.500000/0.500000:15.500000/15.500000/15.500000:u/0/0.500000/0.500000/15.500000/15.500000:s/0/0.500000/0.500000/15.500000/15.500000:w/0/0.500000/0.500000/15.500000/15.500000:e/0/0.500000/0.500000/15.500000/15.500000:d/0/0.500000/0.500000/15.500000/15.500000:n/0/0.500000/0.500000/15.500000/15.500000,box=2.000000/2.000000/0.400000:14.000000/14.000000/0.400000:n/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/2.000000/15.600000:14.000000/14.000000/15.600000:s/1/0.000000/0.000000/16.000000/16.000000,box=15.600000/2.000000/2.000000:15.600000/14.000000/14.000000:e/1/0.000000/0.000000/16.000000/16.000000,box=0.400000/2.000000/2.000000:0.400000/14.000000/14.000000:w/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/15.600000/2.000000:14.000000/15.600000/14.000000:u/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/0.400000/2.000000:14.000000/0.400000/14.000000:d/1/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%filter_animal,state=inverted:true/powered:true,box=0.000000/0.000000/0.000000:2.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/14.000000/16.000000/16.000000,box=14.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/14.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/14.000000/2.000000/16.000000,box=2.000000/0.000000/0.000000:14.000000/2.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=2.000000/0.000000/14.000000:14.000000/2.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=0.000000/2.000000/0.000000:2.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/0.000000:16.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/2.000000/14.000000:2.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/14.000000:16.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/0.000000/2.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/0.000000/16.000000/2.000000,box=14.000000/14.000000/0.000000:16.000000/16.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/2.000000/2.000000,box=2.000000/14.000000/0.000000:14.000000/16.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/14.000000/14.000000:14.000000/16.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/0.000000/14.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=0.500000/0.500000/0.500000:15.500000/15.500000/15.500000:u/0/0.500000/0.500000/15.500000/15.500000:s/0/0.500000/0.500000/15.500000/15.500000:w/0/0.500000/0.500000/15.500000/15.500000:e/0/0.500000/0.500000/15.500000/15.500000:d/0/0.500000/0.500000/15.500000/15.500000:n/0/0.500000/0.500000/15.500000/15.500000
|
|
||||||
modellist:id=%filter_animal,state=inverted:true/powered:false,box=0.000000/0.000000/0.000000:2.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/14.000000/16.000000/16.000000,box=14.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/14.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/14.000000/2.000000/16.000000,box=2.000000/0.000000/0.000000:14.000000/2.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=2.000000/0.000000/14.000000:14.000000/2.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=0.000000/2.000000/0.000000:2.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/0.000000:16.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/2.000000/14.000000:2.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/14.000000:16.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/0.000000/2.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/0.000000/16.000000/2.000000,box=14.000000/14.000000/0.000000:16.000000/16.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/2.000000/2.000000,box=2.000000/14.000000/0.000000:14.000000/16.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/14.000000/14.000000:14.000000/16.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/0.000000/14.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=0.500000/0.500000/0.500000:15.500000/15.500000/15.500000:u/0/0.500000/0.500000/15.500000/15.500000:s/0/0.500000/0.500000/15.500000/15.500000:w/0/0.500000/0.500000/15.500000/15.500000:e/0/0.500000/0.500000/15.500000/15.500000:d/0/0.500000/0.500000/15.500000/15.500000:n/0/0.500000/0.500000/15.500000/15.500000,box=2.000000/2.000000/0.400000:14.000000/14.000000/0.400000:n/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/2.000000/15.600000:14.000000/14.000000/15.600000:s/1/0.000000/0.000000/16.000000/16.000000,box=15.600000/2.000000/2.000000:15.600000/14.000000/14.000000:e/1/0.000000/0.000000/16.000000/16.000000,box=0.400000/2.000000/2.000000:0.400000/14.000000/14.000000:w/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/15.600000/2.000000:14.000000/15.600000/14.000000:u/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/0.400000/2.000000:14.000000/0.400000/14.000000:d/1/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%filter_animal,state=inverted:false/powered:true,box=0.000000/0.000000/0.000000:2.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/14.000000/16.000000/16.000000,box=14.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/14.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/14.000000/2.000000/16.000000,box=2.000000/0.000000/0.000000:14.000000/2.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=2.000000/0.000000/14.000000:14.000000/2.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=0.000000/2.000000/0.000000:2.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/0.000000:16.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/2.000000/14.000000:2.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/14.000000:16.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/0.000000/2.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/0.000000/16.000000/2.000000,box=14.000000/14.000000/0.000000:16.000000/16.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/2.000000/2.000000,box=2.000000/14.000000/0.000000:14.000000/16.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/14.000000/14.000000:14.000000/16.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/0.000000/14.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=0.500000/0.500000/0.500000:15.500000/15.500000/15.500000:u/0/0.500000/0.500000/15.500000/15.500000:s/0/0.500000/0.500000/15.500000/15.500000:w/0/0.500000/0.500000/15.500000/15.500000:e/0/0.500000/0.500000/15.500000/15.500000:d/0/0.500000/0.500000/15.500000/15.500000:n/0/0.500000/0.500000/15.500000/15.500000
|
|
||||||
modellist:id=%filter_animal,state=inverted:false/powered:false,box=0.000000/0.000000/0.000000:2.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/14.000000/16.000000/16.000000,box=14.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/14.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/14.000000/2.000000/16.000000,box=2.000000/0.000000/0.000000:14.000000/2.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=2.000000/0.000000/14.000000:14.000000/2.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=0.000000/2.000000/0.000000:2.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/0.000000:16.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/2.000000/14.000000:2.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/14.000000:16.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/0.000000/2.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/0.000000/16.000000/2.000000,box=14.000000/14.000000/0.000000:16.000000/16.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/2.000000/2.000000,box=2.000000/14.000000/0.000000:14.000000/16.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/14.000000/14.000000:14.000000/16.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/0.000000/14.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=0.500000/0.500000/0.500000:15.500000/15.500000/15.500000:u/0/0.500000/0.500000/15.500000/15.500000:s/0/0.500000/0.500000/15.500000/15.500000:w/0/0.500000/0.500000/15.500000/15.500000:e/0/0.500000/0.500000/15.500000/15.500000:d/0/0.500000/0.500000/15.500000/15.500000:n/0/0.500000/0.500000/15.500000/15.500000,box=2.000000/2.000000/0.400000:14.000000/14.000000/0.400000:n/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/2.000000/15.600000:14.000000/14.000000/15.600000:s/1/0.000000/0.000000/16.000000/16.000000,box=15.600000/2.000000/2.000000:15.600000/14.000000/14.000000:e/1/0.000000/0.000000/16.000000/16.000000,box=0.400000/2.000000/2.000000:0.400000/14.000000/14.000000:w/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/15.600000/2.000000:14.000000/15.600000/14.000000:u/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/0.400000/2.000000:14.000000/0.400000/14.000000:d/1/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%filter_child,state=inverted:true/powered:true,box=0.000000/0.000000/0.000000:2.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/14.000000/16.000000/16.000000,box=14.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/14.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/14.000000/2.000000/16.000000,box=2.000000/0.000000/0.000000:14.000000/2.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=2.000000/0.000000/14.000000:14.000000/2.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=0.000000/2.000000/0.000000:2.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/0.000000:16.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/2.000000/14.000000:2.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/14.000000:16.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/0.000000/2.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/0.000000/16.000000/2.000000,box=14.000000/14.000000/0.000000:16.000000/16.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/2.000000/2.000000,box=2.000000/14.000000/0.000000:14.000000/16.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/14.000000/14.000000:14.000000/16.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/0.000000/14.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=0.500000/0.500000/0.500000:15.500000/15.500000/15.500000:u/0/0.500000/0.500000/15.500000/15.500000:s/0/0.500000/0.500000/15.500000/15.500000:w/0/0.500000/0.500000/15.500000/15.500000:e/0/0.500000/0.500000/15.500000/15.500000:d/0/0.500000/0.500000/15.500000/15.500000:n/0/0.500000/0.500000/15.500000/15.500000
|
|
||||||
modellist:id=%filter_child,state=inverted:true/powered:false,box=0.000000/0.000000/0.000000:2.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/14.000000/16.000000/16.000000,box=14.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/14.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/14.000000/2.000000/16.000000,box=2.000000/0.000000/0.000000:14.000000/2.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=2.000000/0.000000/14.000000:14.000000/2.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=0.000000/2.000000/0.000000:2.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/0.000000:16.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/2.000000/14.000000:2.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/14.000000:16.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/0.000000/2.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/0.000000/16.000000/2.000000,box=14.000000/14.000000/0.000000:16.000000/16.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/2.000000/2.000000,box=2.000000/14.000000/0.000000:14.000000/16.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/14.000000/14.000000:14.000000/16.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/0.000000/14.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=0.500000/0.500000/0.500000:15.500000/15.500000/15.500000:u/0/0.500000/0.500000/15.500000/15.500000:s/0/0.500000/0.500000/15.500000/15.500000:w/0/0.500000/0.500000/15.500000/15.500000:e/0/0.500000/0.500000/15.500000/15.500000:d/0/0.500000/0.500000/15.500000/15.500000:n/0/0.500000/0.500000/15.500000/15.500000,box=2.000000/2.000000/0.400000:14.000000/14.000000/0.400000:n/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/2.000000/15.600000:14.000000/14.000000/15.600000:s/1/0.000000/0.000000/16.000000/16.000000,box=15.600000/2.000000/2.000000:15.600000/14.000000/14.000000:e/1/0.000000/0.000000/16.000000/16.000000,box=0.400000/2.000000/2.000000:0.400000/14.000000/14.000000:w/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/15.600000/2.000000:14.000000/15.600000/14.000000:u/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/0.400000/2.000000:14.000000/0.400000/14.000000:d/1/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%filter_child,state=inverted:false/powered:true,box=0.000000/0.000000/0.000000:2.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/14.000000/16.000000/16.000000,box=14.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/14.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/14.000000/2.000000/16.000000,box=2.000000/0.000000/0.000000:14.000000/2.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=2.000000/0.000000/14.000000:14.000000/2.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=0.000000/2.000000/0.000000:2.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/0.000000:16.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/2.000000/14.000000:2.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/14.000000:16.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/0.000000/2.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/0.000000/16.000000/2.000000,box=14.000000/14.000000/0.000000:16.000000/16.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/2.000000/2.000000,box=2.000000/14.000000/0.000000:14.000000/16.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/14.000000/14.000000:14.000000/16.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/0.000000/14.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=0.500000/0.500000/0.500000:15.500000/15.500000/15.500000:u/0/0.500000/0.500000/15.500000/15.500000:s/0/0.500000/0.500000/15.500000/15.500000:w/0/0.500000/0.500000/15.500000/15.500000:e/0/0.500000/0.500000/15.500000/15.500000:d/0/0.500000/0.500000/15.500000/15.500000:n/0/0.500000/0.500000/15.500000/15.500000
|
|
||||||
modellist:id=%filter_child,state=inverted:false/powered:false,box=0.000000/0.000000/0.000000:2.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/14.000000/16.000000/16.000000,box=14.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/14.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/14.000000/2.000000/16.000000,box=2.000000/0.000000/0.000000:14.000000/2.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=2.000000/0.000000/14.000000:14.000000/2.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=0.000000/2.000000/0.000000:2.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/0.000000:16.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/2.000000/14.000000:2.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/14.000000:16.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/0.000000/2.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/0.000000/16.000000/2.000000,box=14.000000/14.000000/0.000000:16.000000/16.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/2.000000/2.000000,box=2.000000/14.000000/0.000000:14.000000/16.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/14.000000/14.000000:14.000000/16.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/0.000000/14.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=0.500000/0.500000/0.500000:15.500000/15.500000/15.500000:u/0/0.500000/0.500000/15.500000/15.500000:s/0/0.500000/0.500000/15.500000/15.500000:w/0/0.500000/0.500000/15.500000/15.500000:e/0/0.500000/0.500000/15.500000/15.500000:d/0/0.500000/0.500000/15.500000/15.500000:n/0/0.500000/0.500000/15.500000/15.500000,box=2.000000/2.000000/0.400000:14.000000/14.000000/0.400000:n/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/2.000000/15.600000:14.000000/14.000000/15.600000:s/1/0.000000/0.000000/16.000000/16.000000,box=15.600000/2.000000/2.000000:15.600000/14.000000/14.000000:e/1/0.000000/0.000000/16.000000/16.000000,box=0.400000/2.000000/2.000000:0.400000/14.000000/14.000000:w/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/15.600000/2.000000:14.000000/15.600000/14.000000:u/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/0.400000/2.000000:14.000000/0.400000/14.000000:d/1/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%filter_pet,state=inverted:true/powered:true,box=0.000000/0.000000/0.000000:2.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/14.000000/16.000000/16.000000,box=14.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/14.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/14.000000/2.000000/16.000000,box=2.000000/0.000000/0.000000:14.000000/2.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=2.000000/0.000000/14.000000:14.000000/2.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=0.000000/2.000000/0.000000:2.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/0.000000:16.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/2.000000/14.000000:2.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/14.000000:16.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/0.000000/2.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/0.000000/16.000000/2.000000,box=14.000000/14.000000/0.000000:16.000000/16.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/2.000000/2.000000,box=2.000000/14.000000/0.000000:14.000000/16.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/14.000000/14.000000:14.000000/16.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/0.000000/14.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=0.500000/0.500000/0.500000:15.500000/15.500000/15.500000:u/0/0.500000/0.500000/15.500000/15.500000:s/0/0.500000/0.500000/15.500000/15.500000:w/0/0.500000/0.500000/15.500000/15.500000:e/0/0.500000/0.500000/15.500000/15.500000:d/0/0.500000/0.500000/15.500000/15.500000:n/0/0.500000/0.500000/15.500000/15.500000
|
|
||||||
modellist:id=%filter_pet,state=inverted:true/powered:false,box=0.000000/0.000000/0.000000:2.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/14.000000/16.000000/16.000000,box=14.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/14.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/14.000000/2.000000/16.000000,box=2.000000/0.000000/0.000000:14.000000/2.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=2.000000/0.000000/14.000000:14.000000/2.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=0.000000/2.000000/0.000000:2.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/0.000000:16.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/2.000000/14.000000:2.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/14.000000:16.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/0.000000/2.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/0.000000/16.000000/2.000000,box=14.000000/14.000000/0.000000:16.000000/16.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/2.000000/2.000000,box=2.000000/14.000000/0.000000:14.000000/16.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/14.000000/14.000000:14.000000/16.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/0.000000/14.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=0.500000/0.500000/0.500000:15.500000/15.500000/15.500000:u/0/0.500000/0.500000/15.500000/15.500000:s/0/0.500000/0.500000/15.500000/15.500000:w/0/0.500000/0.500000/15.500000/15.500000:e/0/0.500000/0.500000/15.500000/15.500000:d/0/0.500000/0.500000/15.500000/15.500000:n/0/0.500000/0.500000/15.500000/15.500000,box=2.000000/2.000000/0.400000:14.000000/14.000000/0.400000:n/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/2.000000/15.600000:14.000000/14.000000/15.600000:s/1/0.000000/0.000000/16.000000/16.000000,box=15.600000/2.000000/2.000000:15.600000/14.000000/14.000000:e/1/0.000000/0.000000/16.000000/16.000000,box=0.400000/2.000000/2.000000:0.400000/14.000000/14.000000:w/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/15.600000/2.000000:14.000000/15.600000/14.000000:u/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/0.400000/2.000000:14.000000/0.400000/14.000000:d/1/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%filter_pet,state=inverted:false/powered:true,box=0.000000/0.000000/0.000000:2.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/14.000000/16.000000/16.000000,box=14.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/14.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/14.000000/2.000000/16.000000,box=2.000000/0.000000/0.000000:14.000000/2.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=2.000000/0.000000/14.000000:14.000000/2.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=0.000000/2.000000/0.000000:2.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/0.000000:16.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/2.000000/14.000000:2.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/14.000000:16.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/0.000000/2.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/0.000000/16.000000/2.000000,box=14.000000/14.000000/0.000000:16.000000/16.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/2.000000/2.000000,box=2.000000/14.000000/0.000000:14.000000/16.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/14.000000/14.000000:14.000000/16.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/0.000000/14.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=0.500000/0.500000/0.500000:15.500000/15.500000/15.500000:u/0/0.500000/0.500000/15.500000/15.500000:s/0/0.500000/0.500000/15.500000/15.500000:w/0/0.500000/0.500000/15.500000/15.500000:e/0/0.500000/0.500000/15.500000/15.500000:d/0/0.500000/0.500000/15.500000/15.500000:n/0/0.500000/0.500000/15.500000/15.500000
|
|
||||||
modellist:id=%filter_pet,state=inverted:false/powered:false,box=0.000000/0.000000/0.000000:2.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/14.000000/16.000000/16.000000,box=14.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/14.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/14.000000/2.000000/16.000000,box=2.000000/0.000000/0.000000:14.000000/2.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=2.000000/0.000000/14.000000:14.000000/2.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=0.000000/2.000000/0.000000:2.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/0.000000:16.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/2.000000/14.000000:2.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/14.000000:16.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/0.000000/2.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/0.000000/16.000000/2.000000,box=14.000000/14.000000/0.000000:16.000000/16.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/2.000000/2.000000,box=2.000000/14.000000/0.000000:14.000000/16.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/14.000000/14.000000:14.000000/16.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/0.000000/14.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=0.500000/0.500000/0.500000:15.500000/15.500000/15.500000:u/0/0.500000/0.500000/15.500000/15.500000:s/0/0.500000/0.500000/15.500000/15.500000:w/0/0.500000/0.500000/15.500000/15.500000:e/0/0.500000/0.500000/15.500000/15.500000:d/0/0.500000/0.500000/15.500000/15.500000:n/0/0.500000/0.500000/15.500000/15.500000,box=2.000000/2.000000/0.400000:14.000000/14.000000/0.400000:n/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/2.000000/15.600000:14.000000/14.000000/15.600000:s/1/0.000000/0.000000/16.000000/16.000000,box=15.600000/2.000000/2.000000:15.600000/14.000000/14.000000:e/1/0.000000/0.000000/16.000000/16.000000,box=0.400000/2.000000/2.000000:0.400000/14.000000/14.000000:w/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/15.600000/2.000000:14.000000/15.600000/14.000000:u/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/0.400000/2.000000:14.000000/0.400000/14.000000:d/1/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%filter_slime,state=inverted:true/powered:true,box=0.000000/0.000000/0.000000:2.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/14.000000/16.000000/16.000000,box=14.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/14.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/14.000000/2.000000/16.000000,box=2.000000/0.000000/0.000000:14.000000/2.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=2.000000/0.000000/14.000000:14.000000/2.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=0.000000/2.000000/0.000000:2.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/0.000000:16.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/2.000000/14.000000:2.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/14.000000:16.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/0.000000/2.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/0.000000/16.000000/2.000000,box=14.000000/14.000000/0.000000:16.000000/16.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/2.000000/2.000000,box=2.000000/14.000000/0.000000:14.000000/16.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/14.000000/14.000000:14.000000/16.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/0.000000/14.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=0.500000/0.500000/0.500000:15.500000/15.500000/15.500000:u/0/0.500000/0.500000/15.500000/15.500000:s/0/0.500000/0.500000/15.500000/15.500000:w/0/0.500000/0.500000/15.500000/15.500000:e/0/0.500000/0.500000/15.500000/15.500000:d/0/0.500000/0.500000/15.500000/15.500000:n/0/0.500000/0.500000/15.500000/15.500000
|
|
||||||
modellist:id=%filter_slime,state=inverted:true/powered:false,box=0.000000/0.000000/0.000000:2.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/14.000000/16.000000/16.000000,box=14.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/14.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/14.000000/2.000000/16.000000,box=2.000000/0.000000/0.000000:14.000000/2.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=2.000000/0.000000/14.000000:14.000000/2.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=0.000000/2.000000/0.000000:2.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/0.000000:16.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/2.000000/14.000000:2.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/14.000000:16.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/0.000000/2.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/0.000000/16.000000/2.000000,box=14.000000/14.000000/0.000000:16.000000/16.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/2.000000/2.000000,box=2.000000/14.000000/0.000000:14.000000/16.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/14.000000/14.000000:14.000000/16.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/0.000000/14.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=0.500000/0.500000/0.500000:15.500000/15.500000/15.500000:u/0/0.500000/0.500000/15.500000/15.500000:s/0/0.500000/0.500000/15.500000/15.500000:w/0/0.500000/0.500000/15.500000/15.500000:e/0/0.500000/0.500000/15.500000/15.500000:d/0/0.500000/0.500000/15.500000/15.500000:n/0/0.500000/0.500000/15.500000/15.500000,box=2.000000/2.000000/0.400000:14.000000/14.000000/0.400000:n/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/2.000000/15.600000:14.000000/14.000000/15.600000:s/1/0.000000/0.000000/16.000000/16.000000,box=15.600000/2.000000/2.000000:15.600000/14.000000/14.000000:e/1/0.000000/0.000000/16.000000/16.000000,box=0.400000/2.000000/2.000000:0.400000/14.000000/14.000000:w/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/15.600000/2.000000:14.000000/15.600000/14.000000:u/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/0.400000/2.000000:14.000000/0.400000/14.000000:d/1/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%filter_slime,state=inverted:false/powered:true,box=0.000000/0.000000/0.000000:2.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/14.000000/16.000000/16.000000,box=14.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/14.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/14.000000/2.000000/16.000000,box=2.000000/0.000000/0.000000:14.000000/2.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=2.000000/0.000000/14.000000:14.000000/2.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=0.000000/2.000000/0.000000:2.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/0.000000:16.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/2.000000/14.000000:2.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/14.000000:16.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/0.000000/2.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/0.000000/16.000000/2.000000,box=14.000000/14.000000/0.000000:16.000000/16.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/2.000000/2.000000,box=2.000000/14.000000/0.000000:14.000000/16.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/14.000000/14.000000:14.000000/16.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/0.000000/14.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=0.500000/0.500000/0.500000:15.500000/15.500000/15.500000:u/0/0.500000/0.500000/15.500000/15.500000:s/0/0.500000/0.500000/15.500000/15.500000:w/0/0.500000/0.500000/15.500000/15.500000:e/0/0.500000/0.500000/15.500000/15.500000:d/0/0.500000/0.500000/15.500000/15.500000:n/0/0.500000/0.500000/15.500000/15.500000
|
|
||||||
modellist:id=%filter_slime,state=inverted:false/powered:false,box=0.000000/0.000000/0.000000:2.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/14.000000/16.000000/16.000000,box=14.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/14.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/14.000000/2.000000/16.000000,box=2.000000/0.000000/0.000000:14.000000/2.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=2.000000/0.000000/14.000000:14.000000/2.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=0.000000/2.000000/0.000000:2.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/0.000000:16.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/2.000000/14.000000:2.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/14.000000:16.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/0.000000/2.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/0.000000/16.000000/2.000000,box=14.000000/14.000000/0.000000:16.000000/16.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/2.000000/2.000000,box=2.000000/14.000000/0.000000:14.000000/16.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/14.000000/14.000000:14.000000/16.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/0.000000/14.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=0.500000/0.500000/0.500000:15.500000/15.500000/15.500000:u/0/0.500000/0.500000/15.500000/15.500000:s/0/0.500000/0.500000/15.500000/15.500000:w/0/0.500000/0.500000/15.500000/15.500000:e/0/0.500000/0.500000/15.500000/15.500000:d/0/0.500000/0.500000/15.500000/15.500000:n/0/0.500000/0.500000/15.500000/15.500000,box=2.000000/2.000000/0.400000:14.000000/14.000000/0.400000:n/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/2.000000/15.600000:14.000000/14.000000/15.600000:s/1/0.000000/0.000000/16.000000/16.000000,box=15.600000/2.000000/2.000000:15.600000/14.000000/14.000000:e/1/0.000000/0.000000/16.000000/16.000000,box=0.400000/2.000000/2.000000:0.400000/14.000000/14.000000:w/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/15.600000/2.000000:14.000000/15.600000/14.000000:u/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/0.400000/2.000000:14.000000/0.400000/14.000000:d/1/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%filter_villager,state=inverted:true/powered:true,box=0.000000/0.000000/0.000000:2.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/14.000000/16.000000/16.000000,box=14.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/14.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/14.000000/2.000000/16.000000,box=2.000000/0.000000/0.000000:14.000000/2.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=2.000000/0.000000/14.000000:14.000000/2.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=0.000000/2.000000/0.000000:2.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/0.000000:16.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/2.000000/14.000000:2.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/14.000000:16.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/0.000000/2.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/0.000000/16.000000/2.000000,box=14.000000/14.000000/0.000000:16.000000/16.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/2.000000/2.000000,box=2.000000/14.000000/0.000000:14.000000/16.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/14.000000/14.000000:14.000000/16.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/0.000000/14.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=0.500000/0.500000/0.500000:15.500000/15.500000/15.500000:u/0/0.500000/0.500000/15.500000/15.500000:s/0/0.500000/0.500000/15.500000/15.500000:w/0/0.500000/0.500000/15.500000/15.500000:e/0/0.500000/0.500000/15.500000/15.500000:d/0/0.500000/0.500000/15.500000/15.500000:n/0/0.500000/0.500000/15.500000/15.500000
|
|
||||||
modellist:id=%filter_villager,state=inverted:true/powered:false,box=0.000000/0.000000/0.000000:2.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/14.000000/16.000000/16.000000,box=14.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/14.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/14.000000/2.000000/16.000000,box=2.000000/0.000000/0.000000:14.000000/2.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=2.000000/0.000000/14.000000:14.000000/2.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=0.000000/2.000000/0.000000:2.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/0.000000:16.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/2.000000/14.000000:2.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/14.000000:16.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/0.000000/2.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/0.000000/16.000000/2.000000,box=14.000000/14.000000/0.000000:16.000000/16.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/2.000000/2.000000,box=2.000000/14.000000/0.000000:14.000000/16.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/14.000000/14.000000:14.000000/16.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/0.000000/14.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=0.500000/0.500000/0.500000:15.500000/15.500000/15.500000:u/0/0.500000/0.500000/15.500000/15.500000:s/0/0.500000/0.500000/15.500000/15.500000:w/0/0.500000/0.500000/15.500000/15.500000:e/0/0.500000/0.500000/15.500000/15.500000:d/0/0.500000/0.500000/15.500000/15.500000:n/0/0.500000/0.500000/15.500000/15.500000,box=2.000000/2.000000/0.400000:14.000000/14.000000/0.400000:n/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/2.000000/15.600000:14.000000/14.000000/15.600000:s/1/0.000000/0.000000/16.000000/16.000000,box=15.600000/2.000000/2.000000:15.600000/14.000000/14.000000:e/1/0.000000/0.000000/16.000000/16.000000,box=0.400000/2.000000/2.000000:0.400000/14.000000/14.000000:w/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/15.600000/2.000000:14.000000/15.600000/14.000000:u/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/0.400000/2.000000:14.000000/0.400000/14.000000:d/1/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%filter_villager,state=inverted:false/powered:true,box=0.000000/0.000000/0.000000:2.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/14.000000/16.000000/16.000000,box=14.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/14.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/14.000000/2.000000/16.000000,box=2.000000/0.000000/0.000000:14.000000/2.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=2.000000/0.000000/14.000000:14.000000/2.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=0.000000/2.000000/0.000000:2.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/0.000000:16.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/2.000000/14.000000:2.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/14.000000:16.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/0.000000/2.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/0.000000/16.000000/2.000000,box=14.000000/14.000000/0.000000:16.000000/16.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/2.000000/2.000000,box=2.000000/14.000000/0.000000:14.000000/16.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/14.000000/14.000000:14.000000/16.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/0.000000/14.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=0.500000/0.500000/0.500000:15.500000/15.500000/15.500000:u/0/0.500000/0.500000/15.500000/15.500000:s/0/0.500000/0.500000/15.500000/15.500000:w/0/0.500000/0.500000/15.500000/15.500000:e/0/0.500000/0.500000/15.500000/15.500000:d/0/0.500000/0.500000/15.500000/15.500000:n/0/0.500000/0.500000/15.500000/15.500000
|
|
||||||
modellist:id=%filter_villager,state=inverted:false/powered:false,box=0.000000/0.000000/0.000000:2.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/14.000000/16.000000/16.000000,box=14.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/14.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/14.000000/2.000000/16.000000,box=2.000000/0.000000/0.000000:14.000000/2.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=2.000000/0.000000/14.000000:14.000000/2.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=0.000000/2.000000/0.000000:2.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/0.000000:16.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/2.000000/14.000000:2.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/14.000000:16.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/0.000000/2.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/0.000000/16.000000/2.000000,box=14.000000/14.000000/0.000000:16.000000/16.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/2.000000/2.000000,box=2.000000/14.000000/0.000000:14.000000/16.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/14.000000/14.000000:14.000000/16.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/0.000000/14.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=0.500000/0.500000/0.500000:15.500000/15.500000/15.500000:u/0/0.500000/0.500000/15.500000/15.500000:s/0/0.500000/0.500000/15.500000/15.500000:w/0/0.500000/0.500000/15.500000/15.500000:e/0/0.500000/0.500000/15.500000/15.500000:d/0/0.500000/0.500000/15.500000/15.500000:n/0/0.500000/0.500000/15.500000/15.500000,box=2.000000/2.000000/0.400000:14.000000/14.000000/0.400000:n/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/2.000000/15.600000:14.000000/14.000000/15.600000:s/1/0.000000/0.000000/16.000000/16.000000,box=15.600000/2.000000/2.000000:15.600000/14.000000/14.000000:e/1/0.000000/0.000000/16.000000/16.000000,box=0.400000/2.000000/2.000000:0.400000/14.000000/14.000000:w/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/15.600000/2.000000:14.000000/15.600000/14.000000:u/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/0.400000/2.000000:14.000000/0.400000/14.000000:d/1/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%filter_fire_immune,state=inverted:true/powered:true,box=0.000000/0.000000/0.000000:2.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/14.000000/16.000000/16.000000,box=14.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/14.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/14.000000/2.000000/16.000000,box=2.000000/0.000000/0.000000:14.000000/2.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=2.000000/0.000000/14.000000:14.000000/2.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=0.000000/2.000000/0.000000:2.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/0.000000:16.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/2.000000/14.000000:2.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/14.000000:16.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/0.000000/2.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/0.000000/16.000000/2.000000,box=14.000000/14.000000/0.000000:16.000000/16.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/2.000000/2.000000,box=2.000000/14.000000/0.000000:14.000000/16.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/14.000000/14.000000:14.000000/16.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/0.000000/14.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=0.500000/0.500000/0.500000:15.500000/15.500000/15.500000:u/0/0.500000/0.500000/15.500000/15.500000:s/0/0.500000/0.500000/15.500000/15.500000:w/0/0.500000/0.500000/15.500000/15.500000:e/0/0.500000/0.500000/15.500000/15.500000:d/0/0.500000/0.500000/15.500000/15.500000:n/0/0.500000/0.500000/15.500000/15.500000
|
|
||||||
modellist:id=%filter_fire_immune,state=inverted:true/powered:false,box=0.000000/0.000000/0.000000:2.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/14.000000/16.000000/16.000000,box=14.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/14.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/14.000000/2.000000/16.000000,box=2.000000/0.000000/0.000000:14.000000/2.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=2.000000/0.000000/14.000000:14.000000/2.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=0.000000/2.000000/0.000000:2.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/0.000000:16.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/2.000000/14.000000:2.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/14.000000:16.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/0.000000/2.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/0.000000/16.000000/2.000000,box=14.000000/14.000000/0.000000:16.000000/16.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/2.000000/2.000000,box=2.000000/14.000000/0.000000:14.000000/16.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/14.000000/14.000000:14.000000/16.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/0.000000/14.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=0.500000/0.500000/0.500000:15.500000/15.500000/15.500000:u/0/0.500000/0.500000/15.500000/15.500000:s/0/0.500000/0.500000/15.500000/15.500000:w/0/0.500000/0.500000/15.500000/15.500000:e/0/0.500000/0.500000/15.500000/15.500000:d/0/0.500000/0.500000/15.500000/15.500000:n/0/0.500000/0.500000/15.500000/15.500000,box=2.000000/2.000000/0.400000:14.000000/14.000000/0.400000:n/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/2.000000/15.600000:14.000000/14.000000/15.600000:s/1/0.000000/0.000000/16.000000/16.000000,box=15.600000/2.000000/2.000000:15.600000/14.000000/14.000000:e/1/0.000000/0.000000/16.000000/16.000000,box=0.400000/2.000000/2.000000:0.400000/14.000000/14.000000:w/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/15.600000/2.000000:14.000000/15.600000/14.000000:u/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/0.400000/2.000000:14.000000/0.400000/14.000000:d/1/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%filter_fire_immune,state=inverted:false/powered:true,box=0.000000/0.000000/0.000000:2.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/14.000000/16.000000/16.000000,box=14.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/14.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/14.000000/2.000000/16.000000,box=2.000000/0.000000/0.000000:14.000000/2.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=2.000000/0.000000/14.000000:14.000000/2.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=0.000000/2.000000/0.000000:2.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/0.000000:16.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/2.000000/14.000000:2.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/14.000000:16.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/0.000000/2.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/0.000000/16.000000/2.000000,box=14.000000/14.000000/0.000000:16.000000/16.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/2.000000/2.000000,box=2.000000/14.000000/0.000000:14.000000/16.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/14.000000/14.000000:14.000000/16.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/0.000000/14.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=0.500000/0.500000/0.500000:15.500000/15.500000/15.500000:u/0/0.500000/0.500000/15.500000/15.500000:s/0/0.500000/0.500000/15.500000/15.500000:w/0/0.500000/0.500000/15.500000/15.500000:e/0/0.500000/0.500000/15.500000/15.500000:d/0/0.500000/0.500000/15.500000/15.500000:n/0/0.500000/0.500000/15.500000/15.500000
|
|
||||||
modellist:id=%filter_fire_immune,state=inverted:false/powered:false,box=0.000000/0.000000/0.000000:2.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/14.000000/16.000000/16.000000,box=14.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/14.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/14.000000/2.000000/16.000000,box=2.000000/0.000000/0.000000:14.000000/2.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=2.000000/0.000000/14.000000:14.000000/2.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=0.000000/2.000000/0.000000:2.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/0.000000:16.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/2.000000/14.000000:2.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/14.000000:16.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/0.000000/2.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/0.000000/16.000000/2.000000,box=14.000000/14.000000/0.000000:16.000000/16.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/2.000000/2.000000,box=2.000000/14.000000/0.000000:14.000000/16.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/14.000000/14.000000:14.000000/16.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/0.000000/14.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=0.500000/0.500000/0.500000:15.500000/15.500000/15.500000:u/0/0.500000/0.500000/15.500000/15.500000:s/0/0.500000/0.500000/15.500000/15.500000:w/0/0.500000/0.500000/15.500000/15.500000:e/0/0.500000/0.500000/15.500000/15.500000:d/0/0.500000/0.500000/15.500000/15.500000:n/0/0.500000/0.500000/15.500000/15.500000,box=2.000000/2.000000/0.400000:14.000000/14.000000/0.400000:n/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/2.000000/15.600000:14.000000/14.000000/15.600000:s/1/0.000000/0.000000/16.000000/16.000000,box=15.600000/2.000000/2.000000:15.600000/14.000000/14.000000:e/1/0.000000/0.000000/16.000000/16.000000,box=0.400000/2.000000/2.000000:0.400000/14.000000/14.000000:w/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/15.600000/2.000000:14.000000/15.600000/14.000000:u/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/0.400000/2.000000:14.000000/0.400000/14.000000:d/1/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%filter_golem,state=inverted:true/powered:true,box=0.000000/0.000000/0.000000:2.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/14.000000/16.000000/16.000000,box=14.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/14.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/14.000000/2.000000/16.000000,box=2.000000/0.000000/0.000000:14.000000/2.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=2.000000/0.000000/14.000000:14.000000/2.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=0.000000/2.000000/0.000000:2.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/0.000000:16.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/2.000000/14.000000:2.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/14.000000:16.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/0.000000/2.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/0.000000/16.000000/2.000000,box=14.000000/14.000000/0.000000:16.000000/16.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/2.000000/2.000000,box=2.000000/14.000000/0.000000:14.000000/16.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/14.000000/14.000000:14.000000/16.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/0.000000/14.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=0.500000/0.500000/0.500000:15.500000/15.500000/15.500000:u/0/0.500000/0.500000/15.500000/15.500000:s/0/0.500000/0.500000/15.500000/15.500000:w/0/0.500000/0.500000/15.500000/15.500000:e/0/0.500000/0.500000/15.500000/15.500000:d/0/0.500000/0.500000/15.500000/15.500000:n/0/0.500000/0.500000/15.500000/15.500000
|
|
||||||
modellist:id=%filter_golem,state=inverted:true/powered:false,box=0.000000/0.000000/0.000000:2.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/14.000000/16.000000/16.000000,box=14.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/14.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/14.000000/2.000000/16.000000,box=2.000000/0.000000/0.000000:14.000000/2.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=2.000000/0.000000/14.000000:14.000000/2.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=0.000000/2.000000/0.000000:2.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/0.000000:16.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/2.000000/14.000000:2.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/14.000000:16.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/0.000000/2.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/0.000000/16.000000/2.000000,box=14.000000/14.000000/0.000000:16.000000/16.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/2.000000/2.000000,box=2.000000/14.000000/0.000000:14.000000/16.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/14.000000/14.000000:14.000000/16.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/0.000000/14.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=0.500000/0.500000/0.500000:15.500000/15.500000/15.500000:u/0/0.500000/0.500000/15.500000/15.500000:s/0/0.500000/0.500000/15.500000/15.500000:w/0/0.500000/0.500000/15.500000/15.500000:e/0/0.500000/0.500000/15.500000/15.500000:d/0/0.500000/0.500000/15.500000/15.500000:n/0/0.500000/0.500000/15.500000/15.500000,box=2.000000/2.000000/0.400000:14.000000/14.000000/0.400000:n/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/2.000000/15.600000:14.000000/14.000000/15.600000:s/1/0.000000/0.000000/16.000000/16.000000,box=15.600000/2.000000/2.000000:15.600000/14.000000/14.000000:e/1/0.000000/0.000000/16.000000/16.000000,box=0.400000/2.000000/2.000000:0.400000/14.000000/14.000000:w/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/15.600000/2.000000:14.000000/15.600000/14.000000:u/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/0.400000/2.000000:14.000000/0.400000/14.000000:d/1/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%filter_golem,state=inverted:false/powered:true,box=0.000000/0.000000/0.000000:2.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/14.000000/16.000000/16.000000,box=14.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/14.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/14.000000/2.000000/16.000000,box=2.000000/0.000000/0.000000:14.000000/2.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=2.000000/0.000000/14.000000:14.000000/2.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=0.000000/2.000000/0.000000:2.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/0.000000:16.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/2.000000/14.000000:2.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/14.000000:16.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/0.000000/2.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/0.000000/16.000000/2.000000,box=14.000000/14.000000/0.000000:16.000000/16.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/2.000000/2.000000,box=2.000000/14.000000/0.000000:14.000000/16.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/14.000000/14.000000:14.000000/16.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/0.000000/14.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=0.500000/0.500000/0.500000:15.500000/15.500000/15.500000:u/0/0.500000/0.500000/15.500000/15.500000:s/0/0.500000/0.500000/15.500000/15.500000:w/0/0.500000/0.500000/15.500000/15.500000:e/0/0.500000/0.500000/15.500000/15.500000:d/0/0.500000/0.500000/15.500000/15.500000:n/0/0.500000/0.500000/15.500000/15.500000
|
|
||||||
modellist:id=%filter_golem,state=inverted:false/powered:false,box=0.000000/0.000000/0.000000:2.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/14.000000/16.000000/16.000000,box=14.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/14.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/14.000000/2.000000/16.000000,box=2.000000/0.000000/0.000000:14.000000/2.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=2.000000/0.000000/14.000000:14.000000/2.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=0.000000/2.000000/0.000000:2.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/0.000000:16.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/2.000000/14.000000:2.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/14.000000:16.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/0.000000/2.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/0.000000/16.000000/2.000000,box=14.000000/14.000000/0.000000:16.000000/16.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/2.000000/2.000000,box=2.000000/14.000000/0.000000:14.000000/16.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/14.000000/14.000000:14.000000/16.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/0.000000/14.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=0.500000/0.500000/0.500000:15.500000/15.500000/15.500000:u/0/0.500000/0.500000/15.500000/15.500000:s/0/0.500000/0.500000/15.500000/15.500000:w/0/0.500000/0.500000/15.500000/15.500000:e/0/0.500000/0.500000/15.500000/15.500000:d/0/0.500000/0.500000/15.500000/15.500000:n/0/0.500000/0.500000/15.500000/15.500000,box=2.000000/2.000000/0.400000:14.000000/14.000000/0.400000:n/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/2.000000/15.600000:14.000000/14.000000/15.600000:s/1/0.000000/0.000000/16.000000/16.000000,box=15.600000/2.000000/2.000000:15.600000/14.000000/14.000000:e/1/0.000000/0.000000/16.000000/16.000000,box=0.400000/2.000000/2.000000:0.400000/14.000000/14.000000:w/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/15.600000/2.000000:14.000000/15.600000/14.000000:u/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/0.400000/2.000000:14.000000/0.400000/14.000000:d/1/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%filter_water,state=inverted:true/powered:true,box=0.000000/0.000000/0.000000:2.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/14.000000/16.000000/16.000000,box=14.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/14.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/14.000000/2.000000/16.000000,box=2.000000/0.000000/0.000000:14.000000/2.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=2.000000/0.000000/14.000000:14.000000/2.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=0.000000/2.000000/0.000000:2.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/0.000000:16.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/2.000000/14.000000:2.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/14.000000:16.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/0.000000/2.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/0.000000/16.000000/2.000000,box=14.000000/14.000000/0.000000:16.000000/16.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/2.000000/2.000000,box=2.000000/14.000000/0.000000:14.000000/16.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/14.000000/14.000000:14.000000/16.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/0.000000/14.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=0.500000/0.500000/0.500000:15.500000/15.500000/15.500000:u/0/0.500000/0.500000/15.500000/15.500000:s/0/0.500000/0.500000/15.500000/15.500000:w/0/0.500000/0.500000/15.500000/15.500000:e/0/0.500000/0.500000/15.500000/15.500000:d/0/0.500000/0.500000/15.500000/15.500000:n/0/0.500000/0.500000/15.500000/15.500000
|
|
||||||
modellist:id=%filter_water,state=inverted:true/powered:false,box=0.000000/0.000000/0.000000:2.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/14.000000/16.000000/16.000000,box=14.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/14.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/14.000000/2.000000/16.000000,box=2.000000/0.000000/0.000000:14.000000/2.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=2.000000/0.000000/14.000000:14.000000/2.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=0.000000/2.000000/0.000000:2.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/0.000000:16.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/2.000000/14.000000:2.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/14.000000:16.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/0.000000/2.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/0.000000/16.000000/2.000000,box=14.000000/14.000000/0.000000:16.000000/16.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/2.000000/2.000000,box=2.000000/14.000000/0.000000:14.000000/16.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/14.000000/14.000000:14.000000/16.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/0.000000/14.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=0.500000/0.500000/0.500000:15.500000/15.500000/15.500000:u/0/0.500000/0.500000/15.500000/15.500000:s/0/0.500000/0.500000/15.500000/15.500000:w/0/0.500000/0.500000/15.500000/15.500000:e/0/0.500000/0.500000/15.500000/15.500000:d/0/0.500000/0.500000/15.500000/15.500000:n/0/0.500000/0.500000/15.500000/15.500000,box=2.000000/2.000000/0.400000:14.000000/14.000000/0.400000:n/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/2.000000/15.600000:14.000000/14.000000/15.600000:s/1/0.000000/0.000000/16.000000/16.000000,box=15.600000/2.000000/2.000000:15.600000/14.000000/14.000000:e/1/0.000000/0.000000/16.000000/16.000000,box=0.400000/2.000000/2.000000:0.400000/14.000000/14.000000:w/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/15.600000/2.000000:14.000000/15.600000/14.000000:u/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/0.400000/2.000000:14.000000/0.400000/14.000000:d/1/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%filter_water,state=inverted:false/powered:true,box=0.000000/0.000000/0.000000:2.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/14.000000/16.000000/16.000000,box=14.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/14.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/14.000000/2.000000/16.000000,box=2.000000/0.000000/0.000000:14.000000/2.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=2.000000/0.000000/14.000000:14.000000/2.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=0.000000/2.000000/0.000000:2.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/0.000000:16.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/2.000000/14.000000:2.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/14.000000:16.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/0.000000/2.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/0.000000/16.000000/2.000000,box=14.000000/14.000000/0.000000:16.000000/16.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/2.000000/2.000000,box=2.000000/14.000000/0.000000:14.000000/16.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/14.000000/14.000000:14.000000/16.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/0.000000/14.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=0.500000/0.500000/0.500000:15.500000/15.500000/15.500000:u/0/0.500000/0.500000/15.500000/15.500000:s/0/0.500000/0.500000/15.500000/15.500000:w/0/0.500000/0.500000/15.500000/15.500000:e/0/0.500000/0.500000/15.500000/15.500000:d/0/0.500000/0.500000/15.500000/15.500000:n/0/0.500000/0.500000/15.500000/15.500000
|
|
||||||
modellist:id=%filter_water,state=inverted:false/powered:false,box=0.000000/0.000000/0.000000:2.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/14.000000/16.000000/16.000000,box=14.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/14.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/14.000000/2.000000/16.000000,box=2.000000/0.000000/0.000000:14.000000/2.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=2.000000/0.000000/14.000000:14.000000/2.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=0.000000/2.000000/0.000000:2.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/0.000000:16.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/2.000000/14.000000:2.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/14.000000:16.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/0.000000/2.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/0.000000/16.000000/2.000000,box=14.000000/14.000000/0.000000:16.000000/16.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/2.000000/2.000000,box=2.000000/14.000000/0.000000:14.000000/16.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/14.000000/14.000000:14.000000/16.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/0.000000/14.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=0.500000/0.500000/0.500000:15.500000/15.500000/15.500000:u/0/0.500000/0.500000/15.500000/15.500000:s/0/0.500000/0.500000/15.500000/15.500000:w/0/0.500000/0.500000/15.500000/15.500000:e/0/0.500000/0.500000/15.500000/15.500000:d/0/0.500000/0.500000/15.500000/15.500000:n/0/0.500000/0.500000/15.500000/15.500000,box=2.000000/2.000000/0.400000:14.000000/14.000000/0.400000:n/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/2.000000/15.600000:14.000000/14.000000/15.600000:s/1/0.000000/0.000000/16.000000/16.000000,box=15.600000/2.000000/2.000000:15.600000/14.000000/14.000000:e/1/0.000000/0.000000/16.000000/16.000000,box=0.400000/2.000000/2.000000:0.400000/14.000000/14.000000:w/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/15.600000/2.000000:14.000000/15.600000/14.000000:u/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/0.400000/2.000000:14.000000/0.400000/14.000000:d/1/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%filter_named,state=inverted:true/powered:true,box=0.000000/0.000000/0.000000:2.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/14.000000/16.000000/16.000000,box=14.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/14.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/14.000000/2.000000/16.000000,box=2.000000/0.000000/0.000000:14.000000/2.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=2.000000/0.000000/14.000000:14.000000/2.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=0.000000/2.000000/0.000000:2.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/0.000000:16.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/2.000000/14.000000:2.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/14.000000:16.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/0.000000/2.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/0.000000/16.000000/2.000000,box=14.000000/14.000000/0.000000:16.000000/16.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/2.000000/2.000000,box=2.000000/14.000000/0.000000:14.000000/16.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/14.000000/14.000000:14.000000/16.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/0.000000/14.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=0.500000/0.500000/0.500000:15.500000/15.500000/15.500000:u/0/0.500000/0.500000/15.500000/15.500000:s/0/0.500000/0.500000/15.500000/15.500000:w/0/0.500000/0.500000/15.500000/15.500000:e/0/0.500000/0.500000/15.500000/15.500000:d/0/0.500000/0.500000/15.500000/15.500000:n/0/0.500000/0.500000/15.500000/15.500000
|
|
||||||
modellist:id=%filter_named,state=inverted:true/powered:false,box=0.000000/0.000000/0.000000:2.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/14.000000/16.000000/16.000000,box=14.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/14.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/14.000000/2.000000/16.000000,box=2.000000/0.000000/0.000000:14.000000/2.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=2.000000/0.000000/14.000000:14.000000/2.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=0.000000/2.000000/0.000000:2.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/0.000000:16.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/2.000000/14.000000:2.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/14.000000:16.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/0.000000/2.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/0.000000/16.000000/2.000000,box=14.000000/14.000000/0.000000:16.000000/16.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/2.000000/2.000000,box=2.000000/14.000000/0.000000:14.000000/16.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/14.000000/14.000000:14.000000/16.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/0.000000/14.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=0.500000/0.500000/0.500000:15.500000/15.500000/15.500000:u/0/0.500000/0.500000/15.500000/15.500000:s/0/0.500000/0.500000/15.500000/15.500000:w/0/0.500000/0.500000/15.500000/15.500000:e/0/0.500000/0.500000/15.500000/15.500000:d/0/0.500000/0.500000/15.500000/15.500000:n/0/0.500000/0.500000/15.500000/15.500000,box=2.000000/2.000000/0.400000:14.000000/14.000000/0.400000:n/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/2.000000/15.600000:14.000000/14.000000/15.600000:s/1/0.000000/0.000000/16.000000/16.000000,box=15.600000/2.000000/2.000000:15.600000/14.000000/14.000000:e/1/0.000000/0.000000/16.000000/16.000000,box=0.400000/2.000000/2.000000:0.400000/14.000000/14.000000:w/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/15.600000/2.000000:14.000000/15.600000/14.000000:u/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/0.400000/2.000000:14.000000/0.400000/14.000000:d/1/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%filter_named,state=inverted:false/powered:true,box=0.000000/0.000000/0.000000:2.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/14.000000/16.000000/16.000000,box=14.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/14.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/14.000000/2.000000/16.000000,box=2.000000/0.000000/0.000000:14.000000/2.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=2.000000/0.000000/14.000000:14.000000/2.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=0.000000/2.000000/0.000000:2.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/0.000000:16.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/2.000000/14.000000:2.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/14.000000:16.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/0.000000/2.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/0.000000/16.000000/2.000000,box=14.000000/14.000000/0.000000:16.000000/16.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/2.000000/2.000000,box=2.000000/14.000000/0.000000:14.000000/16.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/14.000000/14.000000:14.000000/16.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/0.000000/14.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=0.500000/0.500000/0.500000:15.500000/15.500000/15.500000:u/0/0.500000/0.500000/15.500000/15.500000:s/0/0.500000/0.500000/15.500000/15.500000:w/0/0.500000/0.500000/15.500000/15.500000:e/0/0.500000/0.500000/15.500000/15.500000:d/0/0.500000/0.500000/15.500000/15.500000:n/0/0.500000/0.500000/15.500000/15.500000
|
|
||||||
modellist:id=%filter_named,state=inverted:false/powered:false,box=0.000000/0.000000/0.000000:2.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/14.000000/16.000000/16.000000,box=14.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/14.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/14.000000/2.000000/16.000000,box=2.000000/0.000000/0.000000:14.000000/2.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=2.000000/0.000000/14.000000:14.000000/2.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=0.000000/2.000000/0.000000:2.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/0.000000:16.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/2.000000/14.000000:2.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/14.000000:16.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/0.000000/2.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/0.000000/16.000000/2.000000,box=14.000000/14.000000/0.000000:16.000000/16.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/2.000000/2.000000,box=2.000000/14.000000/0.000000:14.000000/16.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/14.000000/14.000000:14.000000/16.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/0.000000/14.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=0.500000/0.500000/0.500000:15.500000/15.500000/15.500000:u/0/0.500000/0.500000/15.500000/15.500000:s/0/0.500000/0.500000/15.500000/15.500000:w/0/0.500000/0.500000/15.500000/15.500000:e/0/0.500000/0.500000/15.500000/15.500000:d/0/0.500000/0.500000/15.500000/15.500000:n/0/0.500000/0.500000/15.500000/15.500000,box=2.000000/2.000000/0.400000:14.000000/14.000000/0.400000:n/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/2.000000/15.600000:14.000000/14.000000/15.600000:s/1/0.000000/0.000000/16.000000/16.000000,box=15.600000/2.000000/2.000000:15.600000/14.000000/14.000000:e/1/0.000000/0.000000/16.000000/16.000000,box=0.400000/2.000000/2.000000:0.400000/14.000000/14.000000:w/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/15.600000/2.000000:14.000000/15.600000/14.000000:u/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/0.400000/2.000000:14.000000/0.400000/14.000000:d/1/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%filter_freeze_immune,state=inverted:true/powered:true,box=0.000000/0.000000/0.000000:2.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/14.000000/16.000000/16.000000,box=14.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/14.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/14.000000/2.000000/16.000000,box=2.000000/0.000000/0.000000:14.000000/2.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=2.000000/0.000000/14.000000:14.000000/2.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=0.000000/2.000000/0.000000:2.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/0.000000:16.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/2.000000/14.000000:2.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/14.000000:16.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/0.000000/2.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/0.000000/16.000000/2.000000,box=14.000000/14.000000/0.000000:16.000000/16.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/2.000000/2.000000,box=2.000000/14.000000/0.000000:14.000000/16.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/14.000000/14.000000:14.000000/16.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/0.000000/14.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=0.500000/0.500000/0.500000:15.500000/15.500000/15.500000:u/0/0.500000/0.500000/15.500000/15.500000:s/0/0.500000/0.500000/15.500000/15.500000:w/0/0.500000/0.500000/15.500000/15.500000:e/0/0.500000/0.500000/15.500000/15.500000:d/0/0.500000/0.500000/15.500000/15.500000:n/0/0.500000/0.500000/15.500000/15.500000
|
|
||||||
modellist:id=%filter_freeze_immune,state=inverted:true/powered:false,box=0.000000/0.000000/0.000000:2.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/14.000000/16.000000/16.000000,box=14.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/14.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/14.000000/2.000000/16.000000,box=2.000000/0.000000/0.000000:14.000000/2.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=2.000000/0.000000/14.000000:14.000000/2.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=0.000000/2.000000/0.000000:2.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/0.000000:16.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/2.000000/14.000000:2.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/14.000000:16.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/0.000000/2.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/0.000000/16.000000/2.000000,box=14.000000/14.000000/0.000000:16.000000/16.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/2.000000/2.000000,box=2.000000/14.000000/0.000000:14.000000/16.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/14.000000/14.000000:14.000000/16.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/0.000000/14.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=0.500000/0.500000/0.500000:15.500000/15.500000/15.500000:u/0/0.500000/0.500000/15.500000/15.500000:s/0/0.500000/0.500000/15.500000/15.500000:w/0/0.500000/0.500000/15.500000/15.500000:e/0/0.500000/0.500000/15.500000/15.500000:d/0/0.500000/0.500000/15.500000/15.500000:n/0/0.500000/0.500000/15.500000/15.500000,box=2.000000/2.000000/0.400000:14.000000/14.000000/0.400000:n/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/2.000000/15.600000:14.000000/14.000000/15.600000:s/1/0.000000/0.000000/16.000000/16.000000,box=15.600000/2.000000/2.000000:15.600000/14.000000/14.000000:e/1/0.000000/0.000000/16.000000/16.000000,box=0.400000/2.000000/2.000000:0.400000/14.000000/14.000000:w/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/15.600000/2.000000:14.000000/15.600000/14.000000:u/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/0.400000/2.000000:14.000000/0.400000/14.000000:d/1/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%filter_freeze_immune,state=inverted:false/powered:true,box=0.000000/0.000000/0.000000:2.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/14.000000/16.000000/16.000000,box=14.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/14.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/14.000000/2.000000/16.000000,box=2.000000/0.000000/0.000000:14.000000/2.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=2.000000/0.000000/14.000000:14.000000/2.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=0.000000/2.000000/0.000000:2.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/0.000000:16.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/2.000000/14.000000:2.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/14.000000:16.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/0.000000/2.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/0.000000/16.000000/2.000000,box=14.000000/14.000000/0.000000:16.000000/16.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/2.000000/2.000000,box=2.000000/14.000000/0.000000:14.000000/16.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/14.000000/14.000000:14.000000/16.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/0.000000/14.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=0.500000/0.500000/0.500000:15.500000/15.500000/15.500000:u/0/0.500000/0.500000/15.500000/15.500000:s/0/0.500000/0.500000/15.500000/15.500000:w/0/0.500000/0.500000/15.500000/15.500000:e/0/0.500000/0.500000/15.500000/15.500000:d/0/0.500000/0.500000/15.500000/15.500000:n/0/0.500000/0.500000/15.500000/15.500000
|
|
||||||
modellist:id=%filter_freeze_immune,state=inverted:false/powered:false,box=0.000000/0.000000/0.000000:2.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/14.000000/16.000000/16.000000,box=14.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/14.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/14.000000/2.000000/16.000000,box=2.000000/0.000000/0.000000:14.000000/2.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=2.000000/0.000000/14.000000:14.000000/2.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=0.000000/2.000000/0.000000:2.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/0.000000:16.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/2.000000/14.000000:2.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/14.000000:16.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/0.000000/2.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/0.000000/16.000000/2.000000,box=14.000000/14.000000/0.000000:16.000000/16.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/2.000000/2.000000,box=2.000000/14.000000/0.000000:14.000000/16.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/14.000000/14.000000:14.000000/16.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/0.000000/14.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=0.500000/0.500000/0.500000:15.500000/15.500000/15.500000:u/0/0.500000/0.500000/15.500000/15.500000:s/0/0.500000/0.500000/15.500000/15.500000:w/0/0.500000/0.500000/15.500000/15.500000:e/0/0.500000/0.500000/15.500000/15.500000:d/0/0.500000/0.500000/15.500000/15.500000:n/0/0.500000/0.500000/15.500000/15.500000,box=2.000000/2.000000/0.400000:14.000000/14.000000/0.400000:n/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/2.000000/15.600000:14.000000/14.000000/15.600000:s/1/0.000000/0.000000/16.000000/16.000000,box=15.600000/2.000000/2.000000:15.600000/14.000000/14.000000:e/1/0.000000/0.000000/16.000000/16.000000,box=0.400000/2.000000/2.000000:0.400000/14.000000/14.000000:w/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/15.600000/2.000000:14.000000/15.600000/14.000000:u/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/0.400000/2.000000:14.000000/0.400000/14.000000:d/1/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%filter_equipment,state=inverted:true/powered:true,box=0.000000/0.000000/0.000000:2.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/14.000000/16.000000/16.000000,box=14.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/14.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/14.000000/2.000000/16.000000,box=2.000000/0.000000/0.000000:14.000000/2.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=2.000000/0.000000/14.000000:14.000000/2.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=0.000000/2.000000/0.000000:2.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/0.000000:16.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/2.000000/14.000000:2.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/14.000000:16.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/0.000000/2.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/0.000000/16.000000/2.000000,box=14.000000/14.000000/0.000000:16.000000/16.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/2.000000/2.000000,box=2.000000/14.000000/0.000000:14.000000/16.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/14.000000/14.000000:14.000000/16.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/0.000000/14.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=0.500000/0.500000/0.500000:15.500000/15.500000/15.500000:u/0/0.500000/0.500000/15.500000/15.500000:s/0/0.500000/0.500000/15.500000/15.500000:w/0/0.500000/0.500000/15.500000/15.500000:e/0/0.500000/0.500000/15.500000/15.500000:d/0/0.500000/0.500000/15.500000/15.500000:n/0/0.500000/0.500000/15.500000/15.500000
|
|
||||||
modellist:id=%filter_equipment,state=inverted:true/powered:false,box=0.000000/0.000000/0.000000:2.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/14.000000/16.000000/16.000000,box=14.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/14.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/14.000000/2.000000/16.000000,box=2.000000/0.000000/0.000000:14.000000/2.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=2.000000/0.000000/14.000000:14.000000/2.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=0.000000/2.000000/0.000000:2.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/0.000000:16.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/2.000000/14.000000:2.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/14.000000:16.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/0.000000/2.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/0.000000/16.000000/2.000000,box=14.000000/14.000000/0.000000:16.000000/16.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/2.000000/2.000000,box=2.000000/14.000000/0.000000:14.000000/16.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/14.000000/14.000000:14.000000/16.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/0.000000/14.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=0.500000/0.500000/0.500000:15.500000/15.500000/15.500000:u/0/0.500000/0.500000/15.500000/15.500000:s/0/0.500000/0.500000/15.500000/15.500000:w/0/0.500000/0.500000/15.500000/15.500000:e/0/0.500000/0.500000/15.500000/15.500000:d/0/0.500000/0.500000/15.500000/15.500000:n/0/0.500000/0.500000/15.500000/15.500000,box=2.000000/2.000000/0.400000:14.000000/14.000000/0.400000:n/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/2.000000/15.600000:14.000000/14.000000/15.600000:s/1/0.000000/0.000000/16.000000/16.000000,box=15.600000/2.000000/2.000000:15.600000/14.000000/14.000000:e/1/0.000000/0.000000/16.000000/16.000000,box=0.400000/2.000000/2.000000:0.400000/14.000000/14.000000:w/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/15.600000/2.000000:14.000000/15.600000/14.000000:u/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/0.400000/2.000000:14.000000/0.400000/14.000000:d/1/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%filter_equipment,state=inverted:false/powered:true,box=0.000000/0.000000/0.000000:2.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/14.000000/16.000000/16.000000,box=14.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/14.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/14.000000/2.000000/16.000000,box=2.000000/0.000000/0.000000:14.000000/2.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=2.000000/0.000000/14.000000:14.000000/2.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=0.000000/2.000000/0.000000:2.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/0.000000:16.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/2.000000/14.000000:2.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/14.000000:16.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/0.000000/2.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/0.000000/16.000000/2.000000,box=14.000000/14.000000/0.000000:16.000000/16.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/2.000000/2.000000,box=2.000000/14.000000/0.000000:14.000000/16.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/14.000000/14.000000:14.000000/16.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/0.000000/14.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=0.500000/0.500000/0.500000:15.500000/15.500000/15.500000:u/0/0.500000/0.500000/15.500000/15.500000:s/0/0.500000/0.500000/15.500000/15.500000:w/0/0.500000/0.500000/15.500000/15.500000:e/0/0.500000/0.500000/15.500000/15.500000:d/0/0.500000/0.500000/15.500000/15.500000:n/0/0.500000/0.500000/15.500000/15.500000
|
|
||||||
modellist:id=%filter_equipment,state=inverted:false/powered:false,box=0.000000/0.000000/0.000000:2.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/14.000000/16.000000/16.000000,box=14.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/14.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/14.000000/2.000000/16.000000,box=2.000000/0.000000/0.000000:14.000000/2.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=2.000000/0.000000/14.000000:14.000000/2.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=0.000000/2.000000/0.000000:2.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/0.000000:16.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/2.000000/14.000000:2.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/14.000000:16.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/0.000000/2.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/0.000000/16.000000/2.000000,box=14.000000/14.000000/0.000000:16.000000/16.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/2.000000/2.000000,box=2.000000/14.000000/0.000000:14.000000/16.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/14.000000/14.000000:14.000000/16.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/0.000000/14.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=0.500000/0.500000/0.500000:15.500000/15.500000/15.500000:u/0/0.500000/0.500000/15.500000/15.500000:s/0/0.500000/0.500000/15.500000/15.500000:w/0/0.500000/0.500000/15.500000/15.500000:e/0/0.500000/0.500000/15.500000/15.500000:d/0/0.500000/0.500000/15.500000/15.500000:n/0/0.500000/0.500000/15.500000/15.500000,box=2.000000/2.000000/0.400000:14.000000/14.000000/0.400000:n/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/2.000000/15.600000:14.000000/14.000000/15.600000:s/1/0.000000/0.000000/16.000000/16.000000,box=15.600000/2.000000/2.000000:15.600000/14.000000/14.000000:e/1/0.000000/0.000000/16.000000/16.000000,box=0.400000/2.000000/2.000000:0.400000/14.000000/14.000000:w/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/15.600000/2.000000:14.000000/15.600000/14.000000:u/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/0.400000/2.000000:14.000000/0.400000/14.000000:d/1/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%filter_passenger,state=inverted:true/powered:true,box=0.000000/0.000000/0.000000:2.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/14.000000/16.000000/16.000000,box=14.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/14.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/14.000000/2.000000/16.000000,box=2.000000/0.000000/0.000000:14.000000/2.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=2.000000/0.000000/14.000000:14.000000/2.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=0.000000/2.000000/0.000000:2.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/0.000000:16.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/2.000000/14.000000:2.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/14.000000:16.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/0.000000/2.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/0.000000/16.000000/2.000000,box=14.000000/14.000000/0.000000:16.000000/16.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/2.000000/2.000000,box=2.000000/14.000000/0.000000:14.000000/16.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/14.000000/14.000000:14.000000/16.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/0.000000/14.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=0.500000/0.500000/0.500000:15.500000/15.500000/15.500000:u/0/0.500000/0.500000/15.500000/15.500000:s/0/0.500000/0.500000/15.500000/15.500000:w/0/0.500000/0.500000/15.500000/15.500000:e/0/0.500000/0.500000/15.500000/15.500000:d/0/0.500000/0.500000/15.500000/15.500000:n/0/0.500000/0.500000/15.500000/15.500000
|
|
||||||
modellist:id=%filter_passenger,state=inverted:true/powered:false,box=0.000000/0.000000/0.000000:2.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/14.000000/16.000000/16.000000,box=14.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/14.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/14.000000/2.000000/16.000000,box=2.000000/0.000000/0.000000:14.000000/2.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=2.000000/0.000000/14.000000:14.000000/2.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=0.000000/2.000000/0.000000:2.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/0.000000:16.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/2.000000/14.000000:2.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/14.000000:16.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/0.000000/2.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/0.000000/16.000000/2.000000,box=14.000000/14.000000/0.000000:16.000000/16.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/2.000000/2.000000,box=2.000000/14.000000/0.000000:14.000000/16.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/14.000000/14.000000:14.000000/16.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/0.000000/14.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=0.500000/0.500000/0.500000:15.500000/15.500000/15.500000:u/0/0.500000/0.500000/15.500000/15.500000:s/0/0.500000/0.500000/15.500000/15.500000:w/0/0.500000/0.500000/15.500000/15.500000:e/0/0.500000/0.500000/15.500000/15.500000:d/0/0.500000/0.500000/15.500000/15.500000:n/0/0.500000/0.500000/15.500000/15.500000,box=2.000000/2.000000/0.400000:14.000000/14.000000/0.400000:n/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/2.000000/15.600000:14.000000/14.000000/15.600000:s/1/0.000000/0.000000/16.000000/16.000000,box=15.600000/2.000000/2.000000:15.600000/14.000000/14.000000:e/1/0.000000/0.000000/16.000000/16.000000,box=0.400000/2.000000/2.000000:0.400000/14.000000/14.000000:w/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/15.600000/2.000000:14.000000/15.600000/14.000000:u/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/0.400000/2.000000:14.000000/0.400000/14.000000:d/1/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%filter_passenger,state=inverted:false/powered:true,box=0.000000/0.000000/0.000000:2.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/14.000000/16.000000/16.000000,box=14.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/14.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/14.000000/2.000000/16.000000,box=2.000000/0.000000/0.000000:14.000000/2.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=2.000000/0.000000/14.000000:14.000000/2.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=0.000000/2.000000/0.000000:2.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/0.000000:16.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/2.000000/14.000000:2.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/14.000000:16.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/0.000000/2.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/0.000000/16.000000/2.000000,box=14.000000/14.000000/0.000000:16.000000/16.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/2.000000/2.000000,box=2.000000/14.000000/0.000000:14.000000/16.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/14.000000/14.000000:14.000000/16.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/0.000000/14.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=0.500000/0.500000/0.500000:15.500000/15.500000/15.500000:u/0/0.500000/0.500000/15.500000/15.500000:s/0/0.500000/0.500000/15.500000/15.500000:w/0/0.500000/0.500000/15.500000/15.500000:e/0/0.500000/0.500000/15.500000/15.500000:d/0/0.500000/0.500000/15.500000/15.500000:n/0/0.500000/0.500000/15.500000/15.500000
|
|
||||||
modellist:id=%filter_passenger,state=inverted:false/powered:false,box=0.000000/0.000000/0.000000:2.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/14.000000/16.000000/16.000000,box=14.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/14.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/14.000000/2.000000/16.000000,box=2.000000/0.000000/0.000000:14.000000/2.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=2.000000/0.000000/14.000000:14.000000/2.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/14.000000/14.000000/16.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/14.000000/14.000000/16.000000,box=0.000000/2.000000/0.000000:2.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/0.000000:16.000000/14.000000/2.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/2.000000/14.000000:2.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/2.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/14.000000/2.000000/16.000000/14.000000,box=14.000000/2.000000/14.000000:16.000000/14.000000/16.000000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/14.000000/2.000000/16.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/2.000000/2.000000/14.000000,box=0.000000/14.000000/0.000000:2.000000/16.000000/16.000000:u/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/0.000000/2.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/2.000000/16.000000:n/0/14.000000/0.000000/16.000000/2.000000,box=14.000000/14.000000/0.000000:16.000000/16.000000/16.000000:u/0/14.000000/0.000000/16.000000/16.000000:s/0/14.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/14.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/2.000000/2.000000,box=2.000000/14.000000/0.000000:14.000000/16.000000/2.000000:u/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:w/0/0.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/2.000000/2.000000:d/0/2.000000/14.000000/14.000000/16.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/14.000000/14.000000:14.000000/16.000000/16.000000:u/0/2.000000/14.000000/14.000000/16.000000:s/0/2.000000/0.000000/14.000000/2.000000:d/0/2.000000/0.000000/14.000000/2.000000:n/0/2.000000/0.000000/14.000000/2.000000,box=0.500000/0.500000/0.500000:15.500000/15.500000/15.500000:u/0/0.500000/0.500000/15.500000/15.500000:s/0/0.500000/0.500000/15.500000/15.500000:w/0/0.500000/0.500000/15.500000/15.500000:e/0/0.500000/0.500000/15.500000/15.500000:d/0/0.500000/0.500000/15.500000/15.500000:n/0/0.500000/0.500000/15.500000/15.500000,box=2.000000/2.000000/0.400000:14.000000/14.000000/0.400000:n/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/2.000000/15.600000:14.000000/14.000000/15.600000:s/1/0.000000/0.000000/16.000000/16.000000,box=15.600000/2.000000/2.000000:15.600000/14.000000/14.000000:e/1/0.000000/0.000000/16.000000/16.000000,box=0.400000/2.000000/2.000000:0.400000/14.000000/14.000000:w/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/15.600000/2.000000:14.000000/15.600000/14.000000:u/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/0.400000/2.000000:14.000000/0.400000/14.000000:d/1/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%redstone_randomizer,state=facing:south/enabled:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/0:w/0:e/0:d/0:n/1:R/0/180/0
|
|
||||||
modellist:id=%redstone_randomizer,state=facing:west/enabled:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/0:w/0:e/0:d/0:n/1:R/0/270/0
|
|
||||||
modellist:id=%redstone_randomizer,state=facing:east/enabled:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/0:w/0:e/0:d/0:n/1:R/0/90/0
|
|
||||||
modellist:id=%redstone_randomizer,state=facing:south/enabled:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/0:w/0:e/0:d/0:n/1:R/0/180/0
|
|
||||||
modellist:id=%redstone_randomizer,state=facing:west/enabled:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/0:w/0:e/0:d/0:n/1:R/0/270/0
|
|
||||||
modellist:id=%redstone_randomizer,state=facing:east/enabled:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/0:w/0:e/0:d/0:n/1:R/0/90/0
|
|
||||||
modellist:id=%shielded_redstone,state=facing:east,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/0:w/0:e/0:d/0:n/1:R/0/90/0
|
|
||||||
modellist:id=%shielded_redstone,state=facing:south,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/0:w/0:e/0:d/0:n/1:R/0/180/0
|
|
||||||
modellist:id=%shielded_redstone,state=facing:west,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/0:w/0:e/0:d/0:n/1:R/0/270/0
|
|
||||||
modellist:id=%shielded_redstone,state=facing:up,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/0:w/0:e/0:d/0:n/1:R/270/0/0
|
|
||||||
modellist:id=%shielded_redstone,state=facing:down,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/0:w/0:e/0:d/0:n/1:R/90/0/0
|
|
@ -1,270 +0,0 @@
|
|||||||
modname:darkutils
|
|
||||||
|
|
||||||
texture:id=dark_stone,filename=assets/darkutils/textures/block/dark_stone.png,xcount=1,ycount=1
|
|
||||||
texture:id=vector_plate,filename=assets/darkutils/textures/block/vector_plate.png,xcount=1,ycount=1
|
|
||||||
texture:id=vector_plate_fast,filename=assets/darkutils/textures/block/vector_plate_fast.png,xcount=1,ycount=1
|
|
||||||
texture:id=vector_plate_extreme,filename=assets/darkutils/textures/block/vector_plate_extreme.png,xcount=1,ycount=1
|
|
||||||
texture:id=vector_plate_ultra,filename=assets/darkutils/textures/block/vector_plate_ultra.png,xcount=1,ycount=1
|
|
||||||
texture:id=damage_plate,filename=assets/darkutils/textures/block/damage_plate.png,xcount=1,ycount=1
|
|
||||||
texture:id=damage_plate_maim,filename=assets/darkutils/textures/block/damage_plate_maim.png,xcount=1,ycount=1
|
|
||||||
texture:id=damage_plate_player,filename=assets/darkutils/textures/block/damage_plate_player.png,xcount=1,ycount=1
|
|
||||||
texture:id=flame_plate,filename=assets/darkutils/textures/block/flame_plate.png,xcount=1,ycount=1
|
|
||||||
texture:id=slowness_plate,filename=assets/darkutils/textures/block/slowness_plate.png,xcount=1,ycount=1
|
|
||||||
texture:id=fatigue_plate,filename=assets/darkutils/textures/block/fatigue_plate.png,xcount=1,ycount=1
|
|
||||||
texture:id=darkness_plate,filename=assets/darkutils/textures/block/darkness_plate.png,xcount=1,ycount=1
|
|
||||||
texture:id=hunger_plate,filename=assets/darkutils/textures/block/hunger_plate.png,xcount=1,ycount=1
|
|
||||||
texture:id=weakness_plate,filename=assets/darkutils/textures/block/weakness_plate.png,xcount=1,ycount=1
|
|
||||||
texture:id=poison_plate,filename=assets/darkutils/textures/block/poison_plate.png,xcount=1,ycount=1
|
|
||||||
texture:id=wither_plate,filename=assets/darkutils/textures/block/wither_plate.png,xcount=1,ycount=1
|
|
||||||
texture:id=alert_plate,filename=assets/darkutils/textures/block/alert_plate.png,xcount=1,ycount=1
|
|
||||||
texture:id=levitation_plate,filename=assets/darkutils/textures/block/levitation_plate.png,xcount=1,ycount=1
|
|
||||||
texture:id=misfortune_plate,filename=assets/darkutils/textures/block/misfortune_plate.png,xcount=1,ycount=1
|
|
||||||
texture:id=slowfall_plate,filename=assets/darkutils/textures/block/slowfall_plate.png,xcount=1,ycount=1
|
|
||||||
texture:id=omen_plate,filename=assets/darkutils/textures/block/omen_plate.png,xcount=1,ycount=1
|
|
||||||
texture:id=frost_plate,filename=assets/darkutils/textures/block/frost_plate.png,xcount=1,ycount=1
|
|
||||||
texture:id=filter_inverted_closed,filename=assets/darkutils/textures/block/filter_inverted_closed.png,xcount=1,ycount=1
|
|
||||||
texture:id=filter_inverted_open,filename=assets/darkutils/textures/block/filter_inverted_open.png,xcount=1,ycount=1
|
|
||||||
texture:id=head_player,filename=assets/darkutils/textures/block/head_player.png,xcount=1,ycount=1
|
|
||||||
texture:id=filter_closed,filename=assets/darkutils/textures/block/filter_closed.png,xcount=1,ycount=1
|
|
||||||
texture:id=filter_open,filename=assets/darkutils/textures/block/filter_open.png,xcount=1,ycount=1
|
|
||||||
texture:id=bone,filename=assets/minecraft/textures/item/bone.png,xcount=1,ycount=1
|
|
||||||
texture:id=spider_eye,filename=assets/minecraft/textures/item/spider_eye.png,xcount=1,ycount=1
|
|
||||||
texture:id=head_illager,filename=assets/darkutils/textures/block/head_illager.png,xcount=1,ycount=1
|
|
||||||
texture:id=bell,filename=assets/minecraft/textures/item/bell.png,xcount=1,ycount=1
|
|
||||||
texture:id=rotten_flesh,filename=assets/minecraft/textures/item/rotten_flesh.png,xcount=1,ycount=1
|
|
||||||
texture:id=wheat,filename=assets/minecraft/textures/item/wheat.png,xcount=1,ycount=1
|
|
||||||
texture:id=egg,filename=assets/minecraft/textures/item/egg.png,xcount=1,ycount=1
|
|
||||||
texture:id=milk_bucket,filename=assets/minecraft/textures/item/milk_bucket.png,xcount=1,ycount=1
|
|
||||||
texture:id=slime_ball,filename=assets/minecraft/textures/item/slime_ball.png,xcount=1,ycount=1
|
|
||||||
texture:id=emerald,filename=assets/minecraft/textures/item/emerald.png,xcount=1,ycount=1
|
|
||||||
texture:id=blaze_powder,filename=assets/minecraft/textures/item/blaze_powder.png,xcount=1,ycount=1
|
|
||||||
texture:id=head_golem,filename=assets/darkutils/textures/block/head_golem.png,xcount=1,ycount=1
|
|
||||||
texture:id=water_bucket,filename=assets/minecraft/textures/item/water_bucket.png,xcount=1,ycount=1
|
|
||||||
texture:id=name_tag,filename=assets/minecraft/textures/item/name_tag.png,xcount=1,ycount=1
|
|
||||||
texture:id=snowball,filename=assets/minecraft/textures/item/snowball.png,xcount=1,ycount=1
|
|
||||||
texture:id=golden_chestplate,filename=assets/minecraft/textures/item/golden_chestplate.png,xcount=1,ycount=1
|
|
||||||
texture:id=minecart,filename=assets/minecraft/textures/item/minecart.png,xcount=1,ycount=1
|
|
||||||
texture:id=bundled_dark_stone,filename=assets/darkutils/textures/block/bundled_dark_stone.png,xcount=1,ycount=1
|
|
||||||
texture:id=redstone_randomizer_enabled,filename=assets/darkutils/textures/block/redstone_randomizer_enabled.png,xcount=1,ycount=1
|
|
||||||
texture:id=redstone_randomizer_disabled,filename=assets/darkutils/textures/block/redstone_randomizer_disabled.png,xcount=1,ycount=1
|
|
||||||
texture:id=shielded_redstone_face,filename=assets/darkutils/textures/block/shielded_redstone_face.png,xcount=1,ycount=1
|
|
||||||
block:id=%blank_plate,state=hidden:true,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%blank_plate,state=hidden:false,patch0=0:dark_stone,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%vector_plate,state=facing:north/hidden:true/powered:true,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%vector_plate,state=facing:north/hidden:true/powered:false,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%vector_plate,state=facing:north/hidden:false/powered:true,patch0=0:dark_stone,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%vector_plate,state=facing:north/hidden:false/powered:false,patch0=0:vector_plate,patch1=0:dark_stone,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%vector_plate,state=facing:south/hidden:true/powered:true,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%vector_plate,state=facing:south/hidden:true/powered:false,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%vector_plate,state=facing:south/hidden:false/powered:true,patch0=0:dark_stone,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%vector_plate,state=facing:south/hidden:false/powered:false,patch0=0:vector_plate,patch1=0:dark_stone,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%vector_plate,state=facing:west/hidden:true/powered:true,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%vector_plate,state=facing:west/hidden:true/powered:false,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%vector_plate,state=facing:west/hidden:false/powered:true,patch0=0:dark_stone,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%vector_plate,state=facing:west/hidden:false/powered:false,patch0=0:vector_plate,patch1=0:dark_stone,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%vector_plate,state=facing:east/hidden:true/powered:true,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%vector_plate,state=facing:east/hidden:true/powered:false,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%vector_plate,state=facing:east/hidden:false/powered:true,patch0=0:dark_stone,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%vector_plate,state=facing:east/hidden:false/powered:false,patch0=0:vector_plate,patch1=0:dark_stone,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%vector_plate_fast,state=facing:north/hidden:true/powered:true,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%vector_plate_fast,state=facing:north/hidden:true/powered:false,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%vector_plate_fast,state=facing:north/hidden:false/powered:true,patch0=0:dark_stone,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%vector_plate_fast,state=facing:north/hidden:false/powered:false,patch0=0:vector_plate_fast,patch1=0:dark_stone,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%vector_plate_fast,state=facing:south/hidden:true/powered:true,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%vector_plate_fast,state=facing:south/hidden:true/powered:false,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%vector_plate_fast,state=facing:south/hidden:false/powered:true,patch0=0:dark_stone,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%vector_plate_fast,state=facing:south/hidden:false/powered:false,patch0=0:vector_plate_fast,patch1=0:dark_stone,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%vector_plate_fast,state=facing:west/hidden:true/powered:true,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%vector_plate_fast,state=facing:west/hidden:true/powered:false,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%vector_plate_fast,state=facing:west/hidden:false/powered:true,patch0=0:dark_stone,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%vector_plate_fast,state=facing:west/hidden:false/powered:false,patch0=0:vector_plate_fast,patch1=0:dark_stone,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%vector_plate_fast,state=facing:east/hidden:true/powered:true,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%vector_plate_fast,state=facing:east/hidden:true/powered:false,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%vector_plate_fast,state=facing:east/hidden:false/powered:true,patch0=0:dark_stone,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%vector_plate_fast,state=facing:east/hidden:false/powered:false,patch0=0:vector_plate_fast,patch1=0:dark_stone,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%vector_plate_extreme,state=facing:north/hidden:true/powered:true,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%vector_plate_extreme,state=facing:north/hidden:true/powered:false,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%vector_plate_extreme,state=facing:north/hidden:false/powered:true,patch0=0:dark_stone,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%vector_plate_extreme,state=facing:north/hidden:false/powered:false,patch0=0:vector_plate_extreme,patch1=0:dark_stone,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%vector_plate_extreme,state=facing:south/hidden:true/powered:true,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%vector_plate_extreme,state=facing:south/hidden:true/powered:false,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%vector_plate_extreme,state=facing:south/hidden:false/powered:true,patch0=0:dark_stone,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%vector_plate_extreme,state=facing:south/hidden:false/powered:false,patch0=0:vector_plate_extreme,patch1=0:dark_stone,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%vector_plate_extreme,state=facing:west/hidden:true/powered:true,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%vector_plate_extreme,state=facing:west/hidden:true/powered:false,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%vector_plate_extreme,state=facing:west/hidden:false/powered:true,patch0=0:dark_stone,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%vector_plate_extreme,state=facing:west/hidden:false/powered:false,patch0=0:vector_plate_extreme,patch1=0:dark_stone,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%vector_plate_extreme,state=facing:east/hidden:true/powered:true,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%vector_plate_extreme,state=facing:east/hidden:true/powered:false,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%vector_plate_extreme,state=facing:east/hidden:false/powered:true,patch0=0:dark_stone,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%vector_plate_extreme,state=facing:east/hidden:false/powered:false,patch0=0:vector_plate_extreme,patch1=0:dark_stone,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%vector_plate_ultra,state=facing:north/hidden:true/powered:true,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%vector_plate_ultra,state=facing:north/hidden:true/powered:false,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%vector_plate_ultra,state=facing:north/hidden:false/powered:true,patch0=0:dark_stone,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%vector_plate_ultra,state=facing:north/hidden:false/powered:false,patch0=0:vector_plate_ultra,patch1=0:dark_stone,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%vector_plate_ultra,state=facing:south/hidden:true/powered:true,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%vector_plate_ultra,state=facing:south/hidden:true/powered:false,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%vector_plate_ultra,state=facing:south/hidden:false/powered:true,patch0=0:dark_stone,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%vector_plate_ultra,state=facing:south/hidden:false/powered:false,patch0=0:vector_plate_ultra,patch1=0:dark_stone,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%vector_plate_ultra,state=facing:west/hidden:true/powered:true,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%vector_plate_ultra,state=facing:west/hidden:true/powered:false,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%vector_plate_ultra,state=facing:west/hidden:false/powered:true,patch0=0:dark_stone,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%vector_plate_ultra,state=facing:west/hidden:false/powered:false,patch0=0:vector_plate_ultra,patch1=0:dark_stone,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%vector_plate_ultra,state=facing:east/hidden:true/powered:true,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%vector_plate_ultra,state=facing:east/hidden:true/powered:false,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%vector_plate_ultra,state=facing:east/hidden:false/powered:true,patch0=0:dark_stone,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%vector_plate_ultra,state=facing:east/hidden:false/powered:false,patch0=0:vector_plate_ultra,patch1=0:dark_stone,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%damage_plate,state=hidden:true/powered:true,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%damage_plate,state=hidden:true/powered:false,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%damage_plate,state=hidden:false/powered:true,patch0=0:dark_stone,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%damage_plate,state=hidden:false/powered:false,patch0=0:damage_plate,patch1=0:dark_stone,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%damage_plate_maim,state=hidden:true/powered:true,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%damage_plate_maim,state=hidden:true/powered:false,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%damage_plate_maim,state=hidden:false/powered:true,patch0=0:dark_stone,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%damage_plate_maim,state=hidden:false/powered:false,patch0=0:damage_plate_maim,patch1=0:dark_stone,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%damage_plate_player,state=hidden:true/powered:true,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%damage_plate_player,state=hidden:true/powered:false,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%damage_plate_player,state=hidden:false/powered:true,patch0=0:dark_stone,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%damage_plate_player,state=hidden:false/powered:false,patch0=0:damage_plate_player,patch1=0:dark_stone,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flame_plate,state=hidden:true/powered:true,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flame_plate,state=hidden:true/powered:false,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flame_plate,state=hidden:false/powered:true,patch0=0:dark_stone,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%flame_plate,state=hidden:false/powered:false,patch0=0:flame_plate,patch1=0:dark_stone,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%slowness_plate,state=hidden:true/powered:true,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%slowness_plate,state=hidden:true/powered:false,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%slowness_plate,state=hidden:false/powered:true,patch0=0:dark_stone,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%slowness_plate,state=hidden:false/powered:false,patch0=0:slowness_plate,patch1=0:dark_stone,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%fatigue_plate,state=hidden:true/powered:true,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%fatigue_plate,state=hidden:true/powered:false,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%fatigue_plate,state=hidden:false/powered:true,patch0=0:dark_stone,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%fatigue_plate,state=hidden:false/powered:false,patch0=0:fatigue_plate,patch1=0:dark_stone,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%darkness_plate,state=hidden:true/powered:true,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%darkness_plate,state=hidden:true/powered:false,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%darkness_plate,state=hidden:false/powered:true,patch0=0:dark_stone,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%darkness_plate,state=hidden:false/powered:false,patch0=0:darkness_plate,patch1=0:dark_stone,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%hunger_plate,state=hidden:true/powered:true,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%hunger_plate,state=hidden:true/powered:false,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%hunger_plate,state=hidden:false/powered:true,patch0=0:dark_stone,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%hunger_plate,state=hidden:false/powered:false,patch0=0:hunger_plate,patch1=0:dark_stone,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%weakness_plate,state=hidden:true/powered:true,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%weakness_plate,state=hidden:true/powered:false,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%weakness_plate,state=hidden:false/powered:true,patch0=0:dark_stone,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%weakness_plate,state=hidden:false/powered:false,patch0=0:weakness_plate,patch1=0:dark_stone,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%poison_plate,state=hidden:true/powered:true,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%poison_plate,state=hidden:true/powered:false,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%poison_plate,state=hidden:false/powered:true,patch0=0:dark_stone,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%poison_plate,state=hidden:false/powered:false,patch0=0:poison_plate,patch1=0:dark_stone,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%wither_plate,state=hidden:true/powered:true,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%wither_plate,state=hidden:true/powered:false,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%wither_plate,state=hidden:false/powered:true,patch0=0:dark_stone,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%wither_plate,state=hidden:false/powered:false,patch0=0:wither_plate,patch1=0:dark_stone,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%alert_plate,state=hidden:true/powered:true,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%alert_plate,state=hidden:true/powered:false,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%alert_plate,state=hidden:false/powered:true,patch0=0:dark_stone,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%alert_plate,state=hidden:false/powered:false,patch0=0:alert_plate,patch1=0:dark_stone,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%levitation_plate,state=hidden:true/powered:true,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%levitation_plate,state=hidden:true/powered:false,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%levitation_plate,state=hidden:false/powered:true,patch0=0:dark_stone,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%levitation_plate,state=hidden:false/powered:false,patch0=0:levitation_plate,patch1=0:dark_stone,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%misfortune_plate,state=hidden:true/powered:true,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%misfortune_plate,state=hidden:true/powered:false,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%misfortune_plate,state=hidden:false/powered:true,patch0=0:dark_stone,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%misfortune_plate,state=hidden:false/powered:false,patch0=0:misfortune_plate,patch1=0:dark_stone,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%slowfall_plate,state=hidden:true/powered:true,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%slowfall_plate,state=hidden:true/powered:false,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%slowfall_plate,state=hidden:false/powered:true,patch0=0:dark_stone,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%slowfall_plate,state=hidden:false/powered:false,patch0=0:slowfall_plate,patch1=0:dark_stone,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%omen_plate,state=hidden:true/powered:true,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%omen_plate,state=hidden:true/powered:false,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%omen_plate,state=hidden:false/powered:true,patch0=0:dark_stone,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%omen_plate,state=hidden:false/powered:false,patch0=0:omen_plate,patch1=0:dark_stone,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%frost_plate,state=hidden:true/powered:true,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%frost_plate,state=hidden:true/powered:false,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%frost_plate,state=hidden:false/powered:true,patch0=0:dark_stone,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%frost_plate,state=hidden:false/powered:false,patch0=0:frost_plate,patch1=0:dark_stone,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%filter_player,state=inverted:true/powered:true,patch0=0:filter_inverted_closed,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%filter_player,state=inverted:true/powered:false,patch0=0:filter_inverted_open,patch1=0:head_player,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%filter_player,state=inverted:false/powered:true,patch0=0:filter_closed,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%filter_player,state=inverted:false/powered:false,patch0=0:filter_open,patch1=0:head_player,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%filter_undead,state=inverted:true/powered:true,patch0=0:filter_inverted_closed,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%filter_undead,state=inverted:true/powered:false,patch0=0:filter_inverted_open,patch1=0:bone,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%filter_undead,state=inverted:false/powered:true,patch0=0:filter_closed,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%filter_undead,state=inverted:false/powered:false,patch0=0:filter_open,patch1=0:bone,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%filter_arthropod,state=inverted:true/powered:true,patch0=0:filter_inverted_closed,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%filter_arthropod,state=inverted:true/powered:false,patch0=0:filter_inverted_open,patch1=0:spider_eye,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%filter_arthropod,state=inverted:false/powered:true,patch0=0:filter_closed,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%filter_arthropod,state=inverted:false/powered:false,patch0=0:filter_open,patch1=0:spider_eye,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%filter_illager,state=inverted:true/powered:true,patch0=0:filter_inverted_closed,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%filter_illager,state=inverted:true/powered:false,patch0=0:filter_inverted_open,patch1=0:head_illager,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%filter_illager,state=inverted:false/powered:true,patch0=0:filter_closed,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%filter_illager,state=inverted:false/powered:false,patch0=0:filter_open,patch1=0:head_illager,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%filter_raider,state=inverted:true/powered:true,patch0=0:filter_inverted_closed,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%filter_raider,state=inverted:true/powered:false,patch0=0:filter_inverted_open,patch1=0:bell,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%filter_raider,state=inverted:false/powered:true,patch0=0:filter_closed,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%filter_raider,state=inverted:false/powered:false,patch0=0:filter_open,patch1=0:bell,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%filter_hostile,state=inverted:true/powered:true,patch0=0:filter_inverted_closed,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%filter_hostile,state=inverted:true/powered:false,patch0=0:filter_inverted_open,patch1=0:rotten_flesh,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%filter_hostile,state=inverted:false/powered:true,patch0=0:filter_closed,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%filter_hostile,state=inverted:false/powered:false,patch0=0:filter_open,patch1=0:rotten_flesh,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%filter_animal,state=inverted:true/powered:true,patch0=0:filter_inverted_closed,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%filter_animal,state=inverted:true/powered:false,patch0=0:filter_inverted_open,patch1=0:wheat,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%filter_animal,state=inverted:false/powered:true,patch0=0:filter_closed,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%filter_animal,state=inverted:false/powered:false,patch0=0:filter_open,patch1=0:wheat,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%filter_child,state=inverted:true/powered:true,patch0=0:filter_inverted_closed,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%filter_child,state=inverted:true/powered:false,patch0=0:filter_inverted_open,patch1=0:egg,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%filter_child,state=inverted:false/powered:true,patch0=0:filter_closed,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%filter_child,state=inverted:false/powered:false,patch0=0:filter_open,patch1=0:egg,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%filter_pet,state=inverted:true/powered:true,patch0=0:filter_inverted_closed,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%filter_pet,state=inverted:true/powered:false,patch0=0:filter_inverted_open,patch1=0:milk_bucket,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%filter_pet,state=inverted:false/powered:true,patch0=0:filter_closed,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%filter_pet,state=inverted:false/powered:false,patch0=0:filter_open,patch1=0:milk_bucket,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%filter_slime,state=inverted:true/powered:true,patch0=0:filter_inverted_closed,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%filter_slime,state=inverted:true/powered:false,patch0=0:filter_inverted_open,patch1=0:slime_ball,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%filter_slime,state=inverted:false/powered:true,patch0=0:filter_closed,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%filter_slime,state=inverted:false/powered:false,patch0=0:filter_open,patch1=0:slime_ball,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%filter_villager,state=inverted:true/powered:true,patch0=0:filter_inverted_closed,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%filter_villager,state=inverted:true/powered:false,patch0=0:filter_inverted_open,patch1=0:emerald,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%filter_villager,state=inverted:false/powered:true,patch0=0:filter_closed,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%filter_villager,state=inverted:false/powered:false,patch0=0:filter_open,patch1=0:emerald,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%filter_fire_immune,state=inverted:true/powered:true,patch0=0:filter_inverted_closed,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%filter_fire_immune,state=inverted:true/powered:false,patch0=0:filter_inverted_open,patch1=0:blaze_powder,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%filter_fire_immune,state=inverted:false/powered:true,patch0=0:filter_closed,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%filter_fire_immune,state=inverted:false/powered:false,patch0=0:filter_open,patch1=0:blaze_powder,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%filter_golem,state=inverted:true/powered:true,patch0=0:filter_inverted_closed,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%filter_golem,state=inverted:true/powered:false,patch0=0:filter_inverted_open,patch1=0:head_golem,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%filter_golem,state=inverted:false/powered:true,patch0=0:filter_closed,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%filter_golem,state=inverted:false/powered:false,patch0=0:filter_open,patch1=0:head_golem,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%filter_water,state=inverted:true/powered:true,patch0=0:filter_inverted_closed,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%filter_water,state=inverted:true/powered:false,patch0=0:filter_inverted_open,patch1=0:water_bucket,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%filter_water,state=inverted:false/powered:true,patch0=0:filter_closed,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%filter_water,state=inverted:false/powered:false,patch0=0:filter_open,patch1=0:water_bucket,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%filter_named,state=inverted:true/powered:true,patch0=0:filter_inverted_closed,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%filter_named,state=inverted:true/powered:false,patch0=0:filter_inverted_open,patch1=0:name_tag,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%filter_named,state=inverted:false/powered:true,patch0=0:filter_closed,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%filter_named,state=inverted:false/powered:false,patch0=0:filter_open,patch1=0:name_tag,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%filter_freeze_immune,state=inverted:true/powered:true,patch0=0:filter_inverted_closed,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%filter_freeze_immune,state=inverted:true/powered:false,patch0=0:filter_inverted_open,patch1=0:snowball,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%filter_freeze_immune,state=inverted:false/powered:true,patch0=0:filter_closed,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%filter_freeze_immune,state=inverted:false/powered:false,patch0=0:filter_open,patch1=0:snowball,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%filter_equipment,state=inverted:true/powered:true,patch0=0:filter_inverted_closed,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%filter_equipment,state=inverted:true/powered:false,patch0=0:filter_inverted_open,patch1=0:golden_chestplate,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%filter_equipment,state=inverted:false/powered:true,patch0=0:filter_closed,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%filter_equipment,state=inverted:false/powered:false,patch0=0:filter_open,patch1=0:golden_chestplate,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%filter_passenger,state=inverted:true/powered:true,patch0=0:filter_inverted_closed,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%filter_passenger,state=inverted:true/powered:false,patch0=0:filter_inverted_open,patch1=0:minecart,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%filter_passenger,state=inverted:false/powered:true,patch0=0:filter_closed,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%filter_passenger,state=inverted:false/powered:false,patch0=0:filter_open,patch1=0:minecart,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%redstone_randomizer,state=facing:north/enabled:true,patch0=0:bundled_dark_stone,patch1=0:bundled_dark_stone,patch2=0:redstone_randomizer_enabled,patch3=0:bundled_dark_stone,patch4=0:bundled_dark_stone,patch5=0:bundled_dark_stone,stdrot=true
|
|
||||||
block:id=%redstone_randomizer,state=facing:south/enabled:true,patch0=0:bundled_dark_stone,patch1=0:redstone_randomizer_enabled,stdrot=true
|
|
||||||
block:id=%redstone_randomizer,state=facing:west/enabled:true,patch0=0:bundled_dark_stone,patch1=0:redstone_randomizer_enabled,stdrot=true
|
|
||||||
block:id=%redstone_randomizer,state=facing:east/enabled:true,patch0=0:bundled_dark_stone,patch1=0:redstone_randomizer_enabled,stdrot=true
|
|
||||||
block:id=%redstone_randomizer,state=facing:north/enabled:false,patch0=0:bundled_dark_stone,patch1=0:bundled_dark_stone,patch2=0:redstone_randomizer_disabled,patch3=0:bundled_dark_stone,patch4=0:bundled_dark_stone,patch5=0:bundled_dark_stone,stdrot=true
|
|
||||||
block:id=%redstone_randomizer,state=facing:south/enabled:false,patch0=0:bundled_dark_stone,patch1=0:redstone_randomizer_disabled,stdrot=true
|
|
||||||
block:id=%redstone_randomizer,state=facing:west/enabled:false,patch0=0:bundled_dark_stone,patch1=0:redstone_randomizer_disabled,stdrot=true
|
|
||||||
block:id=%redstone_randomizer,state=facing:east/enabled:false,patch0=0:bundled_dark_stone,patch1=0:redstone_randomizer_disabled,stdrot=true
|
|
||||||
block:id=%shielded_redstone,state=facing:north,patch0=0:bundled_dark_stone,patch1=0:bundled_dark_stone,patch2=0:shielded_redstone_face,patch3=0:bundled_dark_stone,patch4=0:bundled_dark_stone,patch5=0:bundled_dark_stone,stdrot=true
|
|
||||||
block:id=%shielded_redstone,state=facing:east,patch0=0:bundled_dark_stone,patch1=0:shielded_redstone_face,stdrot=true
|
|
||||||
block:id=%shielded_redstone,state=facing:south,patch0=0:bundled_dark_stone,patch1=0:shielded_redstone_face,stdrot=true
|
|
||||||
block:id=%shielded_redstone,state=facing:west,patch0=0:bundled_dark_stone,patch1=0:shielded_redstone_face,stdrot=true
|
|
||||||
block:id=%shielded_redstone,state=facing:up,patch0=0:bundled_dark_stone,patch1=0:shielded_redstone_face,stdrot=true
|
|
||||||
block:id=%shielded_redstone,state=facing:down,patch0=0:bundled_dark_stone,patch1=0:shielded_redstone_face,stdrot=true
|
|
@ -1,878 +0,0 @@
|
|||||||
modname:decorative_blocks
|
|
||||||
|
|
||||||
modellist:id=%stone_pillar,box=2.000000/0.000000/2.000000:14.000000/16.000000/14.000000:u/0/2.000000/2.000000/14.000000/14.000000:s/1/2.000000/0.000000/14.000000/16.000000:w/1/2.000000/0.000000/14.000000/16.000000:e/1/2.000000/0.000000/14.000000/16.000000:d/0/2.000000/2.000000/14.000000/14.000000:n/1/2.000000/0.000000/14.000000/16.000000
|
|
||||||
modellist:id=%chain,state=axis:x,box=4.000000/2.000000/7.000000:12.000000/4.000000/9.000000:u/0/4.000000/14.000000/12.000000/16.000000:s/0/4.000000/12.000000/12.000000/14.000000:w/0/13.000000/12.000000/15.000000/14.000000:e/0/13.000000/12.000000/15.000000/14.000000:d/0/4.000000/0.000000/12.000000/2.000000:n/0/4.000000/12.000000/12.000000/14.000000:R/90/90/0,box=4.000000/12.000000/7.000000:12.000000/14.000000/9.000000:u/0/4.000000/0.000000/12.000000/2.000000:s/0/4.000000/2.000000/12.000000/4.000000:w/0/13.000000/2.000000/15.000000/4.000000:e/0/13.000000/2.000000/15.000000/4.000000:d/0/4.000000/14.000000/12.000000/16.000000:n/0/4.000000/2.000000/12.000000/4.000000:R/90/90/0,box=4.000000/4.000000/7.000000:6.000000/12.000000/9.000000:s/0/4.000000/4.000000/6.000000/12.000000:w/0/13.000000/4.000000/15.000000/12.000000:e/0/1.000000/4.000000/3.000000/12.000000:n/0/10.000000/4.000000/12.000000/12.000000:R/90/90/0,box=10.000000/4.000000/7.000000:12.000000/12.000000/9.000000:s/0/10.000000/4.000000/12.000000/12.000000:w/0/1.000000/4.000000/3.000000/12.000000:e/0/13.000000/4.000000/15.000000/12.000000:n/0/4.000000/4.000000/6.000000/12.000000:R/90/90/0,box=7.000000/10.000000/4.000000:9.000000/12.000000/12.000000:u270/0/4.000000/14.000000/12.000000/16.000000:s/0/13.000000/12.000000/15.000000/14.000000:w/0/4.000000/12.000000/12.000000/14.000000:e/0/4.000000/12.000000/12.000000/14.000000:d90/0/4.000000/0.000000/12.000000/2.000000:n/0/13.000000/12.000000/15.000000/14.000000:R/90/90/0,box=7.000000/4.000000/4.000000:9.000000/6.000000/12.000000:u270/0/4.000000/0.000000/12.000000/2.000000:s/0/13.000000/2.000000/15.000000/4.000000:w/0/4.000000/2.000000/12.000000/4.000000:e/0/4.000000/2.000000/12.000000/4.000000:d90/0/4.000000/14.000000/12.000000/16.000000:n/0/13.000000/2.000000/15.000000/4.000000:R/90/90/0,box=7.000000/12.000000/10.000000:9.000000/16.000000/12.000000:u270/0/4.000000/7.000000/6.000000/9.000000:s/0/13.000000/8.000000/15.000000/12.000000:w/0/10.000000/8.000000/12.000000/12.000000:e/0/4.000000/8.000000/6.000000/12.000000:n/0/1.000000/8.000000/3.000000/12.000000:R/90/90/0,box=7.000000/12.000000/4.000000:9.000000/16.000000/6.000000:u270/0/10.000000/7.000000/12.000000/9.000000:s/0/1.000000/8.000000/3.000000/12.000000:w/0/4.000000/8.000000/6.000000/12.000000:e/0/10.000000/8.000000/12.000000/12.000000:n/0/13.000000/8.000000/15.000000/12.000000:R/90/90/0,box=7.000000/0.000000/10.000000:9.000000/4.000000/12.000000:s/0/13.000000/4.000000/15.000000/8.000000:w/0/10.000000/4.000000/12.000000/8.000000:e/0/4.000000/4.000000/6.000000/8.000000:d90/0/4.000000/7.000000/6.000000/9.000000:n/0/1.000000/4.000000/3.000000/8.000000:R/90/90/0,box=7.000000/0.000000/4.000000:9.000000/4.000000/6.000000:s/0/1.000000/4.000000/3.000000/8.000000:w/0/4.000000/4.000000/6.000000/8.000000:e/0/10.000000/4.000000/12.000000/8.000000:d90/0/10.000000/7.000000/12.000000/9.000000:n/0/13.000000/4.000000/15.000000/8.000000:R/90/90/0
|
|
||||||
modellist:id=%chain,state=axis:y,box=4.000000/2.000000/7.000000:12.000000/4.000000/9.000000:u/0/4.000000/14.000000/12.000000/16.000000:s/0/4.000000/12.000000/12.000000/14.000000:w/0/13.000000/12.000000/15.000000/14.000000:e/0/13.000000/12.000000/15.000000/14.000000:d/0/4.000000/0.000000/12.000000/2.000000:n/0/4.000000/12.000000/12.000000/14.000000,box=4.000000/12.000000/7.000000:12.000000/14.000000/9.000000:u/0/4.000000/0.000000/12.000000/2.000000:s/0/4.000000/2.000000/12.000000/4.000000:w/0/13.000000/2.000000/15.000000/4.000000:e/0/13.000000/2.000000/15.000000/4.000000:d/0/4.000000/14.000000/12.000000/16.000000:n/0/4.000000/2.000000/12.000000/4.000000,box=4.000000/4.000000/7.000000:6.000000/12.000000/9.000000:s/0/4.000000/4.000000/6.000000/12.000000:w/0/13.000000/4.000000/15.000000/12.000000:e/0/1.000000/4.000000/3.000000/12.000000:n/0/10.000000/4.000000/12.000000/12.000000,box=10.000000/4.000000/7.000000:12.000000/12.000000/9.000000:s/0/10.000000/4.000000/12.000000/12.000000:w/0/1.000000/4.000000/3.000000/12.000000:e/0/13.000000/4.000000/15.000000/12.000000:n/0/4.000000/4.000000/6.000000/12.000000,box=7.000000/10.000000/4.000000:9.000000/12.000000/12.000000:u270/0/4.000000/14.000000/12.000000/16.000000:s/0/13.000000/12.000000/15.000000/14.000000:w/0/4.000000/12.000000/12.000000/14.000000:e/0/4.000000/12.000000/12.000000/14.000000:d90/0/4.000000/0.000000/12.000000/2.000000:n/0/13.000000/12.000000/15.000000/14.000000,box=7.000000/4.000000/4.000000:9.000000/6.000000/12.000000:u270/0/4.000000/0.000000/12.000000/2.000000:s/0/13.000000/2.000000/15.000000/4.000000:w/0/4.000000/2.000000/12.000000/4.000000:e/0/4.000000/2.000000/12.000000/4.000000:d90/0/4.000000/14.000000/12.000000/16.000000:n/0/13.000000/2.000000/15.000000/4.000000,box=7.000000/12.000000/10.000000:9.000000/16.000000/12.000000:u270/0/4.000000/7.000000/6.000000/9.000000:s/0/13.000000/8.000000/15.000000/12.000000:w/0/10.000000/8.000000/12.000000/12.000000:e/0/4.000000/8.000000/6.000000/12.000000:n/0/1.000000/8.000000/3.000000/12.000000,box=7.000000/12.000000/4.000000:9.000000/16.000000/6.000000:u270/0/10.000000/7.000000/12.000000/9.000000:s/0/1.000000/8.000000/3.000000/12.000000:w/0/4.000000/8.000000/6.000000/12.000000:e/0/10.000000/8.000000/12.000000/12.000000:n/0/13.000000/8.000000/15.000000/12.000000,box=7.000000/0.000000/10.000000:9.000000/4.000000/12.000000:s/0/13.000000/4.000000/15.000000/8.000000:w/0/10.000000/4.000000/12.000000/8.000000:e/0/4.000000/4.000000/6.000000/8.000000:d90/0/4.000000/7.000000/6.000000/9.000000:n/0/1.000000/4.000000/3.000000/8.000000,box=7.000000/0.000000/4.000000:9.000000/4.000000/6.000000:s/0/1.000000/4.000000/3.000000/8.000000:w/0/4.000000/4.000000/6.000000/8.000000:e/0/10.000000/4.000000/12.000000/8.000000:d90/0/10.000000/7.000000/12.000000/9.000000:n/0/13.000000/4.000000/15.000000/8.000000
|
|
||||||
modellist:id=%chain,state=axis:z,box=4.000000/2.000000/7.000000:12.000000/4.000000/9.000000:u/0/4.000000/14.000000/12.000000/16.000000:s/0/4.000000/12.000000/12.000000/14.000000:w/0/13.000000/12.000000/15.000000/14.000000:e/0/13.000000/12.000000/15.000000/14.000000:d/0/4.000000/0.000000/12.000000/2.000000:n/0/4.000000/12.000000/12.000000/14.000000:R/90/0/0,box=4.000000/12.000000/7.000000:12.000000/14.000000/9.000000:u/0/4.000000/0.000000/12.000000/2.000000:s/0/4.000000/2.000000/12.000000/4.000000:w/0/13.000000/2.000000/15.000000/4.000000:e/0/13.000000/2.000000/15.000000/4.000000:d/0/4.000000/14.000000/12.000000/16.000000:n/0/4.000000/2.000000/12.000000/4.000000:R/90/0/0,box=4.000000/4.000000/7.000000:6.000000/12.000000/9.000000:s/0/4.000000/4.000000/6.000000/12.000000:w/0/13.000000/4.000000/15.000000/12.000000:e/0/1.000000/4.000000/3.000000/12.000000:n/0/10.000000/4.000000/12.000000/12.000000:R/90/0/0,box=10.000000/4.000000/7.000000:12.000000/12.000000/9.000000:s/0/10.000000/4.000000/12.000000/12.000000:w/0/1.000000/4.000000/3.000000/12.000000:e/0/13.000000/4.000000/15.000000/12.000000:n/0/4.000000/4.000000/6.000000/12.000000:R/90/0/0,box=7.000000/10.000000/4.000000:9.000000/12.000000/12.000000:u270/0/4.000000/14.000000/12.000000/16.000000:s/0/13.000000/12.000000/15.000000/14.000000:w/0/4.000000/12.000000/12.000000/14.000000:e/0/4.000000/12.000000/12.000000/14.000000:d90/0/4.000000/0.000000/12.000000/2.000000:n/0/13.000000/12.000000/15.000000/14.000000:R/90/0/0,box=7.000000/4.000000/4.000000:9.000000/6.000000/12.000000:u270/0/4.000000/0.000000/12.000000/2.000000:s/0/13.000000/2.000000/15.000000/4.000000:w/0/4.000000/2.000000/12.000000/4.000000:e/0/4.000000/2.000000/12.000000/4.000000:d90/0/4.000000/14.000000/12.000000/16.000000:n/0/13.000000/2.000000/15.000000/4.000000:R/90/0/0,box=7.000000/12.000000/10.000000:9.000000/16.000000/12.000000:u270/0/4.000000/7.000000/6.000000/9.000000:s/0/13.000000/8.000000/15.000000/12.000000:w/0/10.000000/8.000000/12.000000/12.000000:e/0/4.000000/8.000000/6.000000/12.000000:n/0/1.000000/8.000000/3.000000/12.000000:R/90/0/0,box=7.000000/12.000000/4.000000:9.000000/16.000000/6.000000:u270/0/10.000000/7.000000/12.000000/9.000000:s/0/1.000000/8.000000/3.000000/12.000000:w/0/4.000000/8.000000/6.000000/12.000000:e/0/10.000000/8.000000/12.000000/12.000000:n/0/13.000000/8.000000/15.000000/12.000000:R/90/0/0,box=7.000000/0.000000/10.000000:9.000000/4.000000/12.000000:s/0/13.000000/4.000000/15.000000/8.000000:w/0/10.000000/4.000000/12.000000/8.000000:e/0/4.000000/4.000000/6.000000/8.000000:d90/0/4.000000/7.000000/6.000000/9.000000:n/0/1.000000/4.000000/3.000000/8.000000:R/90/0/0,box=7.000000/0.000000/4.000000:9.000000/4.000000/6.000000:s/0/1.000000/4.000000/3.000000/8.000000:w/0/4.000000/4.000000/6.000000/8.000000:e/0/10.000000/4.000000/12.000000/8.000000:d90/0/10.000000/7.000000/12.000000/9.000000:n/0/13.000000/4.000000/15.000000/8.000000:R/90/0/0
|
|
||||||
modellist:id=%bar_panel,state=facing:north/half:top/open:true,box=7.000000/0.000000/14.000000:9.000000/16.000000/16.000000:u180/0/7.000000/13.000000/9.000000/15.000000:s/1/7.000000/0.000000/9.000000/16.000000:w/0/1.000000/0.000000/3.000000/16.000000:e/0/13.000000/0.000000/15.000000/16.000000:d180/0/7.000000/1.000000/9.000000/3.000000:n90/1/0.000000/9.000000/16.000000/7.000000:R/180/180/0,box=15.000000/0.000000/14.000000:16.000000/16.000000/16.000000:u180/0/0.000000/13.000000/1.000000/15.000000:s/1/15.000000/0.000000/16.000000/16.000000:w/0/1.000000/0.000000/3.000000/16.000000:e/0/13.000000/0.000000/15.000000/16.000000:d180/0/0.000000/1.000000/1.000000/3.000000:n90/1/0.000000/0.000000/16.000000/1.000000:R/180/180/0,box=0.000000/0.000000/14.000000:1.000000/16.000000/16.000000:u180/0/15.000000/13.000000/16.000000/15.000000:s/1/0.000000/0.000000/1.000000/16.000000:w/0/1.000000/0.000000/3.000000/16.000000:e/0/13.000000/0.000000/15.000000/16.000000:d180/0/15.000000/1.000000/16.000000/3.000000:n90/1/0.000000/15.000000/16.000000/16.000000:R/180/180/0,box=0.020000/7.000000/13.000000:16.020000/9.000000/15.000000:u180/0/0.000000/14.000000/16.000000/16.000000:s/1/0.000000/7.000000/16.000000/9.000000:w/0/0.000000/7.000000/2.000000/9.000000:e/0/14.000000/7.000000/16.000000/9.000000:d180/0/0.000000/0.000000/16.000000/2.000000:n90/1/7.000000/0.000000/9.000000/16.000000:R/180/180/0,box=0.020000/0.000000/13.000000:16.020000/1.000000/15.000000:u180/0/0.000000/14.000000/16.000000/16.000000:s/1/0.000000/15.000000/16.000000/16.000000:w/0/0.000000/15.000000/2.000000/16.000000:e/0/14.000000/15.000000/16.000000/16.000000:d180/0/0.000000/0.000000/16.000000/2.000000:n90/1/15.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.020000/15.000000/13.000000:16.020000/16.000000/15.000000:u180/0/0.000000/14.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/1.000000:w/0/0.000000/0.000000/2.000000/1.000000:e/0/14.000000/0.000000/16.000000/1.000000:d180/0/0.000000/0.000000/16.000000/2.000000:n90/1/0.000000/0.000000/1.000000/16.000000:R/180/180/0
|
|
||||||
modellist:id=%bar_panel,state=facing:north/half:top/open:false,box=7.000000/13.000000/0.000000:9.000000/15.000000/16.000000:u90/0/16.000000/9.000000/0.000000/7.000000:s180/1/7.000000/13.000000/9.000000/15.000000:w90/1/1.000000/0.000000/3.000000/16.000000:e270/1/13.000000/0.000000/15.000000/16.000000:d/0/7.000000/0.000000/9.000000/16.000000:n180/1/9.000000/3.000000/7.000000/1.000000,box=15.000000/13.000000/0.000000:16.000000/15.000000/16.000000:u90/0/16.000000/1.000000/0.000000/0.000000:s180/1/0.000000/13.000000/1.000000/15.000000:w90/1/1.000000/0.000000/3.000000/16.000000:e270/1/13.000000/0.000000/15.000000/16.000000:d/0/15.000000/0.000000/16.000000/16.000000:n180/1/1.000000/3.000000/0.000000/1.000000,box=0.000000/13.000000/0.000000:1.000000/15.000000/16.000000:u90/0/16.000000/16.000000/0.000000/15.000000:s180/1/15.000000/13.000000/16.000000/15.000000:w90/1/1.000000/0.000000/3.000000/16.000000:e270/1/13.000000/0.000000/15.000000/16.000000:d/0/0.000000/0.000000/1.000000/16.000000:n180/1/16.000000/3.000000/15.000000/1.000000,box=0.000000/14.000000/7.000000:16.000000/16.000000/9.000000:u90/0/9.000000/16.000000/7.000000/0.000000:s180/1/0.000000/14.000000/16.000000/16.000000:w90/1/0.000000/7.000000/2.000000/9.000000:e270/1/14.000000/7.000000/16.000000/9.000000:d/0/0.000000/7.000000/16.000000/9.000000:n180/1/16.000000/2.000000/0.000000/0.000000,box=0.000000/14.000000/0.000000:16.000000/16.000000/1.000000:u90/0/16.000000/16.000000/15.000000/0.000000:s180/1/0.000000/14.000000/16.000000/16.000000:w90/1/0.000000/15.000000/2.000000/16.000000:e270/1/14.000000/15.000000/16.000000/16.000000:d/0/0.000000/15.000000/16.000000/16.000000:n180/1/16.000000/2.000000/0.000000/0.000000,box=0.000000/14.000000/15.000000:16.000000/16.000000/16.000000:u90/0/1.000000/16.000000/0.000000/0.000000:s180/1/0.000000/14.000000/16.000000/16.000000:w90/1/0.000000/0.000000/2.000000/1.000000:e270/1/14.000000/0.000000/16.000000/1.000000:d/0/0.000000/0.000000/16.000000/1.000000:n180/1/16.000000/2.000000/0.000000/0.000000
|
|
||||||
modellist:id=%bar_panel,state=facing:north/half:bottom/open:true,box=7.000000/0.000000/14.000000:9.000000/16.000000/16.000000:u180/0/7.000000/13.000000/9.000000/15.000000:s/1/7.000000/0.000000/9.000000/16.000000:w/0/1.000000/0.000000/3.000000/16.000000:e/0/13.000000/0.000000/15.000000/16.000000:d180/0/7.000000/1.000000/9.000000/3.000000:n90/1/0.000000/9.000000/16.000000/7.000000,box=15.000000/0.000000/14.000000:16.000000/16.000000/16.000000:u180/0/0.000000/13.000000/1.000000/15.000000:s/1/15.000000/0.000000/16.000000/16.000000:w/0/1.000000/0.000000/3.000000/16.000000:e/0/13.000000/0.000000/15.000000/16.000000:d180/0/0.000000/1.000000/1.000000/3.000000:n90/1/0.000000/0.000000/16.000000/1.000000,box=0.000000/0.000000/14.000000:1.000000/16.000000/16.000000:u180/0/15.000000/13.000000/16.000000/15.000000:s/1/0.000000/0.000000/1.000000/16.000000:w/0/1.000000/0.000000/3.000000/16.000000:e/0/13.000000/0.000000/15.000000/16.000000:d180/0/15.000000/1.000000/16.000000/3.000000:n90/1/0.000000/15.000000/16.000000/16.000000,box=0.020000/7.000000/13.000000:16.020000/9.000000/15.000000:u180/0/0.000000/14.000000/16.000000/16.000000:s/1/0.000000/7.000000/16.000000/9.000000:w/0/0.000000/7.000000/2.000000/9.000000:e/0/14.000000/7.000000/16.000000/9.000000:d180/0/0.000000/0.000000/16.000000/2.000000:n90/1/7.000000/0.000000/9.000000/16.000000,box=0.020000/0.000000/13.000000:16.020000/1.000000/15.000000:u180/0/0.000000/14.000000/16.000000/16.000000:s/1/0.000000/15.000000/16.000000/16.000000:w/0/0.000000/15.000000/2.000000/16.000000:e/0/14.000000/15.000000/16.000000/16.000000:d180/0/0.000000/0.000000/16.000000/2.000000:n90/1/15.000000/0.000000/16.000000/16.000000,box=0.020000/15.000000/13.000000:16.020000/16.000000/15.000000:u180/0/0.000000/14.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/1.000000:w/0/0.000000/0.000000/2.000000/1.000000:e/0/14.000000/0.000000/16.000000/1.000000:d180/0/0.000000/0.000000/16.000000/2.000000:n90/1/0.000000/0.000000/1.000000/16.000000
|
|
||||||
modellist:id=%bar_panel,state=facing:north/half:bottom/open:false,box=7.000000/1.000000/0.000000:9.000000/3.000000/16.000000:u/0/7.000000/0.000000/9.000000/16.000000:s180/1/7.000000/1.000000/9.000000/3.000000:w270/1/1.000000/0.000000/3.000000/16.000000:e90/1/13.000000/0.000000/15.000000/16.000000:d90/0/16.000000/9.000000/0.000000/7.000000:n180/1/9.000000/15.000000/7.000000/13.000000,box=15.000000/1.000000/0.000000:16.000000/3.000000/16.000000:u/0/15.000000/0.000000/16.000000/16.000000:s180/1/0.000000/1.000000/1.000000/3.000000:w270/1/1.000000/0.000000/3.000000/16.000000:e90/1/13.000000/0.000000/15.000000/16.000000:d90/0/16.000000/1.000000/0.000000/0.000000:n180/1/1.000000/15.000000/0.000000/13.000000,box=0.000000/1.000000/0.000000:1.000000/3.000000/16.000000:u/0/0.000000/0.000000/1.000000/16.000000:s180/1/15.000000/1.000000/16.000000/3.000000:w270/1/1.000000/0.000000/3.000000/16.000000:e90/1/13.000000/0.000000/15.000000/16.000000:d90/0/16.000000/16.000000/0.000000/15.000000:n180/1/16.000000/15.000000/15.000000/13.000000,box=0.000000/0.000000/7.000000:16.000000/2.000000/9.000000:u/0/0.000000/7.000000/16.000000/9.000000:s180/1/0.000000/0.000000/16.000000/2.000000:w270/1/0.000000/7.000000/2.000000/9.000000:e90/1/14.000000/7.000000/16.000000/9.000000:d90/0/9.000000/16.000000/7.000000/0.000000:n180/1/16.000000/16.000000/0.000000/14.000000,box=0.000000/0.000000/15.000000:16.000000/2.000000/16.000000:u/0/0.000000/15.000000/16.000000/16.000000:s180/1/0.000000/0.000000/16.000000/2.000000:w270/1/0.000000/15.000000/2.000000/16.000000:e90/1/14.000000/15.000000/16.000000/16.000000:d90/0/16.000000/16.000000/15.000000/0.000000:n180/1/16.000000/16.000000/0.000000/14.000000,box=0.000000/0.000000/0.000000:16.000000/2.000000/1.000000:u/0/0.000000/0.000000/16.000000/1.000000:s180/1/0.000000/0.000000/16.000000/2.000000:w270/1/0.000000/0.000000/2.000000/1.000000:e90/1/14.000000/0.000000/16.000000/1.000000:d90/0/1.000000/16.000000/0.000000/0.000000:n180/1/16.000000/16.000000/0.000000/14.000000
|
|
||||||
modellist:id=%bar_panel,state=facing:south/half:top/open:true,box=7.000000/0.000000/14.000000:9.000000/16.000000/16.000000:u180/0/7.000000/13.000000/9.000000/15.000000:s/1/7.000000/0.000000/9.000000/16.000000:w/0/1.000000/0.000000/3.000000/16.000000:e/0/13.000000/0.000000/15.000000/16.000000:d180/0/7.000000/1.000000/9.000000/3.000000:n90/1/0.000000/9.000000/16.000000/7.000000:R/180/0/0,box=15.000000/0.000000/14.000000:16.000000/16.000000/16.000000:u180/0/0.000000/13.000000/1.000000/15.000000:s/1/15.000000/0.000000/16.000000/16.000000:w/0/1.000000/0.000000/3.000000/16.000000:e/0/13.000000/0.000000/15.000000/16.000000:d180/0/0.000000/1.000000/1.000000/3.000000:n90/1/0.000000/0.000000/16.000000/1.000000:R/180/0/0,box=0.000000/0.000000/14.000000:1.000000/16.000000/16.000000:u180/0/15.000000/13.000000/16.000000/15.000000:s/1/0.000000/0.000000/1.000000/16.000000:w/0/1.000000/0.000000/3.000000/16.000000:e/0/13.000000/0.000000/15.000000/16.000000:d180/0/15.000000/1.000000/16.000000/3.000000:n90/1/0.000000/15.000000/16.000000/16.000000:R/180/0/0,box=0.020000/7.000000/13.000000:16.020000/9.000000/15.000000:u180/0/0.000000/14.000000/16.000000/16.000000:s/1/0.000000/7.000000/16.000000/9.000000:w/0/0.000000/7.000000/2.000000/9.000000:e/0/14.000000/7.000000/16.000000/9.000000:d180/0/0.000000/0.000000/16.000000/2.000000:n90/1/7.000000/0.000000/9.000000/16.000000:R/180/0/0,box=0.020000/0.000000/13.000000:16.020000/1.000000/15.000000:u180/0/0.000000/14.000000/16.000000/16.000000:s/1/0.000000/15.000000/16.000000/16.000000:w/0/0.000000/15.000000/2.000000/16.000000:e/0/14.000000/15.000000/16.000000/16.000000:d180/0/0.000000/0.000000/16.000000/2.000000:n90/1/15.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.020000/15.000000/13.000000:16.020000/16.000000/15.000000:u180/0/0.000000/14.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/1.000000:w/0/0.000000/0.000000/2.000000/1.000000:e/0/14.000000/0.000000/16.000000/1.000000:d180/0/0.000000/0.000000/16.000000/2.000000:n90/1/0.000000/0.000000/1.000000/16.000000:R/180/0/0
|
|
||||||
modellist:id=%bar_panel,state=facing:south/half:top/open:false,box=7.000000/13.000000/0.000000:9.000000/15.000000/16.000000:u90/0/16.000000/9.000000/0.000000/7.000000:s180/1/7.000000/13.000000/9.000000/15.000000:w90/1/1.000000/0.000000/3.000000/16.000000:e270/1/13.000000/0.000000/15.000000/16.000000:d/0/7.000000/0.000000/9.000000/16.000000:n180/1/9.000000/3.000000/7.000000/1.000000:R/0/180/0,box=15.000000/13.000000/0.000000:16.000000/15.000000/16.000000:u90/0/16.000000/1.000000/0.000000/0.000000:s180/1/0.000000/13.000000/1.000000/15.000000:w90/1/1.000000/0.000000/3.000000/16.000000:e270/1/13.000000/0.000000/15.000000/16.000000:d/0/15.000000/0.000000/16.000000/16.000000:n180/1/1.000000/3.000000/0.000000/1.000000:R/0/180/0,box=0.000000/13.000000/0.000000:1.000000/15.000000/16.000000:u90/0/16.000000/16.000000/0.000000/15.000000:s180/1/15.000000/13.000000/16.000000/15.000000:w90/1/1.000000/0.000000/3.000000/16.000000:e270/1/13.000000/0.000000/15.000000/16.000000:d/0/0.000000/0.000000/1.000000/16.000000:n180/1/16.000000/3.000000/15.000000/1.000000:R/0/180/0,box=0.000000/14.000000/7.000000:16.000000/16.000000/9.000000:u90/0/9.000000/16.000000/7.000000/0.000000:s180/1/0.000000/14.000000/16.000000/16.000000:w90/1/0.000000/7.000000/2.000000/9.000000:e270/1/14.000000/7.000000/16.000000/9.000000:d/0/0.000000/7.000000/16.000000/9.000000:n180/1/16.000000/2.000000/0.000000/0.000000:R/0/180/0,box=0.000000/14.000000/0.000000:16.000000/16.000000/1.000000:u90/0/16.000000/16.000000/15.000000/0.000000:s180/1/0.000000/14.000000/16.000000/16.000000:w90/1/0.000000/15.000000/2.000000/16.000000:e270/1/14.000000/15.000000/16.000000/16.000000:d/0/0.000000/15.000000/16.000000/16.000000:n180/1/16.000000/2.000000/0.000000/0.000000:R/0/180/0,box=0.000000/14.000000/15.000000:16.000000/16.000000/16.000000:u90/0/1.000000/16.000000/0.000000/0.000000:s180/1/0.000000/14.000000/16.000000/16.000000:w90/1/0.000000/0.000000/2.000000/1.000000:e270/1/14.000000/0.000000/16.000000/1.000000:d/0/0.000000/0.000000/16.000000/1.000000:n180/1/16.000000/2.000000/0.000000/0.000000:R/0/180/0
|
|
||||||
modellist:id=%bar_panel,state=facing:south/half:bottom/open:true,box=7.000000/0.000000/14.000000:9.000000/16.000000/16.000000:u180/0/7.000000/13.000000/9.000000/15.000000:s/1/7.000000/0.000000/9.000000/16.000000:w/0/1.000000/0.000000/3.000000/16.000000:e/0/13.000000/0.000000/15.000000/16.000000:d180/0/7.000000/1.000000/9.000000/3.000000:n90/1/0.000000/9.000000/16.000000/7.000000:R/0/180/0,box=15.000000/0.000000/14.000000:16.000000/16.000000/16.000000:u180/0/0.000000/13.000000/1.000000/15.000000:s/1/15.000000/0.000000/16.000000/16.000000:w/0/1.000000/0.000000/3.000000/16.000000:e/0/13.000000/0.000000/15.000000/16.000000:d180/0/0.000000/1.000000/1.000000/3.000000:n90/1/0.000000/0.000000/16.000000/1.000000:R/0/180/0,box=0.000000/0.000000/14.000000:1.000000/16.000000/16.000000:u180/0/15.000000/13.000000/16.000000/15.000000:s/1/0.000000/0.000000/1.000000/16.000000:w/0/1.000000/0.000000/3.000000/16.000000:e/0/13.000000/0.000000/15.000000/16.000000:d180/0/15.000000/1.000000/16.000000/3.000000:n90/1/0.000000/15.000000/16.000000/16.000000:R/0/180/0,box=0.020000/7.000000/13.000000:16.020000/9.000000/15.000000:u180/0/0.000000/14.000000/16.000000/16.000000:s/1/0.000000/7.000000/16.000000/9.000000:w/0/0.000000/7.000000/2.000000/9.000000:e/0/14.000000/7.000000/16.000000/9.000000:d180/0/0.000000/0.000000/16.000000/2.000000:n90/1/7.000000/0.000000/9.000000/16.000000:R/0/180/0,box=0.020000/0.000000/13.000000:16.020000/1.000000/15.000000:u180/0/0.000000/14.000000/16.000000/16.000000:s/1/0.000000/15.000000/16.000000/16.000000:w/0/0.000000/15.000000/2.000000/16.000000:e/0/14.000000/15.000000/16.000000/16.000000:d180/0/0.000000/0.000000/16.000000/2.000000:n90/1/15.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.020000/15.000000/13.000000:16.020000/16.000000/15.000000:u180/0/0.000000/14.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/1.000000:w/0/0.000000/0.000000/2.000000/1.000000:e/0/14.000000/0.000000/16.000000/1.000000:d180/0/0.000000/0.000000/16.000000/2.000000:n90/1/0.000000/0.000000/1.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%bar_panel,state=facing:south/half:bottom/open:false,box=7.000000/1.000000/0.000000:9.000000/3.000000/16.000000:u/0/7.000000/0.000000/9.000000/16.000000:s180/1/7.000000/1.000000/9.000000/3.000000:w270/1/1.000000/0.000000/3.000000/16.000000:e90/1/13.000000/0.000000/15.000000/16.000000:d90/0/16.000000/9.000000/0.000000/7.000000:n180/1/9.000000/15.000000/7.000000/13.000000:R/0/180/0,box=15.000000/1.000000/0.000000:16.000000/3.000000/16.000000:u/0/15.000000/0.000000/16.000000/16.000000:s180/1/0.000000/1.000000/1.000000/3.000000:w270/1/1.000000/0.000000/3.000000/16.000000:e90/1/13.000000/0.000000/15.000000/16.000000:d90/0/16.000000/1.000000/0.000000/0.000000:n180/1/1.000000/15.000000/0.000000/13.000000:R/0/180/0,box=0.000000/1.000000/0.000000:1.000000/3.000000/16.000000:u/0/0.000000/0.000000/1.000000/16.000000:s180/1/15.000000/1.000000/16.000000/3.000000:w270/1/1.000000/0.000000/3.000000/16.000000:e90/1/13.000000/0.000000/15.000000/16.000000:d90/0/16.000000/16.000000/0.000000/15.000000:n180/1/16.000000/15.000000/15.000000/13.000000:R/0/180/0,box=0.000000/0.000000/7.000000:16.000000/2.000000/9.000000:u/0/0.000000/7.000000/16.000000/9.000000:s180/1/0.000000/0.000000/16.000000/2.000000:w270/1/0.000000/7.000000/2.000000/9.000000:e90/1/14.000000/7.000000/16.000000/9.000000:d90/0/9.000000/16.000000/7.000000/0.000000:n180/1/16.000000/16.000000/0.000000/14.000000:R/0/180/0,box=0.000000/0.000000/15.000000:16.000000/2.000000/16.000000:u/0/0.000000/15.000000/16.000000/16.000000:s180/1/0.000000/0.000000/16.000000/2.000000:w270/1/0.000000/15.000000/2.000000/16.000000:e90/1/14.000000/15.000000/16.000000/16.000000:d90/0/16.000000/16.000000/15.000000/0.000000:n180/1/16.000000/16.000000/0.000000/14.000000:R/0/180/0,box=0.000000/0.000000/0.000000:16.000000/2.000000/1.000000:u/0/0.000000/0.000000/16.000000/1.000000:s180/1/0.000000/0.000000/16.000000/2.000000:w270/1/0.000000/0.000000/2.000000/1.000000:e90/1/14.000000/0.000000/16.000000/1.000000:d90/0/1.000000/16.000000/0.000000/0.000000:n180/1/16.000000/16.000000/0.000000/14.000000:R/0/180/0
|
|
||||||
modellist:id=%bar_panel,state=facing:west/half:top/open:true,box=7.000000/0.000000/14.000000:9.000000/16.000000/16.000000:u180/0/7.000000/13.000000/9.000000/15.000000:s/1/7.000000/0.000000/9.000000/16.000000:w/0/1.000000/0.000000/3.000000/16.000000:e/0/13.000000/0.000000/15.000000/16.000000:d180/0/7.000000/1.000000/9.000000/3.000000:n90/1/0.000000/9.000000/16.000000/7.000000:R/180/90/0,box=15.000000/0.000000/14.000000:16.000000/16.000000/16.000000:u180/0/0.000000/13.000000/1.000000/15.000000:s/1/15.000000/0.000000/16.000000/16.000000:w/0/1.000000/0.000000/3.000000/16.000000:e/0/13.000000/0.000000/15.000000/16.000000:d180/0/0.000000/1.000000/1.000000/3.000000:n90/1/0.000000/0.000000/16.000000/1.000000:R/180/90/0,box=0.000000/0.000000/14.000000:1.000000/16.000000/16.000000:u180/0/15.000000/13.000000/16.000000/15.000000:s/1/0.000000/0.000000/1.000000/16.000000:w/0/1.000000/0.000000/3.000000/16.000000:e/0/13.000000/0.000000/15.000000/16.000000:d180/0/15.000000/1.000000/16.000000/3.000000:n90/1/0.000000/15.000000/16.000000/16.000000:R/180/90/0,box=0.020000/7.000000/13.000000:16.020000/9.000000/15.000000:u180/0/0.000000/14.000000/16.000000/16.000000:s/1/0.000000/7.000000/16.000000/9.000000:w/0/0.000000/7.000000/2.000000/9.000000:e/0/14.000000/7.000000/16.000000/9.000000:d180/0/0.000000/0.000000/16.000000/2.000000:n90/1/7.000000/0.000000/9.000000/16.000000:R/180/90/0,box=0.020000/0.000000/13.000000:16.020000/1.000000/15.000000:u180/0/0.000000/14.000000/16.000000/16.000000:s/1/0.000000/15.000000/16.000000/16.000000:w/0/0.000000/15.000000/2.000000/16.000000:e/0/14.000000/15.000000/16.000000/16.000000:d180/0/0.000000/0.000000/16.000000/2.000000:n90/1/15.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.020000/15.000000/13.000000:16.020000/16.000000/15.000000:u180/0/0.000000/14.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/1.000000:w/0/0.000000/0.000000/2.000000/1.000000:e/0/14.000000/0.000000/16.000000/1.000000:d180/0/0.000000/0.000000/16.000000/2.000000:n90/1/0.000000/0.000000/1.000000/16.000000:R/180/90/0
|
|
||||||
modellist:id=%bar_panel,state=facing:west/half:top/open:false,box=7.000000/13.000000/0.000000:9.000000/15.000000/16.000000:u90/0/16.000000/9.000000/0.000000/7.000000:s180/1/7.000000/13.000000/9.000000/15.000000:w90/1/1.000000/0.000000/3.000000/16.000000:e270/1/13.000000/0.000000/15.000000/16.000000:d/0/7.000000/0.000000/9.000000/16.000000:n180/1/9.000000/3.000000/7.000000/1.000000:R/0/270/0,box=15.000000/13.000000/0.000000:16.000000/15.000000/16.000000:u90/0/16.000000/1.000000/0.000000/0.000000:s180/1/0.000000/13.000000/1.000000/15.000000:w90/1/1.000000/0.000000/3.000000/16.000000:e270/1/13.000000/0.000000/15.000000/16.000000:d/0/15.000000/0.000000/16.000000/16.000000:n180/1/1.000000/3.000000/0.000000/1.000000:R/0/270/0,box=0.000000/13.000000/0.000000:1.000000/15.000000/16.000000:u90/0/16.000000/16.000000/0.000000/15.000000:s180/1/15.000000/13.000000/16.000000/15.000000:w90/1/1.000000/0.000000/3.000000/16.000000:e270/1/13.000000/0.000000/15.000000/16.000000:d/0/0.000000/0.000000/1.000000/16.000000:n180/1/16.000000/3.000000/15.000000/1.000000:R/0/270/0,box=0.000000/14.000000/7.000000:16.000000/16.000000/9.000000:u90/0/9.000000/16.000000/7.000000/0.000000:s180/1/0.000000/14.000000/16.000000/16.000000:w90/1/0.000000/7.000000/2.000000/9.000000:e270/1/14.000000/7.000000/16.000000/9.000000:d/0/0.000000/7.000000/16.000000/9.000000:n180/1/16.000000/2.000000/0.000000/0.000000:R/0/270/0,box=0.000000/14.000000/0.000000:16.000000/16.000000/1.000000:u90/0/16.000000/16.000000/15.000000/0.000000:s180/1/0.000000/14.000000/16.000000/16.000000:w90/1/0.000000/15.000000/2.000000/16.000000:e270/1/14.000000/15.000000/16.000000/16.000000:d/0/0.000000/15.000000/16.000000/16.000000:n180/1/16.000000/2.000000/0.000000/0.000000:R/0/270/0,box=0.000000/14.000000/15.000000:16.000000/16.000000/16.000000:u90/0/1.000000/16.000000/0.000000/0.000000:s180/1/0.000000/14.000000/16.000000/16.000000:w90/1/0.000000/0.000000/2.000000/1.000000:e270/1/14.000000/0.000000/16.000000/1.000000:d/0/0.000000/0.000000/16.000000/1.000000:n180/1/16.000000/2.000000/0.000000/0.000000:R/0/270/0
|
|
||||||
modellist:id=%bar_panel,state=facing:west/half:bottom/open:true,box=7.000000/0.000000/14.000000:9.000000/16.000000/16.000000:u180/0/7.000000/13.000000/9.000000/15.000000:s/1/7.000000/0.000000/9.000000/16.000000:w/0/1.000000/0.000000/3.000000/16.000000:e/0/13.000000/0.000000/15.000000/16.000000:d180/0/7.000000/1.000000/9.000000/3.000000:n90/1/0.000000/9.000000/16.000000/7.000000:R/0/270/0,box=15.000000/0.000000/14.000000:16.000000/16.000000/16.000000:u180/0/0.000000/13.000000/1.000000/15.000000:s/1/15.000000/0.000000/16.000000/16.000000:w/0/1.000000/0.000000/3.000000/16.000000:e/0/13.000000/0.000000/15.000000/16.000000:d180/0/0.000000/1.000000/1.000000/3.000000:n90/1/0.000000/0.000000/16.000000/1.000000:R/0/270/0,box=0.000000/0.000000/14.000000:1.000000/16.000000/16.000000:u180/0/15.000000/13.000000/16.000000/15.000000:s/1/0.000000/0.000000/1.000000/16.000000:w/0/1.000000/0.000000/3.000000/16.000000:e/0/13.000000/0.000000/15.000000/16.000000:d180/0/15.000000/1.000000/16.000000/3.000000:n90/1/0.000000/15.000000/16.000000/16.000000:R/0/270/0,box=0.020000/7.000000/13.000000:16.020000/9.000000/15.000000:u180/0/0.000000/14.000000/16.000000/16.000000:s/1/0.000000/7.000000/16.000000/9.000000:w/0/0.000000/7.000000/2.000000/9.000000:e/0/14.000000/7.000000/16.000000/9.000000:d180/0/0.000000/0.000000/16.000000/2.000000:n90/1/7.000000/0.000000/9.000000/16.000000:R/0/270/0,box=0.020000/0.000000/13.000000:16.020000/1.000000/15.000000:u180/0/0.000000/14.000000/16.000000/16.000000:s/1/0.000000/15.000000/16.000000/16.000000:w/0/0.000000/15.000000/2.000000/16.000000:e/0/14.000000/15.000000/16.000000/16.000000:d180/0/0.000000/0.000000/16.000000/2.000000:n90/1/15.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.020000/15.000000/13.000000:16.020000/16.000000/15.000000:u180/0/0.000000/14.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/1.000000:w/0/0.000000/0.000000/2.000000/1.000000:e/0/14.000000/0.000000/16.000000/1.000000:d180/0/0.000000/0.000000/16.000000/2.000000:n90/1/0.000000/0.000000/1.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%bar_panel,state=facing:west/half:bottom/open:false,box=7.000000/1.000000/0.000000:9.000000/3.000000/16.000000:u/0/7.000000/0.000000/9.000000/16.000000:s180/1/7.000000/1.000000/9.000000/3.000000:w270/1/1.000000/0.000000/3.000000/16.000000:e90/1/13.000000/0.000000/15.000000/16.000000:d90/0/16.000000/9.000000/0.000000/7.000000:n180/1/9.000000/15.000000/7.000000/13.000000:R/0/270/0,box=15.000000/1.000000/0.000000:16.000000/3.000000/16.000000:u/0/15.000000/0.000000/16.000000/16.000000:s180/1/0.000000/1.000000/1.000000/3.000000:w270/1/1.000000/0.000000/3.000000/16.000000:e90/1/13.000000/0.000000/15.000000/16.000000:d90/0/16.000000/1.000000/0.000000/0.000000:n180/1/1.000000/15.000000/0.000000/13.000000:R/0/270/0,box=0.000000/1.000000/0.000000:1.000000/3.000000/16.000000:u/0/0.000000/0.000000/1.000000/16.000000:s180/1/15.000000/1.000000/16.000000/3.000000:w270/1/1.000000/0.000000/3.000000/16.000000:e90/1/13.000000/0.000000/15.000000/16.000000:d90/0/16.000000/16.000000/0.000000/15.000000:n180/1/16.000000/15.000000/15.000000/13.000000:R/0/270/0,box=0.000000/0.000000/7.000000:16.000000/2.000000/9.000000:u/0/0.000000/7.000000/16.000000/9.000000:s180/1/0.000000/0.000000/16.000000/2.000000:w270/1/0.000000/7.000000/2.000000/9.000000:e90/1/14.000000/7.000000/16.000000/9.000000:d90/0/9.000000/16.000000/7.000000/0.000000:n180/1/16.000000/16.000000/0.000000/14.000000:R/0/270/0,box=0.000000/0.000000/15.000000:16.000000/2.000000/16.000000:u/0/0.000000/15.000000/16.000000/16.000000:s180/1/0.000000/0.000000/16.000000/2.000000:w270/1/0.000000/15.000000/2.000000/16.000000:e90/1/14.000000/15.000000/16.000000/16.000000:d90/0/16.000000/16.000000/15.000000/0.000000:n180/1/16.000000/16.000000/0.000000/14.000000:R/0/270/0,box=0.000000/0.000000/0.000000:16.000000/2.000000/1.000000:u/0/0.000000/0.000000/16.000000/1.000000:s180/1/0.000000/0.000000/16.000000/2.000000:w270/1/0.000000/0.000000/2.000000/1.000000:e90/1/14.000000/0.000000/16.000000/1.000000:d90/0/1.000000/16.000000/0.000000/0.000000:n180/1/16.000000/16.000000/0.000000/14.000000:R/0/270/0
|
|
||||||
modellist:id=%bar_panel,state=facing:east/half:top/open:true,box=7.000000/0.000000/14.000000:9.000000/16.000000/16.000000:u180/0/7.000000/13.000000/9.000000/15.000000:s/1/7.000000/0.000000/9.000000/16.000000:w/0/1.000000/0.000000/3.000000/16.000000:e/0/13.000000/0.000000/15.000000/16.000000:d180/0/7.000000/1.000000/9.000000/3.000000:n90/1/0.000000/9.000000/16.000000/7.000000:R/180/270/0,box=15.000000/0.000000/14.000000:16.000000/16.000000/16.000000:u180/0/0.000000/13.000000/1.000000/15.000000:s/1/15.000000/0.000000/16.000000/16.000000:w/0/1.000000/0.000000/3.000000/16.000000:e/0/13.000000/0.000000/15.000000/16.000000:d180/0/0.000000/1.000000/1.000000/3.000000:n90/1/0.000000/0.000000/16.000000/1.000000:R/180/270/0,box=0.000000/0.000000/14.000000:1.000000/16.000000/16.000000:u180/0/15.000000/13.000000/16.000000/15.000000:s/1/0.000000/0.000000/1.000000/16.000000:w/0/1.000000/0.000000/3.000000/16.000000:e/0/13.000000/0.000000/15.000000/16.000000:d180/0/15.000000/1.000000/16.000000/3.000000:n90/1/0.000000/15.000000/16.000000/16.000000:R/180/270/0,box=0.020000/7.000000/13.000000:16.020000/9.000000/15.000000:u180/0/0.000000/14.000000/16.000000/16.000000:s/1/0.000000/7.000000/16.000000/9.000000:w/0/0.000000/7.000000/2.000000/9.000000:e/0/14.000000/7.000000/16.000000/9.000000:d180/0/0.000000/0.000000/16.000000/2.000000:n90/1/7.000000/0.000000/9.000000/16.000000:R/180/270/0,box=0.020000/0.000000/13.000000:16.020000/1.000000/15.000000:u180/0/0.000000/14.000000/16.000000/16.000000:s/1/0.000000/15.000000/16.000000/16.000000:w/0/0.000000/15.000000/2.000000/16.000000:e/0/14.000000/15.000000/16.000000/16.000000:d180/0/0.000000/0.000000/16.000000/2.000000:n90/1/15.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.020000/15.000000/13.000000:16.020000/16.000000/15.000000:u180/0/0.000000/14.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/1.000000:w/0/0.000000/0.000000/2.000000/1.000000:e/0/14.000000/0.000000/16.000000/1.000000:d180/0/0.000000/0.000000/16.000000/2.000000:n90/1/0.000000/0.000000/1.000000/16.000000:R/180/270/0
|
|
||||||
modellist:id=%bar_panel,state=facing:east/half:top/open:false,box=7.000000/13.000000/0.000000:9.000000/15.000000/16.000000:u90/0/16.000000/9.000000/0.000000/7.000000:s180/1/7.000000/13.000000/9.000000/15.000000:w90/1/1.000000/0.000000/3.000000/16.000000:e270/1/13.000000/0.000000/15.000000/16.000000:d/0/7.000000/0.000000/9.000000/16.000000:n180/1/9.000000/3.000000/7.000000/1.000000:R/0/90/0,box=15.000000/13.000000/0.000000:16.000000/15.000000/16.000000:u90/0/16.000000/1.000000/0.000000/0.000000:s180/1/0.000000/13.000000/1.000000/15.000000:w90/1/1.000000/0.000000/3.000000/16.000000:e270/1/13.000000/0.000000/15.000000/16.000000:d/0/15.000000/0.000000/16.000000/16.000000:n180/1/1.000000/3.000000/0.000000/1.000000:R/0/90/0,box=0.000000/13.000000/0.000000:1.000000/15.000000/16.000000:u90/0/16.000000/16.000000/0.000000/15.000000:s180/1/15.000000/13.000000/16.000000/15.000000:w90/1/1.000000/0.000000/3.000000/16.000000:e270/1/13.000000/0.000000/15.000000/16.000000:d/0/0.000000/0.000000/1.000000/16.000000:n180/1/16.000000/3.000000/15.000000/1.000000:R/0/90/0,box=0.000000/14.000000/7.000000:16.000000/16.000000/9.000000:u90/0/9.000000/16.000000/7.000000/0.000000:s180/1/0.000000/14.000000/16.000000/16.000000:w90/1/0.000000/7.000000/2.000000/9.000000:e270/1/14.000000/7.000000/16.000000/9.000000:d/0/0.000000/7.000000/16.000000/9.000000:n180/1/16.000000/2.000000/0.000000/0.000000:R/0/90/0,box=0.000000/14.000000/0.000000:16.000000/16.000000/1.000000:u90/0/16.000000/16.000000/15.000000/0.000000:s180/1/0.000000/14.000000/16.000000/16.000000:w90/1/0.000000/15.000000/2.000000/16.000000:e270/1/14.000000/15.000000/16.000000/16.000000:d/0/0.000000/15.000000/16.000000/16.000000:n180/1/16.000000/2.000000/0.000000/0.000000:R/0/90/0,box=0.000000/14.000000/15.000000:16.000000/16.000000/16.000000:u90/0/1.000000/16.000000/0.000000/0.000000:s180/1/0.000000/14.000000/16.000000/16.000000:w90/1/0.000000/0.000000/2.000000/1.000000:e270/1/14.000000/0.000000/16.000000/1.000000:d/0/0.000000/0.000000/16.000000/1.000000:n180/1/16.000000/2.000000/0.000000/0.000000:R/0/90/0
|
|
||||||
modellist:id=%bar_panel,state=facing:east/half:bottom/open:true,box=7.000000/0.000000/14.000000:9.000000/16.000000/16.000000:u180/0/7.000000/13.000000/9.000000/15.000000:s/1/7.000000/0.000000/9.000000/16.000000:w/0/1.000000/0.000000/3.000000/16.000000:e/0/13.000000/0.000000/15.000000/16.000000:d180/0/7.000000/1.000000/9.000000/3.000000:n90/1/0.000000/9.000000/16.000000/7.000000:R/0/90/0,box=15.000000/0.000000/14.000000:16.000000/16.000000/16.000000:u180/0/0.000000/13.000000/1.000000/15.000000:s/1/15.000000/0.000000/16.000000/16.000000:w/0/1.000000/0.000000/3.000000/16.000000:e/0/13.000000/0.000000/15.000000/16.000000:d180/0/0.000000/1.000000/1.000000/3.000000:n90/1/0.000000/0.000000/16.000000/1.000000:R/0/90/0,box=0.000000/0.000000/14.000000:1.000000/16.000000/16.000000:u180/0/15.000000/13.000000/16.000000/15.000000:s/1/0.000000/0.000000/1.000000/16.000000:w/0/1.000000/0.000000/3.000000/16.000000:e/0/13.000000/0.000000/15.000000/16.000000:d180/0/15.000000/1.000000/16.000000/3.000000:n90/1/0.000000/15.000000/16.000000/16.000000:R/0/90/0,box=0.020000/7.000000/13.000000:16.020000/9.000000/15.000000:u180/0/0.000000/14.000000/16.000000/16.000000:s/1/0.000000/7.000000/16.000000/9.000000:w/0/0.000000/7.000000/2.000000/9.000000:e/0/14.000000/7.000000/16.000000/9.000000:d180/0/0.000000/0.000000/16.000000/2.000000:n90/1/7.000000/0.000000/9.000000/16.000000:R/0/90/0,box=0.020000/0.000000/13.000000:16.020000/1.000000/15.000000:u180/0/0.000000/14.000000/16.000000/16.000000:s/1/0.000000/15.000000/16.000000/16.000000:w/0/0.000000/15.000000/2.000000/16.000000:e/0/14.000000/15.000000/16.000000/16.000000:d180/0/0.000000/0.000000/16.000000/2.000000:n90/1/15.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.020000/15.000000/13.000000:16.020000/16.000000/15.000000:u180/0/0.000000/14.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/1.000000:w/0/0.000000/0.000000/2.000000/1.000000:e/0/14.000000/0.000000/16.000000/1.000000:d180/0/0.000000/0.000000/16.000000/2.000000:n90/1/0.000000/0.000000/1.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%bar_panel,state=facing:east/half:bottom/open:false,box=7.000000/1.000000/0.000000:9.000000/3.000000/16.000000:u/0/7.000000/0.000000/9.000000/16.000000:s180/1/7.000000/1.000000/9.000000/3.000000:w270/1/1.000000/0.000000/3.000000/16.000000:e90/1/13.000000/0.000000/15.000000/16.000000:d90/0/16.000000/9.000000/0.000000/7.000000:n180/1/9.000000/15.000000/7.000000/13.000000:R/0/90/0,box=15.000000/1.000000/0.000000:16.000000/3.000000/16.000000:u/0/15.000000/0.000000/16.000000/16.000000:s180/1/0.000000/1.000000/1.000000/3.000000:w270/1/1.000000/0.000000/3.000000/16.000000:e90/1/13.000000/0.000000/15.000000/16.000000:d90/0/16.000000/1.000000/0.000000/0.000000:n180/1/1.000000/15.000000/0.000000/13.000000:R/0/90/0,box=0.000000/1.000000/0.000000:1.000000/3.000000/16.000000:u/0/0.000000/0.000000/1.000000/16.000000:s180/1/15.000000/1.000000/16.000000/3.000000:w270/1/1.000000/0.000000/3.000000/16.000000:e90/1/13.000000/0.000000/15.000000/16.000000:d90/0/16.000000/16.000000/0.000000/15.000000:n180/1/16.000000/15.000000/15.000000/13.000000:R/0/90/0,box=0.000000/0.000000/7.000000:16.000000/2.000000/9.000000:u/0/0.000000/7.000000/16.000000/9.000000:s180/1/0.000000/0.000000/16.000000/2.000000:w270/1/0.000000/7.000000/2.000000/9.000000:e90/1/14.000000/7.000000/16.000000/9.000000:d90/0/9.000000/16.000000/7.000000/0.000000:n180/1/16.000000/16.000000/0.000000/14.000000:R/0/90/0,box=0.000000/0.000000/15.000000:16.000000/2.000000/16.000000:u/0/0.000000/15.000000/16.000000/16.000000:s180/1/0.000000/0.000000/16.000000/2.000000:w270/1/0.000000/15.000000/2.000000/16.000000:e90/1/14.000000/15.000000/16.000000/16.000000:d90/0/16.000000/16.000000/15.000000/0.000000:n180/1/16.000000/16.000000/0.000000/14.000000:R/0/90/0,box=0.000000/0.000000/0.000000:16.000000/2.000000/1.000000:u/0/0.000000/0.000000/16.000000/1.000000:s180/1/0.000000/0.000000/16.000000/2.000000:w270/1/0.000000/0.000000/2.000000/1.000000:e90/1/14.000000/0.000000/16.000000/1.000000:d90/0/1.000000/16.000000/0.000000/0.000000:n180/1/16.000000/16.000000/0.000000/14.000000:R/0/90/0
|
|
||||||
modellist:id=%lattice,state=facing:north/half:top/open:true,box=11.000000/0.000000/14.010000:13.000000/16.970600/15.990000/0.000000/0.000000/45.000000/12.000000/0.000000/14.000000:u/0/7.000000/2.000000/9.000000/0.000000:s/0/7.000000/0.000000/9.000000/16.000000:w180/0/6.000000/0.000000/8.000000/16.000000:e/0/8.000000/0.000000/10.000000/16.000000:d/0/7.000000/14.000000/9.000000/16.000000:n/0/9.000000/16.000000/7.000000/0.000000,box=3.000000/0.000000/13.010000:5.000000/16.970600/14.990000/0.000000/0.000000/-45.000000/4.000000/0.000000/13.000000:u/0/9.000000/2.000000/7.000000/0.000000:s/0/9.000000/0.000000/7.000000/16.000000:w180/0/8.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/8.000000/16.000000:d/0/9.000000/14.000000/7.000000/16.000000:n/0/7.000000/16.000000/9.000000/0.000000,box=15.000000/4.000000/14.010000:17.000000/20.970600/15.990000/0.000000/0.000000/45.000000/16.000000/4.000000/14.000000:u/0/7.000000/2.000000/9.000000/0.000000:s/0/7.000000/0.000000/9.000000/16.000000:w180/0/6.000000/0.000000/8.000000/16.000000:e/0/8.000000/0.000000/10.000000/16.000000:d/0/7.000000/14.000000/9.000000/16.000000:n/0/9.000000/16.000000/7.000000/0.000000,box=-1.000000/4.000000/13.010000:1.000000/20.970600/14.990000/0.000000/0.000000/-45.000000/0.000000/4.000000/13.000000:u/0/9.000000/2.000000/7.000000/0.000000:s/0/9.000000/0.000000/7.000000/16.000000:w180/0/8.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/8.000000/16.000000:d/0/9.000000/14.000000/7.000000/16.000000:n/0/7.000000/16.000000/9.000000/0.000000,box=3.000000/0.000000/14.010000:5.000000/5.656900/15.990000/0.000000/0.000000/45.000000/4.000000/0.000000/14.000000:u/0/7.000000/16.000000/9.000000/14.000000:s/0/7.000000/0.000000/9.000000/6.000000:w180/0/6.000000/5.000000/8.000000/11.000000:e/0/8.000000/5.000000/10.000000/11.000000:d/0/7.000000/14.000000/9.000000/16.000000:n/0/9.000000/6.000000/7.000000/0.000000,box=15.000000/12.000000/14.010000:17.000000/17.656900/15.990000/0.000000/0.000000/45.000000/16.000000/12.000000/14.000000:u/0/7.000000/16.000000/9.000000/14.000000:s/0/7.000000/0.000000/9.000000/6.000000:w180/0/6.000000/5.000000/8.000000/11.000000:e/0/8.000000/5.000000/10.000000/11.000000:d/0/7.000000/14.000000/9.000000/16.000000:n/0/9.000000/6.000000/7.000000/0.000000,box=-1.000000/12.000000/13.010000:1.000000/17.656900/14.990000/0.000000/0.000000/-45.000000/0.000000/12.000000/13.000000:u/0/9.000000/16.000000/7.000000/14.000000:s/0/9.000000/0.000000/7.000000/6.000000:w180/0/8.000000/5.000000/10.000000/11.000000:e/0/6.000000/5.000000/8.000000/11.000000:d/0/9.000000/14.000000/7.000000/16.000000:n/0/7.000000/6.000000/9.000000/0.000000,box=11.000000/0.000000/13.010000:13.000000/5.656900/14.990000/0.000000/0.000000/-45.000000/12.000000/0.000000/13.000000:u/0/9.000000/16.000000/7.000000/14.000000:s/0/9.000000/0.000000/7.000000/6.000000:w180/0/8.000000/5.000000/10.000000/11.000000:e/0/6.000000/5.000000/8.000000/11.000000:d/0/9.000000/14.000000/7.000000/16.000000:n/0/7.000000/6.000000/9.000000/0.000000
|
|
||||||
modellist:id=%lattice,state=facing:north/half:top/open:false,box=3.000000/14.010000/0.000000:5.000000/15.990000/16.970600/0.000000/45.000000/0.000000/4.000000/14.000000/0.000000:u/0/7.000000/0.000000/9.000000/16.000000:s/0/7.000000/14.000000/9.000000/16.000000:w90/0/6.000000/0.000000/8.000000/16.000000:e90/0/8.000000/0.000000/10.000000/16.000000:d/0/7.000000/0.000000/9.000000/16.000000:n/0/9.000000/0.000000/7.000000/2.000000,box=8.656899/13.010000/-5.656900:10.656900/14.990000/11.313700/0.000000/-45.000000/0.000000/4.000000/12.000000/0.000000:u/0/9.000000/0.000000/7.000000/16.000000:s/0/9.000000/14.000000/7.000000/16.000000:w90/0/8.000000/0.000000/10.000000/16.000000:e90/0/6.000000/0.000000/8.000000/16.000000:d/0/9.000000/0.000000/7.000000/16.000000:n/0/7.000000/0.000000/9.000000/2.000000,box=-2.656900/14.010000/0.000000:-0.656900/15.990000/16.970600/0.000000/45.000000/0.000000/4.000000/14.000000/0.000000:u/0/7.000000/0.000000/9.000000/16.000000:s/0/7.000000/14.000000/9.000000/16.000000:w90/0/6.000000/0.000000/8.000000/16.000000:e90/0/8.000000/0.000000/10.000000/16.000000:d/0/7.000000/0.000000/9.000000/16.000000:n/0/9.000000/0.000000/7.000000/2.000000,box=14.313700/13.010000/-5.656900:16.313700/14.990000/11.313700/0.000000/-45.000000/0.000000/4.000000/12.000000/0.000000:u/0/9.000000/0.000000/7.000000/16.000000:s/0/9.000000/14.000000/7.000000/16.000000:w90/0/8.000000/0.000000/10.000000/16.000000:e90/0/6.000000/0.000000/8.000000/16.000000:d/0/9.000000/0.000000/7.000000/16.000000:n/0/7.000000/0.000000/9.000000/2.000000,box=-8.313700/14.010000/5.656900:-6.313700/15.990000/11.313800/0.000000/45.000000/0.000000/4.000000/14.000000/0.000000:u/0/7.000000/0.000000/9.000000/6.000000:s/0/7.000000/14.000000/9.000000/16.000000:w90/0/6.000000/5.000000/8.000000/11.000000:e90/0/8.000000/5.000000/10.000000/11.000000:d/0/7.000000/0.000000/9.000000/6.000000:n/0/9.000000/14.000000/7.000000/16.000000,box=8.656899/14.010000/5.656900:10.656900/15.990000/11.313800/0.000000/45.000000/0.000000/4.000000/14.000000/0.000000:u/0/7.000000/0.000000/9.000000/6.000000:s/0/7.000000/14.000000/9.000000/16.000000:w90/0/6.000000/5.000000/8.000000/11.000000:e90/0/8.000000/5.000000/10.000000/11.000000:d/0/7.000000/0.000000/9.000000/6.000000:n/0/9.000000/14.000000/7.000000/16.000000,box=3.000000/13.010000/0.000000:5.000000/14.990000/5.656900/0.000000/-45.000000/0.000000/4.000000/12.000000/0.000000:u/0/9.000000/0.000000/7.000000/6.000000:s/0/9.000000/14.000000/7.000000/16.000000:w90/0/8.000000/5.000000/10.000000/11.000000:e90/0/6.000000/5.000000/8.000000/11.000000:d/0/9.000000/0.000000/7.000000/6.000000:n/0/7.000000/14.000000/9.000000/16.000000,box=19.970600/13.010000/0.000000:21.970600/14.990000/5.656900/0.000000/-45.000000/0.000000/4.000000/12.000000/0.000000:u/0/9.000000/0.000000/7.000000/6.000000:s/0/9.000000/14.000000/7.000000/16.000000:w90/0/8.000000/5.000000/10.000000/11.000000:e90/0/6.000000/5.000000/8.000000/11.000000:d/0/9.000000/0.000000/7.000000/6.000000:n/0/7.000000/14.000000/9.000000/16.000000
|
|
||||||
modellist:id=%lattice,state=facing:north/half:bottom/open:true,box=11.000000/0.000000/14.010000:13.000000/16.970600/15.990000/0.000000/0.000000/45.000000/12.000000/0.000000/14.000000:u/0/7.000000/2.000000/9.000000/0.000000:s/0/7.000000/0.000000/9.000000/16.000000:w180/0/6.000000/0.000000/8.000000/16.000000:e/0/8.000000/0.000000/10.000000/16.000000:d/0/7.000000/14.000000/9.000000/16.000000:n/0/9.000000/16.000000/7.000000/0.000000,box=3.000000/0.000000/13.010000:5.000000/16.970600/14.990000/0.000000/0.000000/-45.000000/4.000000/0.000000/13.000000:u/0/9.000000/2.000000/7.000000/0.000000:s/0/9.000000/0.000000/7.000000/16.000000:w180/0/8.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/8.000000/16.000000:d/0/9.000000/14.000000/7.000000/16.000000:n/0/7.000000/16.000000/9.000000/0.000000,box=15.000000/4.000000/14.010000:17.000000/20.970600/15.990000/0.000000/0.000000/45.000000/16.000000/4.000000/14.000000:u/0/7.000000/2.000000/9.000000/0.000000:s/0/7.000000/0.000000/9.000000/16.000000:w180/0/6.000000/0.000000/8.000000/16.000000:e/0/8.000000/0.000000/10.000000/16.000000:d/0/7.000000/14.000000/9.000000/16.000000:n/0/9.000000/16.000000/7.000000/0.000000,box=-1.000000/4.000000/13.010000:1.000000/20.970600/14.990000/0.000000/0.000000/-45.000000/0.000000/4.000000/13.000000:u/0/9.000000/2.000000/7.000000/0.000000:s/0/9.000000/0.000000/7.000000/16.000000:w180/0/8.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/8.000000/16.000000:d/0/9.000000/14.000000/7.000000/16.000000:n/0/7.000000/16.000000/9.000000/0.000000,box=3.000000/0.000000/14.010000:5.000000/5.656900/15.990000/0.000000/0.000000/45.000000/4.000000/0.000000/14.000000:u/0/7.000000/16.000000/9.000000/14.000000:s/0/7.000000/0.000000/9.000000/6.000000:w180/0/6.000000/5.000000/8.000000/11.000000:e/0/8.000000/5.000000/10.000000/11.000000:d/0/7.000000/14.000000/9.000000/16.000000:n/0/9.000000/6.000000/7.000000/0.000000,box=15.000000/12.000000/14.010000:17.000000/17.656900/15.990000/0.000000/0.000000/45.000000/16.000000/12.000000/14.000000:u/0/7.000000/16.000000/9.000000/14.000000:s/0/7.000000/0.000000/9.000000/6.000000:w180/0/6.000000/5.000000/8.000000/11.000000:e/0/8.000000/5.000000/10.000000/11.000000:d/0/7.000000/14.000000/9.000000/16.000000:n/0/9.000000/6.000000/7.000000/0.000000,box=-1.000000/12.000000/13.010000:1.000000/17.656900/14.990000/0.000000/0.000000/-45.000000/0.000000/12.000000/13.000000:u/0/9.000000/16.000000/7.000000/14.000000:s/0/9.000000/0.000000/7.000000/6.000000:w180/0/8.000000/5.000000/10.000000/11.000000:e/0/6.000000/5.000000/8.000000/11.000000:d/0/9.000000/14.000000/7.000000/16.000000:n/0/7.000000/6.000000/9.000000/0.000000,box=11.000000/0.000000/13.010000:13.000000/5.656900/14.990000/0.000000/0.000000/-45.000000/12.000000/0.000000/13.000000:u/0/9.000000/16.000000/7.000000/14.000000:s/0/9.000000/0.000000/7.000000/6.000000:w180/0/8.000000/5.000000/10.000000/11.000000:e/0/6.000000/5.000000/8.000000/11.000000:d/0/9.000000/14.000000/7.000000/16.000000:n/0/7.000000/6.000000/9.000000/0.000000
|
|
||||||
modellist:id=%lattice,state=facing:north/half:bottom/open:false,box=3.000000/0.010000/0.000000:5.000000/1.990000/16.970600/0.000000/45.000000/0.000000/4.000000/0.000000/0.000000:u/0/7.000000/0.000000/9.000000/16.000000:s/0/7.000000/14.000000/9.000000/16.000000:w90/0/6.000000/0.000000/8.000000/16.000000:e90/0/8.000000/0.000000/10.000000/16.000000:d/0/7.000000/0.000000/9.000000/16.000000:n/0/9.000000/0.000000/7.000000/2.000000,box=11.000000/1.010000/0.000000:13.000000/2.990000/16.970600/0.000000/-45.000000/0.000000/12.000000/1.000000/0.000000:u/0/9.000000/0.000000/7.000000/16.000000:s/0/9.000000/14.000000/7.000000/16.000000:w90/0/8.000000/0.000000/10.000000/16.000000:e90/0/6.000000/0.000000/8.000000/16.000000:d/0/9.000000/0.000000/7.000000/16.000000:n/0/7.000000/0.000000/9.000000/2.000000,box=-1.000000/0.010000/4.000000:1.000000/1.990000/20.970600/0.000000/45.000000/0.000000/0.000000/0.000000/4.000000:u/0/7.000000/0.000000/9.000000/16.000000:s/0/7.000000/14.000000/9.000000/16.000000:w90/0/6.000000/0.000000/8.000000/16.000000:e90/0/8.000000/0.000000/10.000000/16.000000:d/0/7.000000/0.000000/9.000000/16.000000:n/0/9.000000/0.000000/7.000000/2.000000,box=15.000000/1.010000/4.000000:17.000000/2.990000/20.970600/0.000000/-45.000000/0.000000/16.000000/1.000000/4.000000:u/0/9.000000/0.000000/7.000000/16.000000:s/0/9.000000/14.000000/7.000000/16.000000:w90/0/8.000000/0.000000/10.000000/16.000000:e90/0/6.000000/0.000000/8.000000/16.000000:d/0/9.000000/0.000000/7.000000/16.000000:n/0/7.000000/0.000000/9.000000/2.000000,box=-1.000000/0.010000/12.000000:1.000000/1.990000/17.656900/0.000000/45.000000/0.000000/0.000000/0.000000/12.000000:u/0/7.000000/0.000000/9.000000/6.000000:s/0/7.000000/14.000000/9.000000/16.000000:w90/0/6.000000/5.000000/8.000000/11.000000:e90/0/8.000000/5.000000/10.000000/11.000000:d/0/7.000000/0.000000/9.000000/6.000000:n/0/9.000000/14.000000/7.000000/16.000000,box=11.000000/0.010000/0.000000:13.000000/1.990000/5.656900/0.000000/45.000000/0.000000/12.000000/0.000000/0.000000:u/0/7.000000/0.000000/9.000000/6.000000:s/0/7.000000/14.000000/9.000000/16.000000:w90/0/6.000000/5.000000/8.000000/11.000000:e90/0/8.000000/5.000000/10.000000/11.000000:d/0/7.000000/0.000000/9.000000/6.000000:n/0/9.000000/14.000000/7.000000/16.000000,box=3.000000/1.010000/0.000000:5.000000/2.990000/5.656900/0.000000/-45.000000/0.000000/4.000000/1.000000/0.000000:u/0/9.000000/0.000000/7.000000/6.000000:s/0/9.000000/14.000000/7.000000/16.000000:w90/0/8.000000/5.000000/10.000000/11.000000:e90/0/6.000000/5.000000/8.000000/11.000000:d/0/9.000000/0.000000/7.000000/6.000000:n/0/7.000000/14.000000/9.000000/16.000000,box=15.000000/1.010000/12.000000:17.000000/2.990000/17.656900/0.000000/-45.000000/0.000000/16.000000/1.000000/12.000000:u/0/9.000000/0.000000/7.000000/6.000000:s/0/9.000000/14.000000/7.000000/16.000000:w90/0/8.000000/5.000000/10.000000/11.000000:e90/0/6.000000/5.000000/8.000000/11.000000:d/0/9.000000/0.000000/7.000000/6.000000:n/0/7.000000/14.000000/9.000000/16.000000
|
|
||||||
modellist:id=%lattice,state=facing:south/half:top/open:true,box=11.000000/0.000000/14.010000:13.000000/16.970600/15.990000/0.000000/0.000000/45.000000/12.000000/0.000000/14.000000:u/0/7.000000/2.000000/9.000000/0.000000:s/0/7.000000/0.000000/9.000000/16.000000:w180/0/6.000000/0.000000/8.000000/16.000000:e/0/8.000000/0.000000/10.000000/16.000000:d/0/7.000000/14.000000/9.000000/16.000000:n/0/9.000000/16.000000/7.000000/0.000000:R/0/180/0,box=3.000000/0.000000/13.010000:5.000000/16.970600/14.990000/0.000000/0.000000/-45.000000/4.000000/0.000000/13.000000:u/0/9.000000/2.000000/7.000000/0.000000:s/0/9.000000/0.000000/7.000000/16.000000:w180/0/8.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/8.000000/16.000000:d/0/9.000000/14.000000/7.000000/16.000000:n/0/7.000000/16.000000/9.000000/0.000000:R/0/180/0,box=15.000000/4.000000/14.010000:17.000000/20.970600/15.990000/0.000000/0.000000/45.000000/16.000000/4.000000/14.000000:u/0/7.000000/2.000000/9.000000/0.000000:s/0/7.000000/0.000000/9.000000/16.000000:w180/0/6.000000/0.000000/8.000000/16.000000:e/0/8.000000/0.000000/10.000000/16.000000:d/0/7.000000/14.000000/9.000000/16.000000:n/0/9.000000/16.000000/7.000000/0.000000:R/0/180/0,box=-1.000000/4.000000/13.010000:1.000000/20.970600/14.990000/0.000000/0.000000/-45.000000/0.000000/4.000000/13.000000:u/0/9.000000/2.000000/7.000000/0.000000:s/0/9.000000/0.000000/7.000000/16.000000:w180/0/8.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/8.000000/16.000000:d/0/9.000000/14.000000/7.000000/16.000000:n/0/7.000000/16.000000/9.000000/0.000000:R/0/180/0,box=3.000000/0.000000/14.010000:5.000000/5.656900/15.990000/0.000000/0.000000/45.000000/4.000000/0.000000/14.000000:u/0/7.000000/16.000000/9.000000/14.000000:s/0/7.000000/0.000000/9.000000/6.000000:w180/0/6.000000/5.000000/8.000000/11.000000:e/0/8.000000/5.000000/10.000000/11.000000:d/0/7.000000/14.000000/9.000000/16.000000:n/0/9.000000/6.000000/7.000000/0.000000:R/0/180/0,box=15.000000/12.000000/14.010000:17.000000/17.656900/15.990000/0.000000/0.000000/45.000000/16.000000/12.000000/14.000000:u/0/7.000000/16.000000/9.000000/14.000000:s/0/7.000000/0.000000/9.000000/6.000000:w180/0/6.000000/5.000000/8.000000/11.000000:e/0/8.000000/5.000000/10.000000/11.000000:d/0/7.000000/14.000000/9.000000/16.000000:n/0/9.000000/6.000000/7.000000/0.000000:R/0/180/0,box=-1.000000/12.000000/13.010000:1.000000/17.656900/14.990000/0.000000/0.000000/-45.000000/0.000000/12.000000/13.000000:u/0/9.000000/16.000000/7.000000/14.000000:s/0/9.000000/0.000000/7.000000/6.000000:w180/0/8.000000/5.000000/10.000000/11.000000:e/0/6.000000/5.000000/8.000000/11.000000:d/0/9.000000/14.000000/7.000000/16.000000:n/0/7.000000/6.000000/9.000000/0.000000:R/0/180/0,box=11.000000/0.000000/13.010000:13.000000/5.656900/14.990000/0.000000/0.000000/-45.000000/12.000000/0.000000/13.000000:u/0/9.000000/16.000000/7.000000/14.000000:s/0/9.000000/0.000000/7.000000/6.000000:w180/0/8.000000/5.000000/10.000000/11.000000:e/0/6.000000/5.000000/8.000000/11.000000:d/0/9.000000/14.000000/7.000000/16.000000:n/0/7.000000/6.000000/9.000000/0.000000:R/0/180/0
|
|
||||||
modellist:id=%lattice,state=facing:south/half:top/open:false,box=3.000000/14.010000/0.000000:5.000000/15.990000/16.970600/0.000000/45.000000/0.000000/4.000000/14.000000/0.000000:u/0/7.000000/0.000000/9.000000/16.000000:s/0/7.000000/14.000000/9.000000/16.000000:w90/0/6.000000/0.000000/8.000000/16.000000:e90/0/8.000000/0.000000/10.000000/16.000000:d/0/7.000000/0.000000/9.000000/16.000000:n/0/9.000000/0.000000/7.000000/2.000000,box=8.656899/13.010000/-5.656900:10.656900/14.990000/11.313700/0.000000/-45.000000/0.000000/4.000000/12.000000/0.000000:u/0/9.000000/0.000000/7.000000/16.000000:s/0/9.000000/14.000000/7.000000/16.000000:w90/0/8.000000/0.000000/10.000000/16.000000:e90/0/6.000000/0.000000/8.000000/16.000000:d/0/9.000000/0.000000/7.000000/16.000000:n/0/7.000000/0.000000/9.000000/2.000000,box=-2.656900/14.010000/0.000000:-0.656900/15.990000/16.970600/0.000000/45.000000/0.000000/4.000000/14.000000/0.000000:u/0/7.000000/0.000000/9.000000/16.000000:s/0/7.000000/14.000000/9.000000/16.000000:w90/0/6.000000/0.000000/8.000000/16.000000:e90/0/8.000000/0.000000/10.000000/16.000000:d/0/7.000000/0.000000/9.000000/16.000000:n/0/9.000000/0.000000/7.000000/2.000000,box=14.313700/13.010000/-5.656900:16.313700/14.990000/11.313700/0.000000/-45.000000/0.000000/4.000000/12.000000/0.000000:u/0/9.000000/0.000000/7.000000/16.000000:s/0/9.000000/14.000000/7.000000/16.000000:w90/0/8.000000/0.000000/10.000000/16.000000:e90/0/6.000000/0.000000/8.000000/16.000000:d/0/9.000000/0.000000/7.000000/16.000000:n/0/7.000000/0.000000/9.000000/2.000000,box=-8.313700/14.010000/5.656900:-6.313700/15.990000/11.313800/0.000000/45.000000/0.000000/4.000000/14.000000/0.000000:u/0/7.000000/0.000000/9.000000/6.000000:s/0/7.000000/14.000000/9.000000/16.000000:w90/0/6.000000/5.000000/8.000000/11.000000:e90/0/8.000000/5.000000/10.000000/11.000000:d/0/7.000000/0.000000/9.000000/6.000000:n/0/9.000000/14.000000/7.000000/16.000000,box=8.656899/14.010000/5.656900:10.656900/15.990000/11.313800/0.000000/45.000000/0.000000/4.000000/14.000000/0.000000:u/0/7.000000/0.000000/9.000000/6.000000:s/0/7.000000/14.000000/9.000000/16.000000:w90/0/6.000000/5.000000/8.000000/11.000000:e90/0/8.000000/5.000000/10.000000/11.000000:d/0/7.000000/0.000000/9.000000/6.000000:n/0/9.000000/14.000000/7.000000/16.000000,box=3.000000/13.010000/0.000000:5.000000/14.990000/5.656900/0.000000/-45.000000/0.000000/4.000000/12.000000/0.000000:u/0/9.000000/0.000000/7.000000/6.000000:s/0/9.000000/14.000000/7.000000/16.000000:w90/0/8.000000/5.000000/10.000000/11.000000:e90/0/6.000000/5.000000/8.000000/11.000000:d/0/9.000000/0.000000/7.000000/6.000000:n/0/7.000000/14.000000/9.000000/16.000000,box=19.970600/13.010000/0.000000:21.970600/14.990000/5.656900/0.000000/-45.000000/0.000000/4.000000/12.000000/0.000000:u/0/9.000000/0.000000/7.000000/6.000000:s/0/9.000000/14.000000/7.000000/16.000000:w90/0/8.000000/5.000000/10.000000/11.000000:e90/0/6.000000/5.000000/8.000000/11.000000:d/0/9.000000/0.000000/7.000000/6.000000:n/0/7.000000/14.000000/9.000000/16.000000
|
|
||||||
modellist:id=%lattice,state=facing:south/half:bottom/open:true,box=11.000000/0.000000/14.010000:13.000000/16.970600/15.990000/0.000000/0.000000/45.000000/12.000000/0.000000/14.000000:u/0/7.000000/2.000000/9.000000/0.000000:s/0/7.000000/0.000000/9.000000/16.000000:w180/0/6.000000/0.000000/8.000000/16.000000:e/0/8.000000/0.000000/10.000000/16.000000:d/0/7.000000/14.000000/9.000000/16.000000:n/0/9.000000/16.000000/7.000000/0.000000:R/0/180/0,box=3.000000/0.000000/13.010000:5.000000/16.970600/14.990000/0.000000/0.000000/-45.000000/4.000000/0.000000/13.000000:u/0/9.000000/2.000000/7.000000/0.000000:s/0/9.000000/0.000000/7.000000/16.000000:w180/0/8.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/8.000000/16.000000:d/0/9.000000/14.000000/7.000000/16.000000:n/0/7.000000/16.000000/9.000000/0.000000:R/0/180/0,box=15.000000/4.000000/14.010000:17.000000/20.970600/15.990000/0.000000/0.000000/45.000000/16.000000/4.000000/14.000000:u/0/7.000000/2.000000/9.000000/0.000000:s/0/7.000000/0.000000/9.000000/16.000000:w180/0/6.000000/0.000000/8.000000/16.000000:e/0/8.000000/0.000000/10.000000/16.000000:d/0/7.000000/14.000000/9.000000/16.000000:n/0/9.000000/16.000000/7.000000/0.000000:R/0/180/0,box=-1.000000/4.000000/13.010000:1.000000/20.970600/14.990000/0.000000/0.000000/-45.000000/0.000000/4.000000/13.000000:u/0/9.000000/2.000000/7.000000/0.000000:s/0/9.000000/0.000000/7.000000/16.000000:w180/0/8.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/8.000000/16.000000:d/0/9.000000/14.000000/7.000000/16.000000:n/0/7.000000/16.000000/9.000000/0.000000:R/0/180/0,box=3.000000/0.000000/14.010000:5.000000/5.656900/15.990000/0.000000/0.000000/45.000000/4.000000/0.000000/14.000000:u/0/7.000000/16.000000/9.000000/14.000000:s/0/7.000000/0.000000/9.000000/6.000000:w180/0/6.000000/5.000000/8.000000/11.000000:e/0/8.000000/5.000000/10.000000/11.000000:d/0/7.000000/14.000000/9.000000/16.000000:n/0/9.000000/6.000000/7.000000/0.000000:R/0/180/0,box=15.000000/12.000000/14.010000:17.000000/17.656900/15.990000/0.000000/0.000000/45.000000/16.000000/12.000000/14.000000:u/0/7.000000/16.000000/9.000000/14.000000:s/0/7.000000/0.000000/9.000000/6.000000:w180/0/6.000000/5.000000/8.000000/11.000000:e/0/8.000000/5.000000/10.000000/11.000000:d/0/7.000000/14.000000/9.000000/16.000000:n/0/9.000000/6.000000/7.000000/0.000000:R/0/180/0,box=-1.000000/12.000000/13.010000:1.000000/17.656900/14.990000/0.000000/0.000000/-45.000000/0.000000/12.000000/13.000000:u/0/9.000000/16.000000/7.000000/14.000000:s/0/9.000000/0.000000/7.000000/6.000000:w180/0/8.000000/5.000000/10.000000/11.000000:e/0/6.000000/5.000000/8.000000/11.000000:d/0/9.000000/14.000000/7.000000/16.000000:n/0/7.000000/6.000000/9.000000/0.000000:R/0/180/0,box=11.000000/0.000000/13.010000:13.000000/5.656900/14.990000/0.000000/0.000000/-45.000000/12.000000/0.000000/13.000000:u/0/9.000000/16.000000/7.000000/14.000000:s/0/9.000000/0.000000/7.000000/6.000000:w180/0/8.000000/5.000000/10.000000/11.000000:e/0/6.000000/5.000000/8.000000/11.000000:d/0/9.000000/14.000000/7.000000/16.000000:n/0/7.000000/6.000000/9.000000/0.000000:R/0/180/0
|
|
||||||
modellist:id=%lattice,state=facing:south/half:bottom/open:false,box=3.000000/0.010000/0.000000:5.000000/1.990000/16.970600/0.000000/45.000000/0.000000/4.000000/0.000000/0.000000:u/0/7.000000/0.000000/9.000000/16.000000:s/0/7.000000/14.000000/9.000000/16.000000:w90/0/6.000000/0.000000/8.000000/16.000000:e90/0/8.000000/0.000000/10.000000/16.000000:d/0/7.000000/0.000000/9.000000/16.000000:n/0/9.000000/0.000000/7.000000/2.000000,box=11.000000/1.010000/0.000000:13.000000/2.990000/16.970600/0.000000/-45.000000/0.000000/12.000000/1.000000/0.000000:u/0/9.000000/0.000000/7.000000/16.000000:s/0/9.000000/14.000000/7.000000/16.000000:w90/0/8.000000/0.000000/10.000000/16.000000:e90/0/6.000000/0.000000/8.000000/16.000000:d/0/9.000000/0.000000/7.000000/16.000000:n/0/7.000000/0.000000/9.000000/2.000000,box=-1.000000/0.010000/4.000000:1.000000/1.990000/20.970600/0.000000/45.000000/0.000000/0.000000/0.000000/4.000000:u/0/7.000000/0.000000/9.000000/16.000000:s/0/7.000000/14.000000/9.000000/16.000000:w90/0/6.000000/0.000000/8.000000/16.000000:e90/0/8.000000/0.000000/10.000000/16.000000:d/0/7.000000/0.000000/9.000000/16.000000:n/0/9.000000/0.000000/7.000000/2.000000,box=15.000000/1.010000/4.000000:17.000000/2.990000/20.970600/0.000000/-45.000000/0.000000/16.000000/1.000000/4.000000:u/0/9.000000/0.000000/7.000000/16.000000:s/0/9.000000/14.000000/7.000000/16.000000:w90/0/8.000000/0.000000/10.000000/16.000000:e90/0/6.000000/0.000000/8.000000/16.000000:d/0/9.000000/0.000000/7.000000/16.000000:n/0/7.000000/0.000000/9.000000/2.000000,box=-1.000000/0.010000/12.000000:1.000000/1.990000/17.656900/0.000000/45.000000/0.000000/0.000000/0.000000/12.000000:u/0/7.000000/0.000000/9.000000/6.000000:s/0/7.000000/14.000000/9.000000/16.000000:w90/0/6.000000/5.000000/8.000000/11.000000:e90/0/8.000000/5.000000/10.000000/11.000000:d/0/7.000000/0.000000/9.000000/6.000000:n/0/9.000000/14.000000/7.000000/16.000000,box=11.000000/0.010000/0.000000:13.000000/1.990000/5.656900/0.000000/45.000000/0.000000/12.000000/0.000000/0.000000:u/0/7.000000/0.000000/9.000000/6.000000:s/0/7.000000/14.000000/9.000000/16.000000:w90/0/6.000000/5.000000/8.000000/11.000000:e90/0/8.000000/5.000000/10.000000/11.000000:d/0/7.000000/0.000000/9.000000/6.000000:n/0/9.000000/14.000000/7.000000/16.000000,box=3.000000/1.010000/0.000000:5.000000/2.990000/5.656900/0.000000/-45.000000/0.000000/4.000000/1.000000/0.000000:u/0/9.000000/0.000000/7.000000/6.000000:s/0/9.000000/14.000000/7.000000/16.000000:w90/0/8.000000/5.000000/10.000000/11.000000:e90/0/6.000000/5.000000/8.000000/11.000000:d/0/9.000000/0.000000/7.000000/6.000000:n/0/7.000000/14.000000/9.000000/16.000000,box=15.000000/1.010000/12.000000:17.000000/2.990000/17.656900/0.000000/-45.000000/0.000000/16.000000/1.000000/12.000000:u/0/9.000000/0.000000/7.000000/6.000000:s/0/9.000000/14.000000/7.000000/16.000000:w90/0/8.000000/5.000000/10.000000/11.000000:e90/0/6.000000/5.000000/8.000000/11.000000:d/0/9.000000/0.000000/7.000000/6.000000:n/0/7.000000/14.000000/9.000000/16.000000
|
|
||||||
modellist:id=%lattice,state=facing:west/half:top/open:true,box=11.000000/0.000000/14.010000:13.000000/16.970600/15.990000/0.000000/0.000000/45.000000/12.000000/0.000000/14.000000:u/0/7.000000/2.000000/9.000000/0.000000:s/0/7.000000/0.000000/9.000000/16.000000:w180/0/6.000000/0.000000/8.000000/16.000000:e/0/8.000000/0.000000/10.000000/16.000000:d/0/7.000000/14.000000/9.000000/16.000000:n/0/9.000000/16.000000/7.000000/0.000000:R/0/270/0,box=3.000000/0.000000/13.010000:5.000000/16.970600/14.990000/0.000000/0.000000/-45.000000/4.000000/0.000000/13.000000:u/0/9.000000/2.000000/7.000000/0.000000:s/0/9.000000/0.000000/7.000000/16.000000:w180/0/8.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/8.000000/16.000000:d/0/9.000000/14.000000/7.000000/16.000000:n/0/7.000000/16.000000/9.000000/0.000000:R/0/270/0,box=15.000000/4.000000/14.010000:17.000000/20.970600/15.990000/0.000000/0.000000/45.000000/16.000000/4.000000/14.000000:u/0/7.000000/2.000000/9.000000/0.000000:s/0/7.000000/0.000000/9.000000/16.000000:w180/0/6.000000/0.000000/8.000000/16.000000:e/0/8.000000/0.000000/10.000000/16.000000:d/0/7.000000/14.000000/9.000000/16.000000:n/0/9.000000/16.000000/7.000000/0.000000:R/0/270/0,box=-1.000000/4.000000/13.010000:1.000000/20.970600/14.990000/0.000000/0.000000/-45.000000/0.000000/4.000000/13.000000:u/0/9.000000/2.000000/7.000000/0.000000:s/0/9.000000/0.000000/7.000000/16.000000:w180/0/8.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/8.000000/16.000000:d/0/9.000000/14.000000/7.000000/16.000000:n/0/7.000000/16.000000/9.000000/0.000000:R/0/270/0,box=3.000000/0.000000/14.010000:5.000000/5.656900/15.990000/0.000000/0.000000/45.000000/4.000000/0.000000/14.000000:u/0/7.000000/16.000000/9.000000/14.000000:s/0/7.000000/0.000000/9.000000/6.000000:w180/0/6.000000/5.000000/8.000000/11.000000:e/0/8.000000/5.000000/10.000000/11.000000:d/0/7.000000/14.000000/9.000000/16.000000:n/0/9.000000/6.000000/7.000000/0.000000:R/0/270/0,box=15.000000/12.000000/14.010000:17.000000/17.656900/15.990000/0.000000/0.000000/45.000000/16.000000/12.000000/14.000000:u/0/7.000000/16.000000/9.000000/14.000000:s/0/7.000000/0.000000/9.000000/6.000000:w180/0/6.000000/5.000000/8.000000/11.000000:e/0/8.000000/5.000000/10.000000/11.000000:d/0/7.000000/14.000000/9.000000/16.000000:n/0/9.000000/6.000000/7.000000/0.000000:R/0/270/0,box=-1.000000/12.000000/13.010000:1.000000/17.656900/14.990000/0.000000/0.000000/-45.000000/0.000000/12.000000/13.000000:u/0/9.000000/16.000000/7.000000/14.000000:s/0/9.000000/0.000000/7.000000/6.000000:w180/0/8.000000/5.000000/10.000000/11.000000:e/0/6.000000/5.000000/8.000000/11.000000:d/0/9.000000/14.000000/7.000000/16.000000:n/0/7.000000/6.000000/9.000000/0.000000:R/0/270/0,box=11.000000/0.000000/13.010000:13.000000/5.656900/14.990000/0.000000/0.000000/-45.000000/12.000000/0.000000/13.000000:u/0/9.000000/16.000000/7.000000/14.000000:s/0/9.000000/0.000000/7.000000/6.000000:w180/0/8.000000/5.000000/10.000000/11.000000:e/0/6.000000/5.000000/8.000000/11.000000:d/0/9.000000/14.000000/7.000000/16.000000:n/0/7.000000/6.000000/9.000000/0.000000:R/0/270/0
|
|
||||||
modellist:id=%lattice,state=facing:west/half:top/open:false,box=3.000000/14.010000/0.000000:5.000000/15.990000/16.970600/0.000000/45.000000/0.000000/4.000000/14.000000/0.000000:u/0/7.000000/0.000000/9.000000/16.000000:s/0/7.000000/14.000000/9.000000/16.000000:w90/0/6.000000/0.000000/8.000000/16.000000:e90/0/8.000000/0.000000/10.000000/16.000000:d/0/7.000000/0.000000/9.000000/16.000000:n/0/9.000000/0.000000/7.000000/2.000000,box=8.656899/13.010000/-5.656900:10.656900/14.990000/11.313700/0.000000/-45.000000/0.000000/4.000000/12.000000/0.000000:u/0/9.000000/0.000000/7.000000/16.000000:s/0/9.000000/14.000000/7.000000/16.000000:w90/0/8.000000/0.000000/10.000000/16.000000:e90/0/6.000000/0.000000/8.000000/16.000000:d/0/9.000000/0.000000/7.000000/16.000000:n/0/7.000000/0.000000/9.000000/2.000000,box=-2.656900/14.010000/0.000000:-0.656900/15.990000/16.970600/0.000000/45.000000/0.000000/4.000000/14.000000/0.000000:u/0/7.000000/0.000000/9.000000/16.000000:s/0/7.000000/14.000000/9.000000/16.000000:w90/0/6.000000/0.000000/8.000000/16.000000:e90/0/8.000000/0.000000/10.000000/16.000000:d/0/7.000000/0.000000/9.000000/16.000000:n/0/9.000000/0.000000/7.000000/2.000000,box=14.313700/13.010000/-5.656900:16.313700/14.990000/11.313700/0.000000/-45.000000/0.000000/4.000000/12.000000/0.000000:u/0/9.000000/0.000000/7.000000/16.000000:s/0/9.000000/14.000000/7.000000/16.000000:w90/0/8.000000/0.000000/10.000000/16.000000:e90/0/6.000000/0.000000/8.000000/16.000000:d/0/9.000000/0.000000/7.000000/16.000000:n/0/7.000000/0.000000/9.000000/2.000000,box=-8.313700/14.010000/5.656900:-6.313700/15.990000/11.313800/0.000000/45.000000/0.000000/4.000000/14.000000/0.000000:u/0/7.000000/0.000000/9.000000/6.000000:s/0/7.000000/14.000000/9.000000/16.000000:w90/0/6.000000/5.000000/8.000000/11.000000:e90/0/8.000000/5.000000/10.000000/11.000000:d/0/7.000000/0.000000/9.000000/6.000000:n/0/9.000000/14.000000/7.000000/16.000000,box=8.656899/14.010000/5.656900:10.656900/15.990000/11.313800/0.000000/45.000000/0.000000/4.000000/14.000000/0.000000:u/0/7.000000/0.000000/9.000000/6.000000:s/0/7.000000/14.000000/9.000000/16.000000:w90/0/6.000000/5.000000/8.000000/11.000000:e90/0/8.000000/5.000000/10.000000/11.000000:d/0/7.000000/0.000000/9.000000/6.000000:n/0/9.000000/14.000000/7.000000/16.000000,box=3.000000/13.010000/0.000000:5.000000/14.990000/5.656900/0.000000/-45.000000/0.000000/4.000000/12.000000/0.000000:u/0/9.000000/0.000000/7.000000/6.000000:s/0/9.000000/14.000000/7.000000/16.000000:w90/0/8.000000/5.000000/10.000000/11.000000:e90/0/6.000000/5.000000/8.000000/11.000000:d/0/9.000000/0.000000/7.000000/6.000000:n/0/7.000000/14.000000/9.000000/16.000000,box=19.970600/13.010000/0.000000:21.970600/14.990000/5.656900/0.000000/-45.000000/0.000000/4.000000/12.000000/0.000000:u/0/9.000000/0.000000/7.000000/6.000000:s/0/9.000000/14.000000/7.000000/16.000000:w90/0/8.000000/5.000000/10.000000/11.000000:e90/0/6.000000/5.000000/8.000000/11.000000:d/0/9.000000/0.000000/7.000000/6.000000:n/0/7.000000/14.000000/9.000000/16.000000
|
|
||||||
modellist:id=%lattice,state=facing:west/half:bottom/open:true,box=11.000000/0.000000/14.010000:13.000000/16.970600/15.990000/0.000000/0.000000/45.000000/12.000000/0.000000/14.000000:u/0/7.000000/2.000000/9.000000/0.000000:s/0/7.000000/0.000000/9.000000/16.000000:w180/0/6.000000/0.000000/8.000000/16.000000:e/0/8.000000/0.000000/10.000000/16.000000:d/0/7.000000/14.000000/9.000000/16.000000:n/0/9.000000/16.000000/7.000000/0.000000:R/0/270/0,box=3.000000/0.000000/13.010000:5.000000/16.970600/14.990000/0.000000/0.000000/-45.000000/4.000000/0.000000/13.000000:u/0/9.000000/2.000000/7.000000/0.000000:s/0/9.000000/0.000000/7.000000/16.000000:w180/0/8.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/8.000000/16.000000:d/0/9.000000/14.000000/7.000000/16.000000:n/0/7.000000/16.000000/9.000000/0.000000:R/0/270/0,box=15.000000/4.000000/14.010000:17.000000/20.970600/15.990000/0.000000/0.000000/45.000000/16.000000/4.000000/14.000000:u/0/7.000000/2.000000/9.000000/0.000000:s/0/7.000000/0.000000/9.000000/16.000000:w180/0/6.000000/0.000000/8.000000/16.000000:e/0/8.000000/0.000000/10.000000/16.000000:d/0/7.000000/14.000000/9.000000/16.000000:n/0/9.000000/16.000000/7.000000/0.000000:R/0/270/0,box=-1.000000/4.000000/13.010000:1.000000/20.970600/14.990000/0.000000/0.000000/-45.000000/0.000000/4.000000/13.000000:u/0/9.000000/2.000000/7.000000/0.000000:s/0/9.000000/0.000000/7.000000/16.000000:w180/0/8.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/8.000000/16.000000:d/0/9.000000/14.000000/7.000000/16.000000:n/0/7.000000/16.000000/9.000000/0.000000:R/0/270/0,box=3.000000/0.000000/14.010000:5.000000/5.656900/15.990000/0.000000/0.000000/45.000000/4.000000/0.000000/14.000000:u/0/7.000000/16.000000/9.000000/14.000000:s/0/7.000000/0.000000/9.000000/6.000000:w180/0/6.000000/5.000000/8.000000/11.000000:e/0/8.000000/5.000000/10.000000/11.000000:d/0/7.000000/14.000000/9.000000/16.000000:n/0/9.000000/6.000000/7.000000/0.000000:R/0/270/0,box=15.000000/12.000000/14.010000:17.000000/17.656900/15.990000/0.000000/0.000000/45.000000/16.000000/12.000000/14.000000:u/0/7.000000/16.000000/9.000000/14.000000:s/0/7.000000/0.000000/9.000000/6.000000:w180/0/6.000000/5.000000/8.000000/11.000000:e/0/8.000000/5.000000/10.000000/11.000000:d/0/7.000000/14.000000/9.000000/16.000000:n/0/9.000000/6.000000/7.000000/0.000000:R/0/270/0,box=-1.000000/12.000000/13.010000:1.000000/17.656900/14.990000/0.000000/0.000000/-45.000000/0.000000/12.000000/13.000000:u/0/9.000000/16.000000/7.000000/14.000000:s/0/9.000000/0.000000/7.000000/6.000000:w180/0/8.000000/5.000000/10.000000/11.000000:e/0/6.000000/5.000000/8.000000/11.000000:d/0/9.000000/14.000000/7.000000/16.000000:n/0/7.000000/6.000000/9.000000/0.000000:R/0/270/0,box=11.000000/0.000000/13.010000:13.000000/5.656900/14.990000/0.000000/0.000000/-45.000000/12.000000/0.000000/13.000000:u/0/9.000000/16.000000/7.000000/14.000000:s/0/9.000000/0.000000/7.000000/6.000000:w180/0/8.000000/5.000000/10.000000/11.000000:e/0/6.000000/5.000000/8.000000/11.000000:d/0/9.000000/14.000000/7.000000/16.000000:n/0/7.000000/6.000000/9.000000/0.000000:R/0/270/0
|
|
||||||
modellist:id=%lattice,state=facing:west/half:bottom/open:false,box=3.000000/0.010000/0.000000:5.000000/1.990000/16.970600/0.000000/45.000000/0.000000/4.000000/0.000000/0.000000:u/0/7.000000/0.000000/9.000000/16.000000:s/0/7.000000/14.000000/9.000000/16.000000:w90/0/6.000000/0.000000/8.000000/16.000000:e90/0/8.000000/0.000000/10.000000/16.000000:d/0/7.000000/0.000000/9.000000/16.000000:n/0/9.000000/0.000000/7.000000/2.000000,box=11.000000/1.010000/0.000000:13.000000/2.990000/16.970600/0.000000/-45.000000/0.000000/12.000000/1.000000/0.000000:u/0/9.000000/0.000000/7.000000/16.000000:s/0/9.000000/14.000000/7.000000/16.000000:w90/0/8.000000/0.000000/10.000000/16.000000:e90/0/6.000000/0.000000/8.000000/16.000000:d/0/9.000000/0.000000/7.000000/16.000000:n/0/7.000000/0.000000/9.000000/2.000000,box=-1.000000/0.010000/4.000000:1.000000/1.990000/20.970600/0.000000/45.000000/0.000000/0.000000/0.000000/4.000000:u/0/7.000000/0.000000/9.000000/16.000000:s/0/7.000000/14.000000/9.000000/16.000000:w90/0/6.000000/0.000000/8.000000/16.000000:e90/0/8.000000/0.000000/10.000000/16.000000:d/0/7.000000/0.000000/9.000000/16.000000:n/0/9.000000/0.000000/7.000000/2.000000,box=15.000000/1.010000/4.000000:17.000000/2.990000/20.970600/0.000000/-45.000000/0.000000/16.000000/1.000000/4.000000:u/0/9.000000/0.000000/7.000000/16.000000:s/0/9.000000/14.000000/7.000000/16.000000:w90/0/8.000000/0.000000/10.000000/16.000000:e90/0/6.000000/0.000000/8.000000/16.000000:d/0/9.000000/0.000000/7.000000/16.000000:n/0/7.000000/0.000000/9.000000/2.000000,box=-1.000000/0.010000/12.000000:1.000000/1.990000/17.656900/0.000000/45.000000/0.000000/0.000000/0.000000/12.000000:u/0/7.000000/0.000000/9.000000/6.000000:s/0/7.000000/14.000000/9.000000/16.000000:w90/0/6.000000/5.000000/8.000000/11.000000:e90/0/8.000000/5.000000/10.000000/11.000000:d/0/7.000000/0.000000/9.000000/6.000000:n/0/9.000000/14.000000/7.000000/16.000000,box=11.000000/0.010000/0.000000:13.000000/1.990000/5.656900/0.000000/45.000000/0.000000/12.000000/0.000000/0.000000:u/0/7.000000/0.000000/9.000000/6.000000:s/0/7.000000/14.000000/9.000000/16.000000:w90/0/6.000000/5.000000/8.000000/11.000000:e90/0/8.000000/5.000000/10.000000/11.000000:d/0/7.000000/0.000000/9.000000/6.000000:n/0/9.000000/14.000000/7.000000/16.000000,box=3.000000/1.010000/0.000000:5.000000/2.990000/5.656900/0.000000/-45.000000/0.000000/4.000000/1.000000/0.000000:u/0/9.000000/0.000000/7.000000/6.000000:s/0/9.000000/14.000000/7.000000/16.000000:w90/0/8.000000/5.000000/10.000000/11.000000:e90/0/6.000000/5.000000/8.000000/11.000000:d/0/9.000000/0.000000/7.000000/6.000000:n/0/7.000000/14.000000/9.000000/16.000000,box=15.000000/1.010000/12.000000:17.000000/2.990000/17.656900/0.000000/-45.000000/0.000000/16.000000/1.000000/12.000000:u/0/9.000000/0.000000/7.000000/6.000000:s/0/9.000000/14.000000/7.000000/16.000000:w90/0/8.000000/5.000000/10.000000/11.000000:e90/0/6.000000/5.000000/8.000000/11.000000:d/0/9.000000/0.000000/7.000000/6.000000:n/0/7.000000/14.000000/9.000000/16.000000
|
|
||||||
modellist:id=%lattice,state=facing:east/half:top/open:true,box=11.000000/0.000000/14.010000:13.000000/16.970600/15.990000/0.000000/0.000000/45.000000/12.000000/0.000000/14.000000:u/0/7.000000/2.000000/9.000000/0.000000:s/0/7.000000/0.000000/9.000000/16.000000:w180/0/6.000000/0.000000/8.000000/16.000000:e/0/8.000000/0.000000/10.000000/16.000000:d/0/7.000000/14.000000/9.000000/16.000000:n/0/9.000000/16.000000/7.000000/0.000000:R/0/90/0,box=3.000000/0.000000/13.010000:5.000000/16.970600/14.990000/0.000000/0.000000/-45.000000/4.000000/0.000000/13.000000:u/0/9.000000/2.000000/7.000000/0.000000:s/0/9.000000/0.000000/7.000000/16.000000:w180/0/8.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/8.000000/16.000000:d/0/9.000000/14.000000/7.000000/16.000000:n/0/7.000000/16.000000/9.000000/0.000000:R/0/90/0,box=15.000000/4.000000/14.010000:17.000000/20.970600/15.990000/0.000000/0.000000/45.000000/16.000000/4.000000/14.000000:u/0/7.000000/2.000000/9.000000/0.000000:s/0/7.000000/0.000000/9.000000/16.000000:w180/0/6.000000/0.000000/8.000000/16.000000:e/0/8.000000/0.000000/10.000000/16.000000:d/0/7.000000/14.000000/9.000000/16.000000:n/0/9.000000/16.000000/7.000000/0.000000:R/0/90/0,box=-1.000000/4.000000/13.010000:1.000000/20.970600/14.990000/0.000000/0.000000/-45.000000/0.000000/4.000000/13.000000:u/0/9.000000/2.000000/7.000000/0.000000:s/0/9.000000/0.000000/7.000000/16.000000:w180/0/8.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/8.000000/16.000000:d/0/9.000000/14.000000/7.000000/16.000000:n/0/7.000000/16.000000/9.000000/0.000000:R/0/90/0,box=3.000000/0.000000/14.010000:5.000000/5.656900/15.990000/0.000000/0.000000/45.000000/4.000000/0.000000/14.000000:u/0/7.000000/16.000000/9.000000/14.000000:s/0/7.000000/0.000000/9.000000/6.000000:w180/0/6.000000/5.000000/8.000000/11.000000:e/0/8.000000/5.000000/10.000000/11.000000:d/0/7.000000/14.000000/9.000000/16.000000:n/0/9.000000/6.000000/7.000000/0.000000:R/0/90/0,box=15.000000/12.000000/14.010000:17.000000/17.656900/15.990000/0.000000/0.000000/45.000000/16.000000/12.000000/14.000000:u/0/7.000000/16.000000/9.000000/14.000000:s/0/7.000000/0.000000/9.000000/6.000000:w180/0/6.000000/5.000000/8.000000/11.000000:e/0/8.000000/5.000000/10.000000/11.000000:d/0/7.000000/14.000000/9.000000/16.000000:n/0/9.000000/6.000000/7.000000/0.000000:R/0/90/0,box=-1.000000/12.000000/13.010000:1.000000/17.656900/14.990000/0.000000/0.000000/-45.000000/0.000000/12.000000/13.000000:u/0/9.000000/16.000000/7.000000/14.000000:s/0/9.000000/0.000000/7.000000/6.000000:w180/0/8.000000/5.000000/10.000000/11.000000:e/0/6.000000/5.000000/8.000000/11.000000:d/0/9.000000/14.000000/7.000000/16.000000:n/0/7.000000/6.000000/9.000000/0.000000:R/0/90/0,box=11.000000/0.000000/13.010000:13.000000/5.656900/14.990000/0.000000/0.000000/-45.000000/12.000000/0.000000/13.000000:u/0/9.000000/16.000000/7.000000/14.000000:s/0/9.000000/0.000000/7.000000/6.000000:w180/0/8.000000/5.000000/10.000000/11.000000:e/0/6.000000/5.000000/8.000000/11.000000:d/0/9.000000/14.000000/7.000000/16.000000:n/0/7.000000/6.000000/9.000000/0.000000:R/0/90/0
|
|
||||||
modellist:id=%lattice,state=facing:east/half:top/open:false,box=3.000000/14.010000/0.000000:5.000000/15.990000/16.970600/0.000000/45.000000/0.000000/4.000000/14.000000/0.000000:u/0/7.000000/0.000000/9.000000/16.000000:s/0/7.000000/14.000000/9.000000/16.000000:w90/0/6.000000/0.000000/8.000000/16.000000:e90/0/8.000000/0.000000/10.000000/16.000000:d/0/7.000000/0.000000/9.000000/16.000000:n/0/9.000000/0.000000/7.000000/2.000000,box=8.656899/13.010000/-5.656900:10.656900/14.990000/11.313700/0.000000/-45.000000/0.000000/4.000000/12.000000/0.000000:u/0/9.000000/0.000000/7.000000/16.000000:s/0/9.000000/14.000000/7.000000/16.000000:w90/0/8.000000/0.000000/10.000000/16.000000:e90/0/6.000000/0.000000/8.000000/16.000000:d/0/9.000000/0.000000/7.000000/16.000000:n/0/7.000000/0.000000/9.000000/2.000000,box=-2.656900/14.010000/0.000000:-0.656900/15.990000/16.970600/0.000000/45.000000/0.000000/4.000000/14.000000/0.000000:u/0/7.000000/0.000000/9.000000/16.000000:s/0/7.000000/14.000000/9.000000/16.000000:w90/0/6.000000/0.000000/8.000000/16.000000:e90/0/8.000000/0.000000/10.000000/16.000000:d/0/7.000000/0.000000/9.000000/16.000000:n/0/9.000000/0.000000/7.000000/2.000000,box=14.313700/13.010000/-5.656900:16.313700/14.990000/11.313700/0.000000/-45.000000/0.000000/4.000000/12.000000/0.000000:u/0/9.000000/0.000000/7.000000/16.000000:s/0/9.000000/14.000000/7.000000/16.000000:w90/0/8.000000/0.000000/10.000000/16.000000:e90/0/6.000000/0.000000/8.000000/16.000000:d/0/9.000000/0.000000/7.000000/16.000000:n/0/7.000000/0.000000/9.000000/2.000000,box=-8.313700/14.010000/5.656900:-6.313700/15.990000/11.313800/0.000000/45.000000/0.000000/4.000000/14.000000/0.000000:u/0/7.000000/0.000000/9.000000/6.000000:s/0/7.000000/14.000000/9.000000/16.000000:w90/0/6.000000/5.000000/8.000000/11.000000:e90/0/8.000000/5.000000/10.000000/11.000000:d/0/7.000000/0.000000/9.000000/6.000000:n/0/9.000000/14.000000/7.000000/16.000000,box=8.656899/14.010000/5.656900:10.656900/15.990000/11.313800/0.000000/45.000000/0.000000/4.000000/14.000000/0.000000:u/0/7.000000/0.000000/9.000000/6.000000:s/0/7.000000/14.000000/9.000000/16.000000:w90/0/6.000000/5.000000/8.000000/11.000000:e90/0/8.000000/5.000000/10.000000/11.000000:d/0/7.000000/0.000000/9.000000/6.000000:n/0/9.000000/14.000000/7.000000/16.000000,box=3.000000/13.010000/0.000000:5.000000/14.990000/5.656900/0.000000/-45.000000/0.000000/4.000000/12.000000/0.000000:u/0/9.000000/0.000000/7.000000/6.000000:s/0/9.000000/14.000000/7.000000/16.000000:w90/0/8.000000/5.000000/10.000000/11.000000:e90/0/6.000000/5.000000/8.000000/11.000000:d/0/9.000000/0.000000/7.000000/6.000000:n/0/7.000000/14.000000/9.000000/16.000000,box=19.970600/13.010000/0.000000:21.970600/14.990000/5.656900/0.000000/-45.000000/0.000000/4.000000/12.000000/0.000000:u/0/9.000000/0.000000/7.000000/6.000000:s/0/9.000000/14.000000/7.000000/16.000000:w90/0/8.000000/5.000000/10.000000/11.000000:e90/0/6.000000/5.000000/8.000000/11.000000:d/0/9.000000/0.000000/7.000000/6.000000:n/0/7.000000/14.000000/9.000000/16.000000
|
|
||||||
modellist:id=%lattice,state=facing:east/half:bottom/open:true,box=11.000000/0.000000/14.010000:13.000000/16.970600/15.990000/0.000000/0.000000/45.000000/12.000000/0.000000/14.000000:u/0/7.000000/2.000000/9.000000/0.000000:s/0/7.000000/0.000000/9.000000/16.000000:w180/0/6.000000/0.000000/8.000000/16.000000:e/0/8.000000/0.000000/10.000000/16.000000:d/0/7.000000/14.000000/9.000000/16.000000:n/0/9.000000/16.000000/7.000000/0.000000:R/0/90/0,box=3.000000/0.000000/13.010000:5.000000/16.970600/14.990000/0.000000/0.000000/-45.000000/4.000000/0.000000/13.000000:u/0/9.000000/2.000000/7.000000/0.000000:s/0/9.000000/0.000000/7.000000/16.000000:w180/0/8.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/8.000000/16.000000:d/0/9.000000/14.000000/7.000000/16.000000:n/0/7.000000/16.000000/9.000000/0.000000:R/0/90/0,box=15.000000/4.000000/14.010000:17.000000/20.970600/15.990000/0.000000/0.000000/45.000000/16.000000/4.000000/14.000000:u/0/7.000000/2.000000/9.000000/0.000000:s/0/7.000000/0.000000/9.000000/16.000000:w180/0/6.000000/0.000000/8.000000/16.000000:e/0/8.000000/0.000000/10.000000/16.000000:d/0/7.000000/14.000000/9.000000/16.000000:n/0/9.000000/16.000000/7.000000/0.000000:R/0/90/0,box=-1.000000/4.000000/13.010000:1.000000/20.970600/14.990000/0.000000/0.000000/-45.000000/0.000000/4.000000/13.000000:u/0/9.000000/2.000000/7.000000/0.000000:s/0/9.000000/0.000000/7.000000/16.000000:w180/0/8.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/8.000000/16.000000:d/0/9.000000/14.000000/7.000000/16.000000:n/0/7.000000/16.000000/9.000000/0.000000:R/0/90/0,box=3.000000/0.000000/14.010000:5.000000/5.656900/15.990000/0.000000/0.000000/45.000000/4.000000/0.000000/14.000000:u/0/7.000000/16.000000/9.000000/14.000000:s/0/7.000000/0.000000/9.000000/6.000000:w180/0/6.000000/5.000000/8.000000/11.000000:e/0/8.000000/5.000000/10.000000/11.000000:d/0/7.000000/14.000000/9.000000/16.000000:n/0/9.000000/6.000000/7.000000/0.000000:R/0/90/0,box=15.000000/12.000000/14.010000:17.000000/17.656900/15.990000/0.000000/0.000000/45.000000/16.000000/12.000000/14.000000:u/0/7.000000/16.000000/9.000000/14.000000:s/0/7.000000/0.000000/9.000000/6.000000:w180/0/6.000000/5.000000/8.000000/11.000000:e/0/8.000000/5.000000/10.000000/11.000000:d/0/7.000000/14.000000/9.000000/16.000000:n/0/9.000000/6.000000/7.000000/0.000000:R/0/90/0,box=-1.000000/12.000000/13.010000:1.000000/17.656900/14.990000/0.000000/0.000000/-45.000000/0.000000/12.000000/13.000000:u/0/9.000000/16.000000/7.000000/14.000000:s/0/9.000000/0.000000/7.000000/6.000000:w180/0/8.000000/5.000000/10.000000/11.000000:e/0/6.000000/5.000000/8.000000/11.000000:d/0/9.000000/14.000000/7.000000/16.000000:n/0/7.000000/6.000000/9.000000/0.000000:R/0/90/0,box=11.000000/0.000000/13.010000:13.000000/5.656900/14.990000/0.000000/0.000000/-45.000000/12.000000/0.000000/13.000000:u/0/9.000000/16.000000/7.000000/14.000000:s/0/9.000000/0.000000/7.000000/6.000000:w180/0/8.000000/5.000000/10.000000/11.000000:e/0/6.000000/5.000000/8.000000/11.000000:d/0/9.000000/14.000000/7.000000/16.000000:n/0/7.000000/6.000000/9.000000/0.000000:R/0/90/0
|
|
||||||
modellist:id=%lattice,state=facing:east/half:bottom/open:false,box=3.000000/0.010000/0.000000:5.000000/1.990000/16.970600/0.000000/45.000000/0.000000/4.000000/0.000000/0.000000:u/0/7.000000/0.000000/9.000000/16.000000:s/0/7.000000/14.000000/9.000000/16.000000:w90/0/6.000000/0.000000/8.000000/16.000000:e90/0/8.000000/0.000000/10.000000/16.000000:d/0/7.000000/0.000000/9.000000/16.000000:n/0/9.000000/0.000000/7.000000/2.000000,box=11.000000/1.010000/0.000000:13.000000/2.990000/16.970600/0.000000/-45.000000/0.000000/12.000000/1.000000/0.000000:u/0/9.000000/0.000000/7.000000/16.000000:s/0/9.000000/14.000000/7.000000/16.000000:w90/0/8.000000/0.000000/10.000000/16.000000:e90/0/6.000000/0.000000/8.000000/16.000000:d/0/9.000000/0.000000/7.000000/16.000000:n/0/7.000000/0.000000/9.000000/2.000000,box=-1.000000/0.010000/4.000000:1.000000/1.990000/20.970600/0.000000/45.000000/0.000000/0.000000/0.000000/4.000000:u/0/7.000000/0.000000/9.000000/16.000000:s/0/7.000000/14.000000/9.000000/16.000000:w90/0/6.000000/0.000000/8.000000/16.000000:e90/0/8.000000/0.000000/10.000000/16.000000:d/0/7.000000/0.000000/9.000000/16.000000:n/0/9.000000/0.000000/7.000000/2.000000,box=15.000000/1.010000/4.000000:17.000000/2.990000/20.970600/0.000000/-45.000000/0.000000/16.000000/1.000000/4.000000:u/0/9.000000/0.000000/7.000000/16.000000:s/0/9.000000/14.000000/7.000000/16.000000:w90/0/8.000000/0.000000/10.000000/16.000000:e90/0/6.000000/0.000000/8.000000/16.000000:d/0/9.000000/0.000000/7.000000/16.000000:n/0/7.000000/0.000000/9.000000/2.000000,box=-1.000000/0.010000/12.000000:1.000000/1.990000/17.656900/0.000000/45.000000/0.000000/0.000000/0.000000/12.000000:u/0/7.000000/0.000000/9.000000/6.000000:s/0/7.000000/14.000000/9.000000/16.000000:w90/0/6.000000/5.000000/8.000000/11.000000:e90/0/8.000000/5.000000/10.000000/11.000000:d/0/7.000000/0.000000/9.000000/6.000000:n/0/9.000000/14.000000/7.000000/16.000000,box=11.000000/0.010000/0.000000:13.000000/1.990000/5.656900/0.000000/45.000000/0.000000/12.000000/0.000000/0.000000:u/0/7.000000/0.000000/9.000000/6.000000:s/0/7.000000/14.000000/9.000000/16.000000:w90/0/6.000000/5.000000/8.000000/11.000000:e90/0/8.000000/5.000000/10.000000/11.000000:d/0/7.000000/0.000000/9.000000/6.000000:n/0/9.000000/14.000000/7.000000/16.000000,box=3.000000/1.010000/0.000000:5.000000/2.990000/5.656900/0.000000/-45.000000/0.000000/4.000000/1.000000/0.000000:u/0/9.000000/0.000000/7.000000/6.000000:s/0/9.000000/14.000000/7.000000/16.000000:w90/0/8.000000/5.000000/10.000000/11.000000:e90/0/6.000000/5.000000/8.000000/11.000000:d/0/9.000000/0.000000/7.000000/6.000000:n/0/7.000000/14.000000/9.000000/16.000000,box=15.000000/1.010000/12.000000:17.000000/2.990000/17.656900/0.000000/-45.000000/0.000000/16.000000/1.000000/12.000000:u/0/9.000000/0.000000/7.000000/6.000000:s/0/9.000000/14.000000/7.000000/16.000000:w90/0/8.000000/5.000000/10.000000/11.000000:e90/0/6.000000/5.000000/8.000000/11.000000:d/0/9.000000/0.000000/7.000000/6.000000:n/0/7.000000/14.000000/9.000000/16.000000
|
|
||||||
modellist:id=%chandelier,box=1.000000/0.000000/9.000000:3.000000/10.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:d/0/7.000000/14.000000/9.000000/16.000000,box=0.000000/0.000000/3.000000:16.000000/2.000000/5.000000:u/1/0.000000/3.000000/16.000000/5.000000:s/1/0.000000/11.000000/16.000000/13.000000:w/1/9.000000/3.000000/11.000000/5.000000:e/1/6.000000/11.000000/8.000000/13.000000:d/1/0.000000/11.000000/16.000000/13.000000:n/1/0.000000/3.000000/16.000000/5.000000,box=0.000000/0.000000/11.000000:16.000000/2.000000/13.000000:u/1/0.000000/11.000000/16.000000/13.000000:s/1/0.000000/3.000000/16.000000/5.000000:w/1/9.000000/3.000000/11.000000/5.000000:e/1/6.000000/11.000000/8.000000/13.000000:d/1/0.000000/3.000000/16.000000/5.000000:n/1/0.000000/11.000000/16.000000/13.000000,box=3.000000/0.000000/0.000000:5.000000/2.000000/16.000000:u/1/2.999999/0.000002/4.999999/16.000000:s/1/9.000000/11.000000/11.000000/13.000000:w/1/0.000002/3.000000/16.000000/5.000000:e/1/0.000000/11.000000/16.000000/13.000000:d/1/2.999999/0.000000/4.999999/16.000000:n/1/14.000000/3.000000/16.000000/5.000000,box=11.000000/0.000000/0.000000:13.000000/2.000000/16.000000:u/1/11.000000/0.000002/13.000000/16.000000:s/1/9.000000/11.000000/11.000000/13.000000:w/1/0.000000/11.000000/16.000000/13.000000:e/1/0.000000/3.000000/16.000000/5.000000:d/1/11.000000/0.000000/13.000000/16.000000:n/1/6.000000/11.000000/8.000000/13.000000,box=1.000000/0.000000/8.000000/false:1.001000/16.000000/12.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000,box=3.000000/0.000000/8.000000/false:3.001000/16.000000/12.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000,box=0.000000/0.000000/9.000000/false:4.000000/16.000000/9.001000:s/0/6.000000/0.000000/10.000000/16.000000:n/0/6.000000/0.000000/10.000000/16.000000,box=0.000000/0.000000/11.000000/false:4.000000/16.000000/11.001000:s/0/6.000000/0.000000/10.000000/16.000000:n/0/6.000000/0.000000/10.000000/16.000000,box=12.000000/0.000000/7.000000/false:16.000000/16.000000/7.001000:s/0/6.000000/0.000000/10.000000/16.000000:n/0/6.000000/0.000000/10.000000/16.000000,box=13.000000/0.000000/4.000000/false:13.001000/16.000000/8.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000,box=15.000000/0.000000/4.000000/false:15.001000/16.000000/8.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000,box=12.000000/0.000000/5.000000/false:16.000000/16.000000/5.001000:s/0/6.000000/0.000000/10.000000/16.000000:n/0/6.000000/0.000000/10.000000/16.000000,box=13.000000/0.000000/5.000000:15.000000/10.000000/7.000000:u/2/7.000000/6.000000/9.000000/8.000000:d/2/7.000000/14.000000/9.000000/16.000000,box=5.000000/0.000000/1.000000:7.000000/10.000000/3.000000:u/2/7.000000/6.000000/9.000000/8.000000:d/2/7.000000/14.000000/9.000000/16.000000,box=4.000000/0.000000/1.000000/false:8.000000/16.000000/1.001000:s/2/6.000000/0.000000/10.000000/16.000000:n/2/6.000000/0.000000/10.000000/16.000000,box=7.000000/0.000000/0.000000/false:7.001000/16.000000/4.000000:w/2/6.000000/0.000000/10.000000/16.000000:e/2/6.000000/0.000000/10.000000/16.000000,box=5.000000/0.000000/0.000000/false:5.001000/16.000000/4.000000:w/2/6.000000/0.000000/10.000000/16.000000:e/2/6.000000/0.000000/10.000000/16.000000,box=4.000000/0.000000/3.000000/false:8.000000/16.000000/3.001000:s/2/6.000000/0.000000/10.000000/16.000000:n/2/6.000000/0.000000/10.000000/16.000000,box=8.000000/0.000000/15.000000/false:12.000000/16.000000/15.001000:s/2/6.000000/0.000000/10.000000/16.000000:n/2/6.000000/0.000000/10.000000/16.000000,box=9.000000/0.000000/13.000000:11.000000/10.000000/15.000000:u/2/7.000000/6.000000/9.000000/8.000000:d/2/7.000000/14.000000/9.000000/16.000000,box=8.000000/0.000000/13.000000/false:12.000000/16.000000/13.001000:s/2/6.000000/0.000000/10.000000/16.000000:n/2/6.000000/0.000000/10.000000/16.000000,box=11.000000/0.000000/12.000000/false:11.001000/16.000000/16.000000:w/2/6.000000/0.000000/10.000000/16.000000:e/2/6.000000/0.000000/10.000000/16.000000,box=9.000000/0.000000/12.000000/false:9.001000/16.000000/16.000000:w/2/6.000000/0.000000/10.000000/16.000000:e/2/6.000000/0.000000/10.000000/16.000000
|
|
||||||
modellist:id=%soul_chandelier,box=1.000000/0.000000/9.000000:3.000000/10.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:d/0/7.000000/14.000000/9.000000/16.000000,box=0.000000/0.000000/3.000000:16.000000/2.000000/5.000000:u/1/0.000000/3.000000/16.000000/5.000000:s/1/0.000000/11.000000/16.000000/13.000000:w/1/9.000000/3.000000/11.000000/5.000000:e/1/6.000000/11.000000/8.000000/13.000000:d/1/0.000000/11.000000/16.000000/13.000000:n/1/0.000000/3.000000/16.000000/5.000000,box=0.000000/0.000000/11.000000:16.000000/2.000000/13.000000:u/1/0.000000/11.000000/16.000000/13.000000:s/1/0.000000/3.000000/16.000000/5.000000:w/1/9.000000/3.000000/11.000000/5.000000:e/1/6.000000/11.000000/8.000000/13.000000:d/1/0.000000/3.000000/16.000000/5.000000:n/1/0.000000/11.000000/16.000000/13.000000,box=3.000000/0.000000/0.000000:5.000000/2.000000/16.000000:u/1/2.999999/0.000002/4.999999/16.000000:s/1/9.000000/11.000000/11.000000/13.000000:w/1/0.000002/3.000000/16.000000/5.000000:e/1/0.000000/11.000000/16.000000/13.000000:d/1/2.999999/0.000000/4.999999/16.000000:n/1/14.000000/3.000000/16.000000/5.000000,box=11.000000/0.000000/0.000000:13.000000/2.000000/16.000000:u/1/11.000000/0.000002/13.000000/16.000000:s/1/9.000000/11.000000/11.000000/13.000000:w/1/0.000000/11.000000/16.000000/13.000000:e/1/0.000000/3.000000/16.000000/5.000000:d/1/11.000000/0.000000/13.000000/16.000000:n/1/6.000000/11.000000/8.000000/13.000000,box=1.000000/0.000000/8.000000/false:1.001000/16.000000/12.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000,box=3.000000/0.000000/8.000000/false:3.001000/16.000000/12.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000,box=0.000000/0.000000/9.000000/false:4.000000/16.000000/9.001000:s/0/6.000000/0.000000/10.000000/16.000000:n/0/6.000000/0.000000/10.000000/16.000000,box=0.000000/0.000000/11.000000/false:4.000000/16.000000/11.001000:s/0/6.000000/0.000000/10.000000/16.000000:n/0/6.000000/0.000000/10.000000/16.000000,box=12.000000/0.000000/7.000000/false:16.000000/16.000000/7.001000:s/0/6.000000/0.000000/10.000000/16.000000:n/0/6.000000/0.000000/10.000000/16.000000,box=13.000000/0.000000/4.000000/false:13.001000/16.000000/8.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000,box=15.000000/0.000000/4.000000/false:15.001000/16.000000/8.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000,box=12.000000/0.000000/5.000000/false:16.000000/16.000000/5.001000:s/0/6.000000/0.000000/10.000000/16.000000:n/0/6.000000/0.000000/10.000000/16.000000,box=13.000000/0.000000/5.000000:15.000000/10.000000/7.000000:u/2/7.000000/6.000000/9.000000/8.000000:d/2/7.000000/14.000000/9.000000/16.000000,box=5.000000/0.000000/1.000000:7.000000/10.000000/3.000000:u/2/7.000000/6.000000/9.000000/8.000000:d/2/7.000000/14.000000/9.000000/16.000000,box=4.000000/0.000000/1.000000/false:8.000000/16.000000/1.001000:s/2/6.000000/0.000000/10.000000/16.000000:n/2/6.000000/0.000000/10.000000/16.000000,box=7.000000/0.000000/0.000000/false:7.001000/16.000000/4.000000:w/2/6.000000/0.000000/10.000000/16.000000:e/2/6.000000/0.000000/10.000000/16.000000,box=5.000000/0.000000/0.000000/false:5.001000/16.000000/4.000000:w/2/6.000000/0.000000/10.000000/16.000000:e/2/6.000000/0.000000/10.000000/16.000000,box=4.000000/0.000000/3.000000/false:8.000000/16.000000/3.001000:s/2/6.000000/0.000000/10.000000/16.000000:n/2/6.000000/0.000000/10.000000/16.000000,box=8.000000/0.000000/15.000000/false:12.000000/16.000000/15.001000:s/2/6.000000/0.000000/10.000000/16.000000:n/2/6.000000/0.000000/10.000000/16.000000,box=9.000000/0.000000/13.000000:11.000000/10.000000/15.000000:u/2/7.000000/6.000000/9.000000/8.000000:d/2/7.000000/14.000000/9.000000/16.000000,box=8.000000/0.000000/13.000000/false:12.000000/16.000000/13.001000:s/2/6.000000/0.000000/10.000000/16.000000:n/2/6.000000/0.000000/10.000000/16.000000,box=11.000000/0.000000/12.000000/false:11.001000/16.000000/16.000000:w/2/6.000000/0.000000/10.000000/16.000000:e/2/6.000000/0.000000/10.000000/16.000000,box=9.000000/0.000000/12.000000/false:9.001000/16.000000/16.000000:w/2/6.000000/0.000000/10.000000/16.000000:e/2/6.000000/0.000000/10.000000/16.000000
|
|
||||||
modellist:id=%bonfire,box=-3.000000/0.000000/-8.000000/false:-2.999000/32.000000/24.000000/0.000000/0.000000/-22.500000/-3.000000/0.000000/-8.000000:w/0/0.000000/0.000000/16.000000/16.000000,box=19.000000/0.000000/-8.000000/false:19.001000/32.000000/24.000000/0.000000/0.000000/22.500000/19.000000/0.000000/-8.000000:e/0/0.000000/0.000000/16.000000/16.000000,box=-8.000000/0.000000/-3.000000/false:24.000000/32.000000/-2.999000/22.500000/0.000000/0.000000/-8.000000/0.000000/-3.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=-8.000000/0.000000/19.000000/false:24.000000/32.000000/19.001000/-22.500000/0.000000/0.000000/-8.000000/0.000000/19.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/0.000000/-8.000000/false:8.001000/32.000000/24.000000/0.000000/45.000000/0.000000/8.000000/0.000000/8.000000:w/1/0.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/16.000000/16.000000,box=8.000100/0.000000/-8.000000/false:8.001101/32.000000/24.000000/0.000000/-45.000000/0.000000/8.000000/0.000000/8.000000:w/1/0.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%soul_bonfire,box=-3.000000/0.000000/-8.000000/false:-2.999000/32.000000/24.000000/0.000000/0.000000/-22.500000/-3.000000/0.000000/-8.000000:w/0/0.000000/0.000000/16.000000/16.000000,box=19.000000/0.000000/-8.000000/false:19.001000/32.000000/24.000000/0.000000/0.000000/22.500000/19.000000/0.000000/-8.000000:e/0/0.000000/0.000000/16.000000/16.000000,box=-8.000000/0.000000/-3.000000/false:24.000000/32.000000/-2.999000/22.500000/0.000000/0.000000/-8.000000/0.000000/-3.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=-8.000000/0.000000/19.000000/false:24.000000/32.000000/19.001000/-22.500000/0.000000/0.000000/-8.000000/0.000000/19.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/0.000000/-8.000000/false:8.001000/32.000000/24.000000/0.000000/45.000000/0.000000/8.000000/0.000000/8.000000:w/1/0.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/16.000000/16.000000,box=8.000100/0.000000/-8.000000/false:8.001101/32.000000/24.000000/0.000000/-45.000000/0.000000/8.000000/0.000000/8.000000:w/1/0.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%brazier,state=lit:true,box=2.000000/2.000000/2.000000:14.000000/3.000000/14.000000:u90/0/2.000000/2.000000/14.000000/14.000000:d90/0/2.000000/2.000000/14.000000/14.000000,box=0.800000/2.000000/8.000000/false:15.200000/18.000000/8.001000/0.000000/45.000000/0.000000/8.000000/9.000000/8.000000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/16.000000,box=8.000000/2.000000/0.800000/false:8.001000/18.000000/15.200000/0.000000/45.000000/0.000000/8.000000/9.000000/8.000000:w/1/0.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/0.000000/2.000000:2.001000/14.000000/14.000000:w/2/2.000000/2.000000/14.000000/16.000000:e/2/2.000000/2.000000/14.000000/16.000000,box=14.000000/0.000000/2.000000:14.001000/14.000000/14.000000:w/2/2.000000/2.000000/14.000000/16.000000:e/2/2.000000/2.000000/14.000000/16.000000,box=2.000000/0.000000/1.999000:14.000000/14.000000/2.000000:s/2/2.000000/2.000000/14.000000/16.000000:n/2/2.000000/2.000000/14.000000/16.000000,box=2.000000/0.000000/13.999000:14.000000/14.000000/14.000000:s/2/2.000000/2.000000/14.000000/16.000000:n/2/2.000000/2.000000/14.000000/16.000000
|
|
||||||
modellist:id=%brazier,state=lit:false,box=2.000000/2.000000/2.000000:14.000000/3.000000/14.000000:u90/0/2.000000/2.000000/14.000000/14.000000:d90/0/2.000000/2.000000/14.000000/14.000000,box=2.000000/0.000000/2.000000:2.001000/14.000000/14.000000:w/1/2.000000/2.000000/14.000000/16.000000:e/1/2.000000/2.000000/14.000000/16.000000,box=14.000000/0.000000/2.000000:14.001000/14.000000/14.000000:w/1/2.000000/2.000000/14.000000/16.000000:e/1/2.000000/2.000000/14.000000/16.000000,box=2.000000/0.000000/1.999000:14.000000/14.000000/2.000000:s/1/2.000000/2.000000/14.000000/16.000000:n/1/2.000000/2.000000/14.000000/16.000000,box=2.000000/0.000000/13.999000:14.000000/14.000000/14.000000:s/1/2.000000/2.000000/14.000000/16.000000:n/1/2.000000/2.000000/14.000000/16.000000
|
|
||||||
modellist:id=%soul_brazier,state=lit:true,box=2.000000/2.000000/2.000000:14.000000/3.000000/14.000000:u90/0/2.000000/2.000000/14.000000/14.000000:d90/0/2.000000/2.000000/14.000000/14.000000,box=0.800000/2.000000/8.000000/false:15.200000/18.000000/8.001000/0.000000/45.000000/0.000000/8.000000/9.000000/8.000000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/16.000000,box=8.000000/2.000000/0.800000/false:8.001000/18.000000/15.200000/0.000000/45.000000/0.000000/8.000000/9.000000/8.000000:w/1/0.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/16.000000/16.000000,box=2.000000/0.000000/2.000000:2.001000/14.000000/14.000000:w/2/2.000000/2.000000/14.000000/16.000000:e/2/2.000000/2.000000/14.000000/16.000000,box=14.000000/0.000000/2.000000:14.001000/14.000000/14.000000:w/2/2.000000/2.000000/14.000000/16.000000:e/2/2.000000/2.000000/14.000000/16.000000,box=2.000000/0.000000/1.999000:14.000000/14.000000/2.000000:s/2/2.000000/2.000000/14.000000/16.000000:n/2/2.000000/2.000000/14.000000/16.000000,box=2.000000/0.000000/13.999000:14.000000/14.000000/14.000000:s/2/2.000000/2.000000/14.000000/16.000000:n/2/2.000000/2.000000/14.000000/16.000000
|
|
||||||
modellist:id=%soul_brazier,state=lit:false,box=2.000000/2.000000/2.000000:14.000000/3.000000/14.000000:u90/0/2.000000/2.000000/14.000000/14.000000:d90/0/2.000000/2.000000/14.000000/14.000000,box=2.000000/0.000000/2.000000:2.001000/14.000000/14.000000:w/1/2.000000/2.000000/14.000000/16.000000:e/1/2.000000/2.000000/14.000000/16.000000,box=14.000000/0.000000/2.000000:14.001000/14.000000/14.000000:w/1/2.000000/2.000000/14.000000/16.000000:e/1/2.000000/2.000000/14.000000/16.000000,box=2.000000/0.000000/1.999000:14.000000/14.000000/2.000000:s/1/2.000000/2.000000/14.000000/16.000000:n/1/2.000000/2.000000/14.000000/16.000000,box=2.000000/0.000000/13.999000:14.000000/14.000000/14.000000:s/1/2.000000/2.000000/14.000000/16.000000:n/1/2.000000/2.000000/14.000000/16.000000
|
|
||||||
modellist:id=%spruce_palisade,state=west:true/east:true/south:true/north:true,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%spruce_palisade,state=west:false/east:true/south:true/north:true,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%spruce_palisade,state=west:true/east:true/south:false/north:true,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%spruce_palisade,state=west:false/east:true/south:false/north:true,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%spruce_palisade,state=west:true/east:true/south:true/north:false,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%spruce_palisade,state=west:false/east:true/south:true/north:false,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%spruce_palisade,state=west:true/east:true/south:false/north:false,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%spruce_palisade,state=west:false/east:true/south:false/north:false,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%spruce_palisade,state=west:true/east:false/south:true/north:true,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%spruce_palisade,state=west:false/east:false/south:true/north:true,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%spruce_palisade,state=west:true/east:false/south:false/north:true,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%spruce_palisade,state=west:false/east:false/south:false/north:true,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000
|
|
||||||
modellist:id=%spruce_palisade,state=west:true/east:false/south:true/north:false,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%spruce_palisade,state=west:false/east:false/south:true/north:false,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%spruce_palisade,state=west:true/east:false/south:false/north:false,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%spruce_palisade,state=west:false/east:false/south:false/north:false,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000
|
|
||||||
modellist:id=%crimson_palisade,state=west:true/east:true/south:true/north:true,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%crimson_palisade,state=west:false/east:true/south:true/north:true,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%crimson_palisade,state=west:true/east:true/south:false/north:true,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%crimson_palisade,state=west:false/east:true/south:false/north:true,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%crimson_palisade,state=west:true/east:true/south:true/north:false,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%crimson_palisade,state=west:false/east:true/south:true/north:false,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%crimson_palisade,state=west:true/east:true/south:false/north:false,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%crimson_palisade,state=west:false/east:true/south:false/north:false,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%crimson_palisade,state=west:true/east:false/south:true/north:true,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%crimson_palisade,state=west:false/east:false/south:true/north:true,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%crimson_palisade,state=west:true/east:false/south:false/north:true,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%crimson_palisade,state=west:false/east:false/south:false/north:true,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000
|
|
||||||
modellist:id=%crimson_palisade,state=west:true/east:false/south:true/north:false,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%crimson_palisade,state=west:false/east:false/south:true/north:false,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%crimson_palisade,state=west:true/east:false/south:false/north:false,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%crimson_palisade,state=west:false/east:false/south:false/north:false,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000
|
|
||||||
modellist:id=%oak_palisade,state=west:true/east:true/south:true/north:true,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%oak_palisade,state=west:false/east:true/south:true/north:true,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%oak_palisade,state=west:true/east:true/south:false/north:true,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%oak_palisade,state=west:false/east:true/south:false/north:true,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%oak_palisade,state=west:true/east:true/south:true/north:false,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%oak_palisade,state=west:false/east:true/south:true/north:false,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%oak_palisade,state=west:true/east:true/south:false/north:false,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%oak_palisade,state=west:false/east:true/south:false/north:false,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%oak_palisade,state=west:true/east:false/south:true/north:true,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%oak_palisade,state=west:false/east:false/south:true/north:true,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%oak_palisade,state=west:true/east:false/south:false/north:true,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%oak_palisade,state=west:false/east:false/south:false/north:true,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000
|
|
||||||
modellist:id=%oak_palisade,state=west:true/east:false/south:true/north:false,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%oak_palisade,state=west:false/east:false/south:true/north:false,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%oak_palisade,state=west:true/east:false/south:false/north:false,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%oak_palisade,state=west:false/east:false/south:false/north:false,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000
|
|
||||||
modellist:id=%acacia_palisade,state=west:true/east:true/south:true/north:true,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%acacia_palisade,state=west:false/east:true/south:true/north:true,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%acacia_palisade,state=west:true/east:true/south:false/north:true,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%acacia_palisade,state=west:false/east:true/south:false/north:true,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%acacia_palisade,state=west:true/east:true/south:true/north:false,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%acacia_palisade,state=west:false/east:true/south:true/north:false,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%acacia_palisade,state=west:true/east:true/south:false/north:false,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%acacia_palisade,state=west:false/east:true/south:false/north:false,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%acacia_palisade,state=west:true/east:false/south:true/north:true,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%acacia_palisade,state=west:false/east:false/south:true/north:true,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%acacia_palisade,state=west:true/east:false/south:false/north:true,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%acacia_palisade,state=west:false/east:false/south:false/north:true,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000
|
|
||||||
modellist:id=%acacia_palisade,state=west:true/east:false/south:true/north:false,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%acacia_palisade,state=west:false/east:false/south:true/north:false,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%acacia_palisade,state=west:true/east:false/south:false/north:false,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%acacia_palisade,state=west:false/east:false/south:false/north:false,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000
|
|
||||||
modellist:id=%jungle_palisade,state=west:true/east:true/south:true/north:true,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%jungle_palisade,state=west:false/east:true/south:true/north:true,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%jungle_palisade,state=west:true/east:true/south:false/north:true,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%jungle_palisade,state=west:false/east:true/south:false/north:true,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%jungle_palisade,state=west:true/east:true/south:true/north:false,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%jungle_palisade,state=west:false/east:true/south:true/north:false,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%jungle_palisade,state=west:true/east:true/south:false/north:false,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%jungle_palisade,state=west:false/east:true/south:false/north:false,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%jungle_palisade,state=west:true/east:false/south:true/north:true,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%jungle_palisade,state=west:false/east:false/south:true/north:true,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%jungle_palisade,state=west:true/east:false/south:false/north:true,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%jungle_palisade,state=west:false/east:false/south:false/north:true,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000
|
|
||||||
modellist:id=%jungle_palisade,state=west:true/east:false/south:true/north:false,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%jungle_palisade,state=west:false/east:false/south:true/north:false,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%jungle_palisade,state=west:true/east:false/south:false/north:false,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%jungle_palisade,state=west:false/east:false/south:false/north:false,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000
|
|
||||||
modellist:id=%dark_oak_palisade,state=west:true/east:true/south:true/north:true,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%dark_oak_palisade,state=west:false/east:true/south:true/north:true,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%dark_oak_palisade,state=west:true/east:true/south:false/north:true,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%dark_oak_palisade,state=west:false/east:true/south:false/north:true,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%dark_oak_palisade,state=west:true/east:true/south:true/north:false,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%dark_oak_palisade,state=west:false/east:true/south:true/north:false,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%dark_oak_palisade,state=west:true/east:true/south:false/north:false,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%dark_oak_palisade,state=west:false/east:true/south:false/north:false,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%dark_oak_palisade,state=west:true/east:false/south:true/north:true,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%dark_oak_palisade,state=west:false/east:false/south:true/north:true,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%dark_oak_palisade,state=west:true/east:false/south:false/north:true,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%dark_oak_palisade,state=west:false/east:false/south:false/north:true,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000
|
|
||||||
modellist:id=%dark_oak_palisade,state=west:true/east:false/south:true/north:false,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%dark_oak_palisade,state=west:false/east:false/south:true/north:false,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%dark_oak_palisade,state=west:true/east:false/south:false/north:false,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%dark_oak_palisade,state=west:false/east:false/south:false/north:false,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000
|
|
||||||
modellist:id=%warped_palisade,state=west:true/east:true/south:true/north:true,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%warped_palisade,state=west:false/east:true/south:true/north:true,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%warped_palisade,state=west:true/east:true/south:false/north:true,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%warped_palisade,state=west:false/east:true/south:false/north:true,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%warped_palisade,state=west:true/east:true/south:true/north:false,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%warped_palisade,state=west:false/east:true/south:true/north:false,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%warped_palisade,state=west:true/east:true/south:false/north:false,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%warped_palisade,state=west:false/east:true/south:false/north:false,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%warped_palisade,state=west:true/east:false/south:true/north:true,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%warped_palisade,state=west:false/east:false/south:true/north:true,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%warped_palisade,state=west:true/east:false/south:false/north:true,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%warped_palisade,state=west:false/east:false/south:false/north:true,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000
|
|
||||||
modellist:id=%warped_palisade,state=west:true/east:false/south:true/north:false,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%warped_palisade,state=west:false/east:false/south:true/north:false,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%warped_palisade,state=west:true/east:false/south:false/north:false,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%warped_palisade,state=west:false/east:false/south:false/north:false,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000
|
|
||||||
modellist:id=%birch_palisade,state=west:true/east:true/south:true/north:true,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%birch_palisade,state=west:false/east:true/south:true/north:true,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%birch_palisade,state=west:true/east:true/south:false/north:true,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%birch_palisade,state=west:false/east:true/south:false/north:true,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%birch_palisade,state=west:true/east:true/south:true/north:false,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%birch_palisade,state=west:false/east:true/south:true/north:false,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%birch_palisade,state=west:true/east:true/south:false/north:false,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%birch_palisade,state=west:false/east:true/south:false/north:false,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%birch_palisade,state=west:true/east:false/south:true/north:true,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%birch_palisade,state=west:false/east:false/south:true/north:true,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%birch_palisade,state=west:true/east:false/south:false/north:true,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%birch_palisade,state=west:false/east:false/south:false/north:true,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000
|
|
||||||
modellist:id=%birch_palisade,state=west:true/east:false/south:true/north:false,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%birch_palisade,state=west:false/east:false/south:true/north:false,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%birch_palisade,state=west:true/east:false/south:false/north:false,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000,box=5.000000/0.000000/0.000000:11.000000/16.000000/5.000000:u/0/5.000000/0.000000/11.000000/5.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/0.000000/0.000000/5.000000/16.000000:e/1/11.000000/0.000000/16.000000/16.000000:d/0/5.000000/11.000000/11.000000/16.000000:n/1/5.000000/0.000000/11.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%birch_palisade,state=west:false/east:false/south:false/north:false,box=5.000000/0.000000/5.000000:11.000000/16.000000/11.000000:u/0/5.000000/5.000000/11.000000/11.000000:s/1/5.000000/0.000000/11.000000/16.000000:w/1/5.000000/0.000000/11.000000/16.000000:e/1/5.000000/0.000000/11.000000/16.000000:d/0/5.000000/5.000000/11.000000/11.000000:n/1/5.000000/0.000000/11.000000/16.000000
|
|
||||||
modellist:id=%spruce_support,state=facing:north/horizontal:big/vertical:big/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%spruce_support,state=facing:north/horizontal:big/vertical:small/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%spruce_support,state=facing:north/horizontal:big/vertical:hidden/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%spruce_support,state=facing:north/horizontal:big/vertical:big/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%spruce_support,state=facing:north/horizontal:big/vertical:small/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%spruce_support,state=facing:north/horizontal:big/vertical:hidden/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%spruce_support,state=facing:north/horizontal:small/vertical:big/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%spruce_support,state=facing:north/horizontal:small/vertical:small/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%spruce_support,state=facing:north/horizontal:small/vertical:hidden/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000
|
|
||||||
modellist:id=%spruce_support,state=facing:north/horizontal:small/vertical:big/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%spruce_support,state=facing:north/horizontal:small/vertical:small/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%spruce_support,state=facing:north/horizontal:small/vertical:hidden/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000
|
|
||||||
modellist:id=%spruce_support,state=facing:north/horizontal:hidden/vertical:big/up:true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%spruce_support,state=facing:north/horizontal:hidden/vertical:small/up:true,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000
|
|
||||||
modellist:id=%spruce_support,state=facing:north/horizontal:hidden/vertical:hidden/up:true
|
|
||||||
modellist:id=%spruce_support,state=facing:north/horizontal:hidden/vertical:big/up:false,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%spruce_support,state=facing:north/horizontal:hidden/vertical:small/up:false,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000
|
|
||||||
modellist:id=%spruce_support,state=facing:north/horizontal:hidden/vertical:hidden/up:false
|
|
||||||
modellist:id=%spruce_support,state=facing:south/horizontal:big/vertical:big/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000:R/0/180/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%spruce_support,state=facing:south/horizontal:big/vertical:small/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000:R/0/180/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/180/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%spruce_support,state=facing:south/horizontal:big/vertical:hidden/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%spruce_support,state=facing:south/horizontal:big/vertical:big/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%spruce_support,state=facing:south/horizontal:big/vertical:small/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/180/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%spruce_support,state=facing:south/horizontal:big/vertical:hidden/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%spruce_support,state=facing:south/horizontal:small/vertical:big/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000:R/0/180/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%spruce_support,state=facing:south/horizontal:small/vertical:small/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000:R/0/180/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/180/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%spruce_support,state=facing:south/horizontal:small/vertical:hidden/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%spruce_support,state=facing:south/horizontal:small/vertical:big/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000:R/0/180/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%spruce_support,state=facing:south/horizontal:small/vertical:small/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000:R/0/180/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/180/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%spruce_support,state=facing:south/horizontal:small/vertical:hidden/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%spruce_support,state=facing:south/horizontal:hidden/vertical:big/up:true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%spruce_support,state=facing:south/horizontal:hidden/vertical:small/up:true,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%spruce_support,state=facing:south/horizontal:hidden/vertical:hidden/up:true
|
|
||||||
modellist:id=%spruce_support,state=facing:south/horizontal:hidden/vertical:big/up:false,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%spruce_support,state=facing:south/horizontal:hidden/vertical:small/up:false,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%spruce_support,state=facing:south/horizontal:hidden/vertical:hidden/up:false
|
|
||||||
modellist:id=%spruce_support,state=facing:west/horizontal:big/vertical:big/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000:R/0/270/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%spruce_support,state=facing:west/horizontal:big/vertical:small/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000:R/0/270/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/270/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%spruce_support,state=facing:west/horizontal:big/vertical:hidden/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%spruce_support,state=facing:west/horizontal:big/vertical:big/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%spruce_support,state=facing:west/horizontal:big/vertical:small/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/270/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%spruce_support,state=facing:west/horizontal:big/vertical:hidden/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%spruce_support,state=facing:west/horizontal:small/vertical:big/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000:R/0/270/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%spruce_support,state=facing:west/horizontal:small/vertical:small/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000:R/0/270/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/270/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%spruce_support,state=facing:west/horizontal:small/vertical:hidden/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%spruce_support,state=facing:west/horizontal:small/vertical:big/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000:R/0/270/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%spruce_support,state=facing:west/horizontal:small/vertical:small/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000:R/0/270/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/270/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%spruce_support,state=facing:west/horizontal:small/vertical:hidden/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%spruce_support,state=facing:west/horizontal:hidden/vertical:big/up:true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%spruce_support,state=facing:west/horizontal:hidden/vertical:small/up:true,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%spruce_support,state=facing:west/horizontal:hidden/vertical:hidden/up:true
|
|
||||||
modellist:id=%spruce_support,state=facing:west/horizontal:hidden/vertical:big/up:false,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%spruce_support,state=facing:west/horizontal:hidden/vertical:small/up:false,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%spruce_support,state=facing:west/horizontal:hidden/vertical:hidden/up:false
|
|
||||||
modellist:id=%spruce_support,state=facing:east/horizontal:big/vertical:big/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000:R/0/90/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%spruce_support,state=facing:east/horizontal:big/vertical:small/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000:R/0/90/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/90/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%spruce_support,state=facing:east/horizontal:big/vertical:hidden/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%spruce_support,state=facing:east/horizontal:big/vertical:big/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%spruce_support,state=facing:east/horizontal:big/vertical:small/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/90/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%spruce_support,state=facing:east/horizontal:big/vertical:hidden/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%spruce_support,state=facing:east/horizontal:small/vertical:big/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000:R/0/90/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%spruce_support,state=facing:east/horizontal:small/vertical:small/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000:R/0/90/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/90/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%spruce_support,state=facing:east/horizontal:small/vertical:hidden/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%spruce_support,state=facing:east/horizontal:small/vertical:big/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000:R/0/90/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%spruce_support,state=facing:east/horizontal:small/vertical:small/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000:R/0/90/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/90/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%spruce_support,state=facing:east/horizontal:small/vertical:hidden/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%spruce_support,state=facing:east/horizontal:hidden/vertical:big/up:true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%spruce_support,state=facing:east/horizontal:hidden/vertical:small/up:true,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%spruce_support,state=facing:east/horizontal:hidden/vertical:hidden/up:true
|
|
||||||
modellist:id=%spruce_support,state=facing:east/horizontal:hidden/vertical:big/up:false,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%spruce_support,state=facing:east/horizontal:hidden/vertical:small/up:false,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%spruce_support,state=facing:east/horizontal:hidden/vertical:hidden/up:false
|
|
||||||
modellist:id=%crimson_support,state=facing:north/horizontal:big/vertical:big/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%crimson_support,state=facing:north/horizontal:big/vertical:small/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%crimson_support,state=facing:north/horizontal:big/vertical:hidden/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%crimson_support,state=facing:north/horizontal:big/vertical:big/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%crimson_support,state=facing:north/horizontal:big/vertical:small/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%crimson_support,state=facing:north/horizontal:big/vertical:hidden/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%crimson_support,state=facing:north/horizontal:small/vertical:big/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%crimson_support,state=facing:north/horizontal:small/vertical:small/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%crimson_support,state=facing:north/horizontal:small/vertical:hidden/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000
|
|
||||||
modellist:id=%crimson_support,state=facing:north/horizontal:small/vertical:big/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%crimson_support,state=facing:north/horizontal:small/vertical:small/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%crimson_support,state=facing:north/horizontal:small/vertical:hidden/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000
|
|
||||||
modellist:id=%crimson_support,state=facing:north/horizontal:hidden/vertical:big/up:true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%crimson_support,state=facing:north/horizontal:hidden/vertical:small/up:true,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000
|
|
||||||
modellist:id=%crimson_support,state=facing:north/horizontal:hidden/vertical:hidden/up:true
|
|
||||||
modellist:id=%crimson_support,state=facing:north/horizontal:hidden/vertical:big/up:false,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%crimson_support,state=facing:north/horizontal:hidden/vertical:small/up:false,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000
|
|
||||||
modellist:id=%crimson_support,state=facing:north/horizontal:hidden/vertical:hidden/up:false
|
|
||||||
modellist:id=%crimson_support,state=facing:south/horizontal:big/vertical:big/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000:R/0/180/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%crimson_support,state=facing:south/horizontal:big/vertical:small/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000:R/0/180/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/180/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%crimson_support,state=facing:south/horizontal:big/vertical:hidden/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%crimson_support,state=facing:south/horizontal:big/vertical:big/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%crimson_support,state=facing:south/horizontal:big/vertical:small/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/180/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%crimson_support,state=facing:south/horizontal:big/vertical:hidden/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%crimson_support,state=facing:south/horizontal:small/vertical:big/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000:R/0/180/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%crimson_support,state=facing:south/horizontal:small/vertical:small/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000:R/0/180/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/180/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%crimson_support,state=facing:south/horizontal:small/vertical:hidden/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%crimson_support,state=facing:south/horizontal:small/vertical:big/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000:R/0/180/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%crimson_support,state=facing:south/horizontal:small/vertical:small/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000:R/0/180/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/180/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%crimson_support,state=facing:south/horizontal:small/vertical:hidden/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%crimson_support,state=facing:south/horizontal:hidden/vertical:big/up:true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%crimson_support,state=facing:south/horizontal:hidden/vertical:small/up:true,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%crimson_support,state=facing:south/horizontal:hidden/vertical:hidden/up:true
|
|
||||||
modellist:id=%crimson_support,state=facing:south/horizontal:hidden/vertical:big/up:false,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%crimson_support,state=facing:south/horizontal:hidden/vertical:small/up:false,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%crimson_support,state=facing:south/horizontal:hidden/vertical:hidden/up:false
|
|
||||||
modellist:id=%crimson_support,state=facing:west/horizontal:big/vertical:big/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000:R/0/270/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%crimson_support,state=facing:west/horizontal:big/vertical:small/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000:R/0/270/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/270/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%crimson_support,state=facing:west/horizontal:big/vertical:hidden/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%crimson_support,state=facing:west/horizontal:big/vertical:big/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%crimson_support,state=facing:west/horizontal:big/vertical:small/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/270/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%crimson_support,state=facing:west/horizontal:big/vertical:hidden/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%crimson_support,state=facing:west/horizontal:small/vertical:big/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000:R/0/270/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%crimson_support,state=facing:west/horizontal:small/vertical:small/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000:R/0/270/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/270/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%crimson_support,state=facing:west/horizontal:small/vertical:hidden/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%crimson_support,state=facing:west/horizontal:small/vertical:big/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000:R/0/270/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%crimson_support,state=facing:west/horizontal:small/vertical:small/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000:R/0/270/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/270/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%crimson_support,state=facing:west/horizontal:small/vertical:hidden/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%crimson_support,state=facing:west/horizontal:hidden/vertical:big/up:true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%crimson_support,state=facing:west/horizontal:hidden/vertical:small/up:true,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%crimson_support,state=facing:west/horizontal:hidden/vertical:hidden/up:true
|
|
||||||
modellist:id=%crimson_support,state=facing:west/horizontal:hidden/vertical:big/up:false,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%crimson_support,state=facing:west/horizontal:hidden/vertical:small/up:false,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%crimson_support,state=facing:west/horizontal:hidden/vertical:hidden/up:false
|
|
||||||
modellist:id=%crimson_support,state=facing:east/horizontal:big/vertical:big/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000:R/0/90/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%crimson_support,state=facing:east/horizontal:big/vertical:small/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000:R/0/90/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/90/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%crimson_support,state=facing:east/horizontal:big/vertical:hidden/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%crimson_support,state=facing:east/horizontal:big/vertical:big/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%crimson_support,state=facing:east/horizontal:big/vertical:small/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/90/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%crimson_support,state=facing:east/horizontal:big/vertical:hidden/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%crimson_support,state=facing:east/horizontal:small/vertical:big/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000:R/0/90/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%crimson_support,state=facing:east/horizontal:small/vertical:small/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000:R/0/90/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/90/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%crimson_support,state=facing:east/horizontal:small/vertical:hidden/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%crimson_support,state=facing:east/horizontal:small/vertical:big/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000:R/0/90/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%crimson_support,state=facing:east/horizontal:small/vertical:small/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000:R/0/90/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/90/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%crimson_support,state=facing:east/horizontal:small/vertical:hidden/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%crimson_support,state=facing:east/horizontal:hidden/vertical:big/up:true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%crimson_support,state=facing:east/horizontal:hidden/vertical:small/up:true,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%crimson_support,state=facing:east/horizontal:hidden/vertical:hidden/up:true
|
|
||||||
modellist:id=%crimson_support,state=facing:east/horizontal:hidden/vertical:big/up:false,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%crimson_support,state=facing:east/horizontal:hidden/vertical:small/up:false,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%crimson_support,state=facing:east/horizontal:hidden/vertical:hidden/up:false
|
|
||||||
modellist:id=%oak_support,state=facing:north/horizontal:big/vertical:big/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%oak_support,state=facing:north/horizontal:big/vertical:small/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%oak_support,state=facing:north/horizontal:big/vertical:hidden/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%oak_support,state=facing:north/horizontal:big/vertical:big/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%oak_support,state=facing:north/horizontal:big/vertical:small/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%oak_support,state=facing:north/horizontal:big/vertical:hidden/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%oak_support,state=facing:north/horizontal:small/vertical:big/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%oak_support,state=facing:north/horizontal:small/vertical:small/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%oak_support,state=facing:north/horizontal:small/vertical:hidden/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000
|
|
||||||
modellist:id=%oak_support,state=facing:north/horizontal:small/vertical:big/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%oak_support,state=facing:north/horizontal:small/vertical:small/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%oak_support,state=facing:north/horizontal:small/vertical:hidden/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000
|
|
||||||
modellist:id=%oak_support,state=facing:north/horizontal:hidden/vertical:big/up:true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%oak_support,state=facing:north/horizontal:hidden/vertical:small/up:true,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000
|
|
||||||
modellist:id=%oak_support,state=facing:north/horizontal:hidden/vertical:hidden/up:true
|
|
||||||
modellist:id=%oak_support,state=facing:north/horizontal:hidden/vertical:big/up:false,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%oak_support,state=facing:north/horizontal:hidden/vertical:small/up:false,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000
|
|
||||||
modellist:id=%oak_support,state=facing:north/horizontal:hidden/vertical:hidden/up:false
|
|
||||||
modellist:id=%oak_support,state=facing:south/horizontal:big/vertical:big/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000:R/0/180/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%oak_support,state=facing:south/horizontal:big/vertical:small/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000:R/0/180/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/180/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%oak_support,state=facing:south/horizontal:big/vertical:hidden/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%oak_support,state=facing:south/horizontal:big/vertical:big/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%oak_support,state=facing:south/horizontal:big/vertical:small/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/180/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%oak_support,state=facing:south/horizontal:big/vertical:hidden/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%oak_support,state=facing:south/horizontal:small/vertical:big/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000:R/0/180/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%oak_support,state=facing:south/horizontal:small/vertical:small/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000:R/0/180/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/180/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%oak_support,state=facing:south/horizontal:small/vertical:hidden/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%oak_support,state=facing:south/horizontal:small/vertical:big/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000:R/0/180/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%oak_support,state=facing:south/horizontal:small/vertical:small/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000:R/0/180/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/180/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%oak_support,state=facing:south/horizontal:small/vertical:hidden/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%oak_support,state=facing:south/horizontal:hidden/vertical:big/up:true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%oak_support,state=facing:south/horizontal:hidden/vertical:small/up:true,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%oak_support,state=facing:south/horizontal:hidden/vertical:hidden/up:true
|
|
||||||
modellist:id=%oak_support,state=facing:south/horizontal:hidden/vertical:big/up:false,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%oak_support,state=facing:south/horizontal:hidden/vertical:small/up:false,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%oak_support,state=facing:south/horizontal:hidden/vertical:hidden/up:false
|
|
||||||
modellist:id=%oak_support,state=facing:west/horizontal:big/vertical:big/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000:R/0/270/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%oak_support,state=facing:west/horizontal:big/vertical:small/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000:R/0/270/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/270/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%oak_support,state=facing:west/horizontal:big/vertical:hidden/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%oak_support,state=facing:west/horizontal:big/vertical:big/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%oak_support,state=facing:west/horizontal:big/vertical:small/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/270/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%oak_support,state=facing:west/horizontal:big/vertical:hidden/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%oak_support,state=facing:west/horizontal:small/vertical:big/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000:R/0/270/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%oak_support,state=facing:west/horizontal:small/vertical:small/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000:R/0/270/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/270/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%oak_support,state=facing:west/horizontal:small/vertical:hidden/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%oak_support,state=facing:west/horizontal:small/vertical:big/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000:R/0/270/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%oak_support,state=facing:west/horizontal:small/vertical:small/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000:R/0/270/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/270/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%oak_support,state=facing:west/horizontal:small/vertical:hidden/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%oak_support,state=facing:west/horizontal:hidden/vertical:big/up:true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%oak_support,state=facing:west/horizontal:hidden/vertical:small/up:true,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%oak_support,state=facing:west/horizontal:hidden/vertical:hidden/up:true
|
|
||||||
modellist:id=%oak_support,state=facing:west/horizontal:hidden/vertical:big/up:false,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%oak_support,state=facing:west/horizontal:hidden/vertical:small/up:false,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%oak_support,state=facing:west/horizontal:hidden/vertical:hidden/up:false
|
|
||||||
modellist:id=%oak_support,state=facing:east/horizontal:big/vertical:big/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000:R/0/90/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%oak_support,state=facing:east/horizontal:big/vertical:small/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000:R/0/90/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/90/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%oak_support,state=facing:east/horizontal:big/vertical:hidden/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%oak_support,state=facing:east/horizontal:big/vertical:big/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%oak_support,state=facing:east/horizontal:big/vertical:small/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/90/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%oak_support,state=facing:east/horizontal:big/vertical:hidden/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%oak_support,state=facing:east/horizontal:small/vertical:big/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000:R/0/90/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%oak_support,state=facing:east/horizontal:small/vertical:small/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000:R/0/90/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/90/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%oak_support,state=facing:east/horizontal:small/vertical:hidden/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%oak_support,state=facing:east/horizontal:small/vertical:big/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000:R/0/90/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%oak_support,state=facing:east/horizontal:small/vertical:small/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000:R/0/90/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/90/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%oak_support,state=facing:east/horizontal:small/vertical:hidden/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%oak_support,state=facing:east/horizontal:hidden/vertical:big/up:true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%oak_support,state=facing:east/horizontal:hidden/vertical:small/up:true,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%oak_support,state=facing:east/horizontal:hidden/vertical:hidden/up:true
|
|
||||||
modellist:id=%oak_support,state=facing:east/horizontal:hidden/vertical:big/up:false,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%oak_support,state=facing:east/horizontal:hidden/vertical:small/up:false,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%oak_support,state=facing:east/horizontal:hidden/vertical:hidden/up:false
|
|
||||||
modellist:id=%acacia_support,state=facing:north/horizontal:big/vertical:big/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%acacia_support,state=facing:north/horizontal:big/vertical:small/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%acacia_support,state=facing:north/horizontal:big/vertical:hidden/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%acacia_support,state=facing:north/horizontal:big/vertical:big/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%acacia_support,state=facing:north/horizontal:big/vertical:small/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%acacia_support,state=facing:north/horizontal:big/vertical:hidden/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%acacia_support,state=facing:north/horizontal:small/vertical:big/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%acacia_support,state=facing:north/horizontal:small/vertical:small/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%acacia_support,state=facing:north/horizontal:small/vertical:hidden/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000
|
|
||||||
modellist:id=%acacia_support,state=facing:north/horizontal:small/vertical:big/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%acacia_support,state=facing:north/horizontal:small/vertical:small/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%acacia_support,state=facing:north/horizontal:small/vertical:hidden/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000
|
|
||||||
modellist:id=%acacia_support,state=facing:north/horizontal:hidden/vertical:big/up:true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%acacia_support,state=facing:north/horizontal:hidden/vertical:small/up:true,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000
|
|
||||||
modellist:id=%acacia_support,state=facing:north/horizontal:hidden/vertical:hidden/up:true
|
|
||||||
modellist:id=%acacia_support,state=facing:north/horizontal:hidden/vertical:big/up:false,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%acacia_support,state=facing:north/horizontal:hidden/vertical:small/up:false,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000
|
|
||||||
modellist:id=%acacia_support,state=facing:north/horizontal:hidden/vertical:hidden/up:false
|
|
||||||
modellist:id=%acacia_support,state=facing:south/horizontal:big/vertical:big/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000:R/0/180/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%acacia_support,state=facing:south/horizontal:big/vertical:small/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000:R/0/180/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/180/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%acacia_support,state=facing:south/horizontal:big/vertical:hidden/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%acacia_support,state=facing:south/horizontal:big/vertical:big/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%acacia_support,state=facing:south/horizontal:big/vertical:small/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/180/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%acacia_support,state=facing:south/horizontal:big/vertical:hidden/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%acacia_support,state=facing:south/horizontal:small/vertical:big/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000:R/0/180/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%acacia_support,state=facing:south/horizontal:small/vertical:small/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000:R/0/180/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/180/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%acacia_support,state=facing:south/horizontal:small/vertical:hidden/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%acacia_support,state=facing:south/horizontal:small/vertical:big/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000:R/0/180/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%acacia_support,state=facing:south/horizontal:small/vertical:small/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000:R/0/180/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/180/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%acacia_support,state=facing:south/horizontal:small/vertical:hidden/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%acacia_support,state=facing:south/horizontal:hidden/vertical:big/up:true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%acacia_support,state=facing:south/horizontal:hidden/vertical:small/up:true,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%acacia_support,state=facing:south/horizontal:hidden/vertical:hidden/up:true
|
|
||||||
modellist:id=%acacia_support,state=facing:south/horizontal:hidden/vertical:big/up:false,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%acacia_support,state=facing:south/horizontal:hidden/vertical:small/up:false,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%acacia_support,state=facing:south/horizontal:hidden/vertical:hidden/up:false
|
|
||||||
modellist:id=%acacia_support,state=facing:west/horizontal:big/vertical:big/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000:R/0/270/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%acacia_support,state=facing:west/horizontal:big/vertical:small/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000:R/0/270/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/270/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%acacia_support,state=facing:west/horizontal:big/vertical:hidden/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%acacia_support,state=facing:west/horizontal:big/vertical:big/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%acacia_support,state=facing:west/horizontal:big/vertical:small/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/270/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%acacia_support,state=facing:west/horizontal:big/vertical:hidden/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%acacia_support,state=facing:west/horizontal:small/vertical:big/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000:R/0/270/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%acacia_support,state=facing:west/horizontal:small/vertical:small/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000:R/0/270/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/270/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%acacia_support,state=facing:west/horizontal:small/vertical:hidden/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%acacia_support,state=facing:west/horizontal:small/vertical:big/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000:R/0/270/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%acacia_support,state=facing:west/horizontal:small/vertical:small/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000:R/0/270/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/270/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%acacia_support,state=facing:west/horizontal:small/vertical:hidden/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%acacia_support,state=facing:west/horizontal:hidden/vertical:big/up:true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%acacia_support,state=facing:west/horizontal:hidden/vertical:small/up:true,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%acacia_support,state=facing:west/horizontal:hidden/vertical:hidden/up:true
|
|
||||||
modellist:id=%acacia_support,state=facing:west/horizontal:hidden/vertical:big/up:false,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%acacia_support,state=facing:west/horizontal:hidden/vertical:small/up:false,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%acacia_support,state=facing:west/horizontal:hidden/vertical:hidden/up:false
|
|
||||||
modellist:id=%acacia_support,state=facing:east/horizontal:big/vertical:big/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000:R/0/90/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%acacia_support,state=facing:east/horizontal:big/vertical:small/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000:R/0/90/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/90/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%acacia_support,state=facing:east/horizontal:big/vertical:hidden/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%acacia_support,state=facing:east/horizontal:big/vertical:big/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%acacia_support,state=facing:east/horizontal:big/vertical:small/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/90/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%acacia_support,state=facing:east/horizontal:big/vertical:hidden/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%acacia_support,state=facing:east/horizontal:small/vertical:big/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000:R/0/90/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%acacia_support,state=facing:east/horizontal:small/vertical:small/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000:R/0/90/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/90/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%acacia_support,state=facing:east/horizontal:small/vertical:hidden/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%acacia_support,state=facing:east/horizontal:small/vertical:big/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000:R/0/90/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%acacia_support,state=facing:east/horizontal:small/vertical:small/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000:R/0/90/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/90/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%acacia_support,state=facing:east/horizontal:small/vertical:hidden/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%acacia_support,state=facing:east/horizontal:hidden/vertical:big/up:true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%acacia_support,state=facing:east/horizontal:hidden/vertical:small/up:true,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%acacia_support,state=facing:east/horizontal:hidden/vertical:hidden/up:true
|
|
||||||
modellist:id=%acacia_support,state=facing:east/horizontal:hidden/vertical:big/up:false,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%acacia_support,state=facing:east/horizontal:hidden/vertical:small/up:false,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%acacia_support,state=facing:east/horizontal:hidden/vertical:hidden/up:false
|
|
||||||
modellist:id=%jungle_support,state=facing:north/horizontal:big/vertical:big/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%jungle_support,state=facing:north/horizontal:big/vertical:small/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%jungle_support,state=facing:north/horizontal:big/vertical:hidden/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%jungle_support,state=facing:north/horizontal:big/vertical:big/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%jungle_support,state=facing:north/horizontal:big/vertical:small/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%jungle_support,state=facing:north/horizontal:big/vertical:hidden/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%jungle_support,state=facing:north/horizontal:small/vertical:big/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%jungle_support,state=facing:north/horizontal:small/vertical:small/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%jungle_support,state=facing:north/horizontal:small/vertical:hidden/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000
|
|
||||||
modellist:id=%jungle_support,state=facing:north/horizontal:small/vertical:big/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%jungle_support,state=facing:north/horizontal:small/vertical:small/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%jungle_support,state=facing:north/horizontal:small/vertical:hidden/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000
|
|
||||||
modellist:id=%jungle_support,state=facing:north/horizontal:hidden/vertical:big/up:true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%jungle_support,state=facing:north/horizontal:hidden/vertical:small/up:true,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000
|
|
||||||
modellist:id=%jungle_support,state=facing:north/horizontal:hidden/vertical:hidden/up:true
|
|
||||||
modellist:id=%jungle_support,state=facing:north/horizontal:hidden/vertical:big/up:false,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%jungle_support,state=facing:north/horizontal:hidden/vertical:small/up:false,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000
|
|
||||||
modellist:id=%jungle_support,state=facing:north/horizontal:hidden/vertical:hidden/up:false
|
|
||||||
modellist:id=%jungle_support,state=facing:south/horizontal:big/vertical:big/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000:R/0/180/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%jungle_support,state=facing:south/horizontal:big/vertical:small/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000:R/0/180/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/180/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%jungle_support,state=facing:south/horizontal:big/vertical:hidden/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%jungle_support,state=facing:south/horizontal:big/vertical:big/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%jungle_support,state=facing:south/horizontal:big/vertical:small/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/180/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%jungle_support,state=facing:south/horizontal:big/vertical:hidden/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%jungle_support,state=facing:south/horizontal:small/vertical:big/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000:R/0/180/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%jungle_support,state=facing:south/horizontal:small/vertical:small/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000:R/0/180/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/180/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%jungle_support,state=facing:south/horizontal:small/vertical:hidden/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%jungle_support,state=facing:south/horizontal:small/vertical:big/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000:R/0/180/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%jungle_support,state=facing:south/horizontal:small/vertical:small/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000:R/0/180/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/180/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%jungle_support,state=facing:south/horizontal:small/vertical:hidden/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%jungle_support,state=facing:south/horizontal:hidden/vertical:big/up:true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%jungle_support,state=facing:south/horizontal:hidden/vertical:small/up:true,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%jungle_support,state=facing:south/horizontal:hidden/vertical:hidden/up:true
|
|
||||||
modellist:id=%jungle_support,state=facing:south/horizontal:hidden/vertical:big/up:false,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%jungle_support,state=facing:south/horizontal:hidden/vertical:small/up:false,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%jungle_support,state=facing:south/horizontal:hidden/vertical:hidden/up:false
|
|
||||||
modellist:id=%jungle_support,state=facing:west/horizontal:big/vertical:big/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000:R/0/270/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%jungle_support,state=facing:west/horizontal:big/vertical:small/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000:R/0/270/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/270/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%jungle_support,state=facing:west/horizontal:big/vertical:hidden/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%jungle_support,state=facing:west/horizontal:big/vertical:big/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%jungle_support,state=facing:west/horizontal:big/vertical:small/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/270/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%jungle_support,state=facing:west/horizontal:big/vertical:hidden/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%jungle_support,state=facing:west/horizontal:small/vertical:big/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000:R/0/270/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%jungle_support,state=facing:west/horizontal:small/vertical:small/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000:R/0/270/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/270/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%jungle_support,state=facing:west/horizontal:small/vertical:hidden/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%jungle_support,state=facing:west/horizontal:small/vertical:big/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000:R/0/270/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%jungle_support,state=facing:west/horizontal:small/vertical:small/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000:R/0/270/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/270/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%jungle_support,state=facing:west/horizontal:small/vertical:hidden/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%jungle_support,state=facing:west/horizontal:hidden/vertical:big/up:true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%jungle_support,state=facing:west/horizontal:hidden/vertical:small/up:true,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%jungle_support,state=facing:west/horizontal:hidden/vertical:hidden/up:true
|
|
||||||
modellist:id=%jungle_support,state=facing:west/horizontal:hidden/vertical:big/up:false,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%jungle_support,state=facing:west/horizontal:hidden/vertical:small/up:false,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%jungle_support,state=facing:west/horizontal:hidden/vertical:hidden/up:false
|
|
||||||
modellist:id=%jungle_support,state=facing:east/horizontal:big/vertical:big/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000:R/0/90/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%jungle_support,state=facing:east/horizontal:big/vertical:small/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000:R/0/90/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/90/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%jungle_support,state=facing:east/horizontal:big/vertical:hidden/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%jungle_support,state=facing:east/horizontal:big/vertical:big/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%jungle_support,state=facing:east/horizontal:big/vertical:small/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/90/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%jungle_support,state=facing:east/horizontal:big/vertical:hidden/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%jungle_support,state=facing:east/horizontal:small/vertical:big/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000:R/0/90/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%jungle_support,state=facing:east/horizontal:small/vertical:small/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000:R/0/90/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/90/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%jungle_support,state=facing:east/horizontal:small/vertical:hidden/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%jungle_support,state=facing:east/horizontal:small/vertical:big/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000:R/0/90/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%jungle_support,state=facing:east/horizontal:small/vertical:small/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000:R/0/90/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/90/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%jungle_support,state=facing:east/horizontal:small/vertical:hidden/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%jungle_support,state=facing:east/horizontal:hidden/vertical:big/up:true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%jungle_support,state=facing:east/horizontal:hidden/vertical:small/up:true,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%jungle_support,state=facing:east/horizontal:hidden/vertical:hidden/up:true
|
|
||||||
modellist:id=%jungle_support,state=facing:east/horizontal:hidden/vertical:big/up:false,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%jungle_support,state=facing:east/horizontal:hidden/vertical:small/up:false,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%jungle_support,state=facing:east/horizontal:hidden/vertical:hidden/up:false
|
|
||||||
modellist:id=%dark_oak_support,state=facing:north/horizontal:big/vertical:big/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%dark_oak_support,state=facing:north/horizontal:big/vertical:small/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%dark_oak_support,state=facing:north/horizontal:big/vertical:hidden/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%dark_oak_support,state=facing:north/horizontal:big/vertical:big/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%dark_oak_support,state=facing:north/horizontal:big/vertical:small/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%dark_oak_support,state=facing:north/horizontal:big/vertical:hidden/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%dark_oak_support,state=facing:north/horizontal:small/vertical:big/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%dark_oak_support,state=facing:north/horizontal:small/vertical:small/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%dark_oak_support,state=facing:north/horizontal:small/vertical:hidden/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000
|
|
||||||
modellist:id=%dark_oak_support,state=facing:north/horizontal:small/vertical:big/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%dark_oak_support,state=facing:north/horizontal:small/vertical:small/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%dark_oak_support,state=facing:north/horizontal:small/vertical:hidden/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000
|
|
||||||
modellist:id=%dark_oak_support,state=facing:north/horizontal:hidden/vertical:big/up:true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%dark_oak_support,state=facing:north/horizontal:hidden/vertical:small/up:true,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000
|
|
||||||
modellist:id=%dark_oak_support,state=facing:north/horizontal:hidden/vertical:hidden/up:true
|
|
||||||
modellist:id=%dark_oak_support,state=facing:north/horizontal:hidden/vertical:big/up:false,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%dark_oak_support,state=facing:north/horizontal:hidden/vertical:small/up:false,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000
|
|
||||||
modellist:id=%dark_oak_support,state=facing:north/horizontal:hidden/vertical:hidden/up:false
|
|
||||||
modellist:id=%dark_oak_support,state=facing:south/horizontal:big/vertical:big/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000:R/0/180/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%dark_oak_support,state=facing:south/horizontal:big/vertical:small/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000:R/0/180/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/180/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%dark_oak_support,state=facing:south/horizontal:big/vertical:hidden/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%dark_oak_support,state=facing:south/horizontal:big/vertical:big/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%dark_oak_support,state=facing:south/horizontal:big/vertical:small/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/180/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%dark_oak_support,state=facing:south/horizontal:big/vertical:hidden/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%dark_oak_support,state=facing:south/horizontal:small/vertical:big/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000:R/0/180/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%dark_oak_support,state=facing:south/horizontal:small/vertical:small/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000:R/0/180/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/180/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%dark_oak_support,state=facing:south/horizontal:small/vertical:hidden/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%dark_oak_support,state=facing:south/horizontal:small/vertical:big/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000:R/0/180/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%dark_oak_support,state=facing:south/horizontal:small/vertical:small/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000:R/0/180/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/180/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%dark_oak_support,state=facing:south/horizontal:small/vertical:hidden/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%dark_oak_support,state=facing:south/horizontal:hidden/vertical:big/up:true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%dark_oak_support,state=facing:south/horizontal:hidden/vertical:small/up:true,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%dark_oak_support,state=facing:south/horizontal:hidden/vertical:hidden/up:true
|
|
||||||
modellist:id=%dark_oak_support,state=facing:south/horizontal:hidden/vertical:big/up:false,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%dark_oak_support,state=facing:south/horizontal:hidden/vertical:small/up:false,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%dark_oak_support,state=facing:south/horizontal:hidden/vertical:hidden/up:false
|
|
||||||
modellist:id=%dark_oak_support,state=facing:west/horizontal:big/vertical:big/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000:R/0/270/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%dark_oak_support,state=facing:west/horizontal:big/vertical:small/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000:R/0/270/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/270/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%dark_oak_support,state=facing:west/horizontal:big/vertical:hidden/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%dark_oak_support,state=facing:west/horizontal:big/vertical:big/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%dark_oak_support,state=facing:west/horizontal:big/vertical:small/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/270/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%dark_oak_support,state=facing:west/horizontal:big/vertical:hidden/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%dark_oak_support,state=facing:west/horizontal:small/vertical:big/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000:R/0/270/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%dark_oak_support,state=facing:west/horizontal:small/vertical:small/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000:R/0/270/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/270/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%dark_oak_support,state=facing:west/horizontal:small/vertical:hidden/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%dark_oak_support,state=facing:west/horizontal:small/vertical:big/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000:R/0/270/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%dark_oak_support,state=facing:west/horizontal:small/vertical:small/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000:R/0/270/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/270/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%dark_oak_support,state=facing:west/horizontal:small/vertical:hidden/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%dark_oak_support,state=facing:west/horizontal:hidden/vertical:big/up:true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%dark_oak_support,state=facing:west/horizontal:hidden/vertical:small/up:true,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%dark_oak_support,state=facing:west/horizontal:hidden/vertical:hidden/up:true
|
|
||||||
modellist:id=%dark_oak_support,state=facing:west/horizontal:hidden/vertical:big/up:false,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%dark_oak_support,state=facing:west/horizontal:hidden/vertical:small/up:false,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%dark_oak_support,state=facing:west/horizontal:hidden/vertical:hidden/up:false
|
|
||||||
modellist:id=%dark_oak_support,state=facing:east/horizontal:big/vertical:big/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000:R/0/90/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%dark_oak_support,state=facing:east/horizontal:big/vertical:small/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000:R/0/90/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/90/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%dark_oak_support,state=facing:east/horizontal:big/vertical:hidden/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%dark_oak_support,state=facing:east/horizontal:big/vertical:big/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%dark_oak_support,state=facing:east/horizontal:big/vertical:small/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/90/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%dark_oak_support,state=facing:east/horizontal:big/vertical:hidden/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%dark_oak_support,state=facing:east/horizontal:small/vertical:big/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000:R/0/90/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%dark_oak_support,state=facing:east/horizontal:small/vertical:small/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000:R/0/90/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/90/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%dark_oak_support,state=facing:east/horizontal:small/vertical:hidden/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%dark_oak_support,state=facing:east/horizontal:small/vertical:big/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000:R/0/90/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%dark_oak_support,state=facing:east/horizontal:small/vertical:small/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000:R/0/90/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/90/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%dark_oak_support,state=facing:east/horizontal:small/vertical:hidden/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%dark_oak_support,state=facing:east/horizontal:hidden/vertical:big/up:true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%dark_oak_support,state=facing:east/horizontal:hidden/vertical:small/up:true,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%dark_oak_support,state=facing:east/horizontal:hidden/vertical:hidden/up:true
|
|
||||||
modellist:id=%dark_oak_support,state=facing:east/horizontal:hidden/vertical:big/up:false,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%dark_oak_support,state=facing:east/horizontal:hidden/vertical:small/up:false,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%dark_oak_support,state=facing:east/horizontal:hidden/vertical:hidden/up:false
|
|
||||||
modellist:id=%warped_support,state=facing:north/horizontal:big/vertical:big/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%warped_support,state=facing:north/horizontal:big/vertical:small/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%warped_support,state=facing:north/horizontal:big/vertical:hidden/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%warped_support,state=facing:north/horizontal:big/vertical:big/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%warped_support,state=facing:north/horizontal:big/vertical:small/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%warped_support,state=facing:north/horizontal:big/vertical:hidden/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%warped_support,state=facing:north/horizontal:small/vertical:big/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%warped_support,state=facing:north/horizontal:small/vertical:small/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%warped_support,state=facing:north/horizontal:small/vertical:hidden/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000
|
|
||||||
modellist:id=%warped_support,state=facing:north/horizontal:small/vertical:big/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%warped_support,state=facing:north/horizontal:small/vertical:small/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%warped_support,state=facing:north/horizontal:small/vertical:hidden/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000
|
|
||||||
modellist:id=%warped_support,state=facing:north/horizontal:hidden/vertical:big/up:true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%warped_support,state=facing:north/horizontal:hidden/vertical:small/up:true,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000
|
|
||||||
modellist:id=%warped_support,state=facing:north/horizontal:hidden/vertical:hidden/up:true
|
|
||||||
modellist:id=%warped_support,state=facing:north/horizontal:hidden/vertical:big/up:false,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%warped_support,state=facing:north/horizontal:hidden/vertical:small/up:false,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000
|
|
||||||
modellist:id=%warped_support,state=facing:north/horizontal:hidden/vertical:hidden/up:false
|
|
||||||
modellist:id=%warped_support,state=facing:south/horizontal:big/vertical:big/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000:R/0/180/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%warped_support,state=facing:south/horizontal:big/vertical:small/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000:R/0/180/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/180/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%warped_support,state=facing:south/horizontal:big/vertical:hidden/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%warped_support,state=facing:south/horizontal:big/vertical:big/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%warped_support,state=facing:south/horizontal:big/vertical:small/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/180/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%warped_support,state=facing:south/horizontal:big/vertical:hidden/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%warped_support,state=facing:south/horizontal:small/vertical:big/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000:R/0/180/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%warped_support,state=facing:south/horizontal:small/vertical:small/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000:R/0/180/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/180/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%warped_support,state=facing:south/horizontal:small/vertical:hidden/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%warped_support,state=facing:south/horizontal:small/vertical:big/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000:R/0/180/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%warped_support,state=facing:south/horizontal:small/vertical:small/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000:R/0/180/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/180/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%warped_support,state=facing:south/horizontal:small/vertical:hidden/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%warped_support,state=facing:south/horizontal:hidden/vertical:big/up:true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%warped_support,state=facing:south/horizontal:hidden/vertical:small/up:true,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%warped_support,state=facing:south/horizontal:hidden/vertical:hidden/up:true
|
|
||||||
modellist:id=%warped_support,state=facing:south/horizontal:hidden/vertical:big/up:false,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%warped_support,state=facing:south/horizontal:hidden/vertical:small/up:false,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%warped_support,state=facing:south/horizontal:hidden/vertical:hidden/up:false
|
|
||||||
modellist:id=%warped_support,state=facing:west/horizontal:big/vertical:big/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000:R/0/270/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%warped_support,state=facing:west/horizontal:big/vertical:small/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000:R/0/270/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/270/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%warped_support,state=facing:west/horizontal:big/vertical:hidden/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%warped_support,state=facing:west/horizontal:big/vertical:big/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%warped_support,state=facing:west/horizontal:big/vertical:small/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/270/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%warped_support,state=facing:west/horizontal:big/vertical:hidden/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%warped_support,state=facing:west/horizontal:small/vertical:big/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000:R/0/270/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%warped_support,state=facing:west/horizontal:small/vertical:small/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000:R/0/270/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/270/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%warped_support,state=facing:west/horizontal:small/vertical:hidden/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%warped_support,state=facing:west/horizontal:small/vertical:big/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000:R/0/270/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%warped_support,state=facing:west/horizontal:small/vertical:small/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000:R/0/270/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/270/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%warped_support,state=facing:west/horizontal:small/vertical:hidden/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%warped_support,state=facing:west/horizontal:hidden/vertical:big/up:true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%warped_support,state=facing:west/horizontal:hidden/vertical:small/up:true,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%warped_support,state=facing:west/horizontal:hidden/vertical:hidden/up:true
|
|
||||||
modellist:id=%warped_support,state=facing:west/horizontal:hidden/vertical:big/up:false,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%warped_support,state=facing:west/horizontal:hidden/vertical:small/up:false,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%warped_support,state=facing:west/horizontal:hidden/vertical:hidden/up:false
|
|
||||||
modellist:id=%warped_support,state=facing:east/horizontal:big/vertical:big/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000:R/0/90/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%warped_support,state=facing:east/horizontal:big/vertical:small/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000:R/0/90/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/90/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%warped_support,state=facing:east/horizontal:big/vertical:hidden/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%warped_support,state=facing:east/horizontal:big/vertical:big/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%warped_support,state=facing:east/horizontal:big/vertical:small/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/90/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%warped_support,state=facing:east/horizontal:big/vertical:hidden/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%warped_support,state=facing:east/horizontal:small/vertical:big/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000:R/0/90/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%warped_support,state=facing:east/horizontal:small/vertical:small/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000:R/0/90/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/90/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%warped_support,state=facing:east/horizontal:small/vertical:hidden/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%warped_support,state=facing:east/horizontal:small/vertical:big/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000:R/0/90/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%warped_support,state=facing:east/horizontal:small/vertical:small/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000:R/0/90/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/90/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%warped_support,state=facing:east/horizontal:small/vertical:hidden/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%warped_support,state=facing:east/horizontal:hidden/vertical:big/up:true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%warped_support,state=facing:east/horizontal:hidden/vertical:small/up:true,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%warped_support,state=facing:east/horizontal:hidden/vertical:hidden/up:true
|
|
||||||
modellist:id=%warped_support,state=facing:east/horizontal:hidden/vertical:big/up:false,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%warped_support,state=facing:east/horizontal:hidden/vertical:small/up:false,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%warped_support,state=facing:east/horizontal:hidden/vertical:hidden/up:false
|
|
||||||
modellist:id=%birch_support,state=facing:north/horizontal:big/vertical:big/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%birch_support,state=facing:north/horizontal:big/vertical:small/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%birch_support,state=facing:north/horizontal:big/vertical:hidden/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%birch_support,state=facing:north/horizontal:big/vertical:big/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%birch_support,state=facing:north/horizontal:big/vertical:small/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%birch_support,state=facing:north/horizontal:big/vertical:hidden/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%birch_support,state=facing:north/horizontal:small/vertical:big/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%birch_support,state=facing:north/horizontal:small/vertical:small/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%birch_support,state=facing:north/horizontal:small/vertical:hidden/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000
|
|
||||||
modellist:id=%birch_support,state=facing:north/horizontal:small/vertical:big/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%birch_support,state=facing:north/horizontal:small/vertical:small/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000
|
|
||||||
modellist:id=%birch_support,state=facing:north/horizontal:small/vertical:hidden/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000
|
|
||||||
modellist:id=%birch_support,state=facing:north/horizontal:hidden/vertical:big/up:true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%birch_support,state=facing:north/horizontal:hidden/vertical:small/up:true,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000
|
|
||||||
modellist:id=%birch_support,state=facing:north/horizontal:hidden/vertical:hidden/up:true
|
|
||||||
modellist:id=%birch_support,state=facing:north/horizontal:hidden/vertical:big/up:false,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%birch_support,state=facing:north/horizontal:hidden/vertical:small/up:false,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000
|
|
||||||
modellist:id=%birch_support,state=facing:north/horizontal:hidden/vertical:hidden/up:false
|
|
||||||
modellist:id=%birch_support,state=facing:south/horizontal:big/vertical:big/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000:R/0/180/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%birch_support,state=facing:south/horizontal:big/vertical:small/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000:R/0/180/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/180/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%birch_support,state=facing:south/horizontal:big/vertical:hidden/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%birch_support,state=facing:south/horizontal:big/vertical:big/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%birch_support,state=facing:south/horizontal:big/vertical:small/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/180/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%birch_support,state=facing:south/horizontal:big/vertical:hidden/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%birch_support,state=facing:south/horizontal:small/vertical:big/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000:R/0/180/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%birch_support,state=facing:south/horizontal:small/vertical:small/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000:R/0/180/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/180/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%birch_support,state=facing:south/horizontal:small/vertical:hidden/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%birch_support,state=facing:south/horizontal:small/vertical:big/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000:R/0/180/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%birch_support,state=facing:south/horizontal:small/vertical:small/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000:R/0/180/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/180/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%birch_support,state=facing:south/horizontal:small/vertical:hidden/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000:R/0/180/0
|
|
||||||
modellist:id=%birch_support,state=facing:south/horizontal:hidden/vertical:big/up:true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%birch_support,state=facing:south/horizontal:hidden/vertical:small/up:true,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%birch_support,state=facing:south/horizontal:hidden/vertical:hidden/up:true
|
|
||||||
modellist:id=%birch_support,state=facing:south/horizontal:hidden/vertical:big/up:false,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%birch_support,state=facing:south/horizontal:hidden/vertical:small/up:false,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%birch_support,state=facing:south/horizontal:hidden/vertical:hidden/up:false
|
|
||||||
modellist:id=%birch_support,state=facing:west/horizontal:big/vertical:big/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000:R/0/270/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%birch_support,state=facing:west/horizontal:big/vertical:small/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000:R/0/270/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/270/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%birch_support,state=facing:west/horizontal:big/vertical:hidden/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%birch_support,state=facing:west/horizontal:big/vertical:big/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%birch_support,state=facing:west/horizontal:big/vertical:small/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/270/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%birch_support,state=facing:west/horizontal:big/vertical:hidden/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%birch_support,state=facing:west/horizontal:small/vertical:big/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000:R/0/270/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%birch_support,state=facing:west/horizontal:small/vertical:small/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000:R/0/270/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/270/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%birch_support,state=facing:west/horizontal:small/vertical:hidden/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%birch_support,state=facing:west/horizontal:small/vertical:big/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000:R/0/270/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%birch_support,state=facing:west/horizontal:small/vertical:small/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000:R/0/270/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/270/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%birch_support,state=facing:west/horizontal:small/vertical:hidden/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000:R/0/270/0
|
|
||||||
modellist:id=%birch_support,state=facing:west/horizontal:hidden/vertical:big/up:true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%birch_support,state=facing:west/horizontal:hidden/vertical:small/up:true,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%birch_support,state=facing:west/horizontal:hidden/vertical:hidden/up:true
|
|
||||||
modellist:id=%birch_support,state=facing:west/horizontal:hidden/vertical:big/up:false,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%birch_support,state=facing:west/horizontal:hidden/vertical:small/up:false,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%birch_support,state=facing:west/horizontal:hidden/vertical:hidden/up:false
|
|
||||||
modellist:id=%birch_support,state=facing:east/horizontal:big/vertical:big/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000:R/0/90/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%birch_support,state=facing:east/horizontal:big/vertical:small/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000:R/0/90/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/90/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%birch_support,state=facing:east/horizontal:big/vertical:hidden/up:true,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%birch_support,state=facing:east/horizontal:big/vertical:big/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%birch_support,state=facing:east/horizontal:big/vertical:small/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/90/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%birch_support,state=facing:east/horizontal:big/vertical:hidden/up:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000:s/1/0.000000/13.000000/16.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%birch_support,state=facing:east/horizontal:small/vertical:big/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000:R/0/90/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%birch_support,state=facing:east/horizontal:small/vertical:small/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000:R/0/90/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/90/0,box=6.500000/6.975000/-1.525000:9.500000/9.975000/15.475000/45.000000/0.000000/0.000000/8.000000/6.975000/6.975000:u90/1/0.000000/0.000000/16.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e180/1/0.000000/0.000000/16.000000/3.000000:d90/1/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%birch_support,state=facing:east/horizontal:small/vertical:hidden/up:true,box=4.000000/13.000000/0.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/3.000000:w/1/0.000000/0.000000/16.000000/3.000000:e/1/0.000000/0.000000/16.000000/3.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/1/4.000000/0.000000/12.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%birch_support,state=facing:east/horizontal:small/vertical:big/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000:R/0/90/0,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%birch_support,state=facing:east/horizontal:small/vertical:small/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000:R/0/90/0,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/90/0,box=6.500000/6.025000/-1.525000:9.500000/9.025000/15.475000/-45.000000/0.000000/0.000000/8.000000/9.025000/6.975000:u90/0/0.000000/0.000000/16.000000/3.000000:w180/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:d90/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%birch_support,state=facing:east/horizontal:small/vertical:hidden/up:false,box=4.000000/0.000000/0.000000:12.000000/3.000000/16.000000:u/0/4.000000/16.000000/12.000000/0.000000:s/1/4.000000/13.000000/12.000000/16.000000:w90/0/13.000000/0.000000/16.000000/16.000000:e270/0/16.000000/0.000000/13.000000/16.000000:d/0/4.000000/0.000000/12.000000/16.000000:n/0/4.000000/0.000000/12.000000/3.000000:R/0/90/0
|
|
||||||
modellist:id=%birch_support,state=facing:east/horizontal:hidden/vertical:big/up:true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/13.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%birch_support,state=facing:east/horizontal:hidden/vertical:small/up:true,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/13.000000/12.000000/16.000000:s/1/4.000000/0.000000/12.000000/16.000000:w/1/13.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/3.000000/16.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%birch_support,state=facing:east/horizontal:hidden/vertical:hidden/up:true
|
|
||||||
modellist:id=%birch_support,state=facing:east/horizontal:hidden/vertical:big/up:false,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:s/1/0.000000/0.000000/16.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/0.000000/0.000000/16.000000/3.000000:n/1/0.000000/0.000000/16.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%birch_support,state=facing:east/horizontal:hidden/vertical:small/up:false,box=4.000000/0.000000/13.000000:12.000000/16.000000/16.000000:u/0/4.000000/0.000000/12.000000/3.000000:s/1/4.000000/0.000000/12.000000/16.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e270/0/16.000000/0.000000/0.000000/3.000000:d/0/4.000000/0.000000/12.000000/3.000000:n/1/4.000000/0.000000/12.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%birch_support,state=facing:east/horizontal:hidden/vertical:hidden/up:false
|
|
||||||
modellist:id=%spruce_seat,state=attached:true/facing:north/post:true,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:s90/0/12.000000/12.000000/16.000000/16.000000:w90/0/12.000000/12.000000/16.000000/16.000000:e90/0/12.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/12.000000/12.000000/16.000000/16.000000,box=6.000000/7.000000/6.000000:10.000000/16.000000/10.000000:u/0/6.000000/12.000000/10.000000/16.000000:s90/0/7.000000/12.000000/16.000000/16.000000:w90/0/7.000000/12.000000/16.000000/16.000000:e90/0/7.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/7.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%spruce_seat,state=attached:true/facing:north/post:false,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:s90/0/12.000000/12.000000/16.000000/16.000000:w90/0/12.000000/12.000000/16.000000/16.000000:e90/0/12.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/12.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%spruce_seat,state=attached:true/facing:south/post:true,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/180/0,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:s90/0/12.000000/12.000000/16.000000/16.000000:w90/0/12.000000/12.000000/16.000000/16.000000:e90/0/12.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/12.000000/12.000000/16.000000/16.000000,box=6.000000/7.000000/6.000000:10.000000/16.000000/10.000000:u/0/6.000000/12.000000/10.000000/16.000000:s90/0/7.000000/12.000000/16.000000/16.000000:w90/0/7.000000/12.000000/16.000000/16.000000:e90/0/7.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/7.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%spruce_seat,state=attached:true/facing:south/post:false,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/180/0,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:s90/0/12.000000/12.000000/16.000000/16.000000:w90/0/12.000000/12.000000/16.000000/16.000000:e90/0/12.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/12.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%spruce_seat,state=attached:true/facing:west/post:true,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/270/0,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:s90/0/12.000000/12.000000/16.000000/16.000000:w90/0/12.000000/12.000000/16.000000/16.000000:e90/0/12.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/12.000000/12.000000/16.000000/16.000000,box=6.000000/7.000000/6.000000:10.000000/16.000000/10.000000:u/0/6.000000/12.000000/10.000000/16.000000:s90/0/7.000000/12.000000/16.000000/16.000000:w90/0/7.000000/12.000000/16.000000/16.000000:e90/0/7.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/7.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%spruce_seat,state=attached:true/facing:west/post:false,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/270/0,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:s90/0/12.000000/12.000000/16.000000/16.000000:w90/0/12.000000/12.000000/16.000000/16.000000:e90/0/12.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/12.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%spruce_seat,state=attached:true/facing:east/post:true,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/90/0,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:s90/0/12.000000/12.000000/16.000000/16.000000:w90/0/12.000000/12.000000/16.000000/16.000000:e90/0/12.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/12.000000/12.000000/16.000000/16.000000,box=6.000000/7.000000/6.000000:10.000000/16.000000/10.000000:u/0/6.000000/12.000000/10.000000/16.000000:s90/0/7.000000/12.000000/16.000000/16.000000:w90/0/7.000000/12.000000/16.000000/16.000000:e90/0/7.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/7.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%spruce_seat,state=attached:true/facing:east/post:false,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/90/0,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:s90/0/12.000000/12.000000/16.000000/16.000000:w90/0/12.000000/12.000000/16.000000/16.000000:e90/0/12.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/12.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%spruce_seat,state=attached:false/facing:north/post:true,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000,box=6.000000/7.000000/6.000000:10.000000/16.000000/10.000000:u/0/6.000000/12.000000/10.000000/16.000000:s90/0/7.000000/12.000000/16.000000/16.000000:w90/0/7.000000/12.000000/16.000000/16.000000:e90/0/7.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/7.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%spruce_seat,state=attached:false/facing:north/post:false,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000
|
|
||||||
modellist:id=%spruce_seat,state=attached:false/facing:south/post:true,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/180/0,box=6.000000/7.000000/6.000000:10.000000/16.000000/10.000000:u/0/6.000000/12.000000/10.000000/16.000000:s90/0/7.000000/12.000000/16.000000/16.000000:w90/0/7.000000/12.000000/16.000000/16.000000:e90/0/7.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/7.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%spruce_seat,state=attached:false/facing:south/post:false,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/180/0
|
|
||||||
modellist:id=%spruce_seat,state=attached:false/facing:west/post:true,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/270/0,box=6.000000/7.000000/6.000000:10.000000/16.000000/10.000000:u/0/6.000000/12.000000/10.000000/16.000000:s90/0/7.000000/12.000000/16.000000/16.000000:w90/0/7.000000/12.000000/16.000000/16.000000:e90/0/7.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/7.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%spruce_seat,state=attached:false/facing:west/post:false,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/270/0
|
|
||||||
modellist:id=%spruce_seat,state=attached:false/facing:east/post:true,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/90/0,box=6.000000/7.000000/6.000000:10.000000/16.000000/10.000000:u/0/6.000000/12.000000/10.000000/16.000000:s90/0/7.000000/12.000000/16.000000/16.000000:w90/0/7.000000/12.000000/16.000000/16.000000:e90/0/7.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/7.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%spruce_seat,state=attached:false/facing:east/post:false,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/90/0
|
|
||||||
modellist:id=%crimson_seat,state=attached:true/facing:north/post:true,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:s90/0/12.000000/12.000000/16.000000/16.000000:w90/0/12.000000/12.000000/16.000000/16.000000:e90/0/12.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/12.000000/12.000000/16.000000/16.000000,box=6.000000/7.000000/6.000000:10.000000/16.000000/10.000000:u/0/6.000000/12.000000/10.000000/16.000000:s90/0/7.000000/12.000000/16.000000/16.000000:w90/0/7.000000/12.000000/16.000000/16.000000:e90/0/7.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/7.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%crimson_seat,state=attached:true/facing:north/post:false,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:s90/0/12.000000/12.000000/16.000000/16.000000:w90/0/12.000000/12.000000/16.000000/16.000000:e90/0/12.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/12.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%crimson_seat,state=attached:true/facing:south/post:true,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/180/0,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:s90/0/12.000000/12.000000/16.000000/16.000000:w90/0/12.000000/12.000000/16.000000/16.000000:e90/0/12.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/12.000000/12.000000/16.000000/16.000000,box=6.000000/7.000000/6.000000:10.000000/16.000000/10.000000:u/0/6.000000/12.000000/10.000000/16.000000:s90/0/7.000000/12.000000/16.000000/16.000000:w90/0/7.000000/12.000000/16.000000/16.000000:e90/0/7.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/7.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%crimson_seat,state=attached:true/facing:south/post:false,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/180/0,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:s90/0/12.000000/12.000000/16.000000/16.000000:w90/0/12.000000/12.000000/16.000000/16.000000:e90/0/12.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/12.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%crimson_seat,state=attached:true/facing:west/post:true,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/270/0,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:s90/0/12.000000/12.000000/16.000000/16.000000:w90/0/12.000000/12.000000/16.000000/16.000000:e90/0/12.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/12.000000/12.000000/16.000000/16.000000,box=6.000000/7.000000/6.000000:10.000000/16.000000/10.000000:u/0/6.000000/12.000000/10.000000/16.000000:s90/0/7.000000/12.000000/16.000000/16.000000:w90/0/7.000000/12.000000/16.000000/16.000000:e90/0/7.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/7.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%crimson_seat,state=attached:true/facing:west/post:false,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/270/0,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:s90/0/12.000000/12.000000/16.000000/16.000000:w90/0/12.000000/12.000000/16.000000/16.000000:e90/0/12.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/12.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%crimson_seat,state=attached:true/facing:east/post:true,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/90/0,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:s90/0/12.000000/12.000000/16.000000/16.000000:w90/0/12.000000/12.000000/16.000000/16.000000:e90/0/12.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/12.000000/12.000000/16.000000/16.000000,box=6.000000/7.000000/6.000000:10.000000/16.000000/10.000000:u/0/6.000000/12.000000/10.000000/16.000000:s90/0/7.000000/12.000000/16.000000/16.000000:w90/0/7.000000/12.000000/16.000000/16.000000:e90/0/7.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/7.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%crimson_seat,state=attached:true/facing:east/post:false,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/90/0,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:s90/0/12.000000/12.000000/16.000000/16.000000:w90/0/12.000000/12.000000/16.000000/16.000000:e90/0/12.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/12.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%crimson_seat,state=attached:false/facing:north/post:true,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000,box=6.000000/7.000000/6.000000:10.000000/16.000000/10.000000:u/0/6.000000/12.000000/10.000000/16.000000:s90/0/7.000000/12.000000/16.000000/16.000000:w90/0/7.000000/12.000000/16.000000/16.000000:e90/0/7.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/7.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%crimson_seat,state=attached:false/facing:north/post:false,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000
|
|
||||||
modellist:id=%crimson_seat,state=attached:false/facing:south/post:true,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/180/0,box=6.000000/7.000000/6.000000:10.000000/16.000000/10.000000:u/0/6.000000/12.000000/10.000000/16.000000:s90/0/7.000000/12.000000/16.000000/16.000000:w90/0/7.000000/12.000000/16.000000/16.000000:e90/0/7.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/7.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%crimson_seat,state=attached:false/facing:south/post:false,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/180/0
|
|
||||||
modellist:id=%crimson_seat,state=attached:false/facing:west/post:true,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/270/0,box=6.000000/7.000000/6.000000:10.000000/16.000000/10.000000:u/0/6.000000/12.000000/10.000000/16.000000:s90/0/7.000000/12.000000/16.000000/16.000000:w90/0/7.000000/12.000000/16.000000/16.000000:e90/0/7.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/7.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%crimson_seat,state=attached:false/facing:west/post:false,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/270/0
|
|
||||||
modellist:id=%crimson_seat,state=attached:false/facing:east/post:true,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/90/0,box=6.000000/7.000000/6.000000:10.000000/16.000000/10.000000:u/0/6.000000/12.000000/10.000000/16.000000:s90/0/7.000000/12.000000/16.000000/16.000000:w90/0/7.000000/12.000000/16.000000/16.000000:e90/0/7.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/7.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%crimson_seat,state=attached:false/facing:east/post:false,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/90/0
|
|
||||||
modellist:id=%oak_seat,state=attached:true/facing:north/post:true,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:s90/0/12.000000/12.000000/16.000000/16.000000:w90/0/12.000000/12.000000/16.000000/16.000000:e90/0/12.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/12.000000/12.000000/16.000000/16.000000,box=6.000000/7.000000/6.000000:10.000000/16.000000/10.000000:u/0/6.000000/12.000000/10.000000/16.000000:s90/0/7.000000/12.000000/16.000000/16.000000:w90/0/7.000000/12.000000/16.000000/16.000000:e90/0/7.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/7.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%oak_seat,state=attached:true/facing:north/post:false,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:s90/0/12.000000/12.000000/16.000000/16.000000:w90/0/12.000000/12.000000/16.000000/16.000000:e90/0/12.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/12.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%oak_seat,state=attached:true/facing:south/post:true,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/180/0,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:s90/0/12.000000/12.000000/16.000000/16.000000:w90/0/12.000000/12.000000/16.000000/16.000000:e90/0/12.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/12.000000/12.000000/16.000000/16.000000,box=6.000000/7.000000/6.000000:10.000000/16.000000/10.000000:u/0/6.000000/12.000000/10.000000/16.000000:s90/0/7.000000/12.000000/16.000000/16.000000:w90/0/7.000000/12.000000/16.000000/16.000000:e90/0/7.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/7.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%oak_seat,state=attached:true/facing:south/post:false,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/180/0,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:s90/0/12.000000/12.000000/16.000000/16.000000:w90/0/12.000000/12.000000/16.000000/16.000000:e90/0/12.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/12.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%oak_seat,state=attached:true/facing:west/post:true,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/270/0,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:s90/0/12.000000/12.000000/16.000000/16.000000:w90/0/12.000000/12.000000/16.000000/16.000000:e90/0/12.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/12.000000/12.000000/16.000000/16.000000,box=6.000000/7.000000/6.000000:10.000000/16.000000/10.000000:u/0/6.000000/12.000000/10.000000/16.000000:s90/0/7.000000/12.000000/16.000000/16.000000:w90/0/7.000000/12.000000/16.000000/16.000000:e90/0/7.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/7.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%oak_seat,state=attached:true/facing:west/post:false,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/270/0,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:s90/0/12.000000/12.000000/16.000000/16.000000:w90/0/12.000000/12.000000/16.000000/16.000000:e90/0/12.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/12.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%oak_seat,state=attached:true/facing:east/post:true,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/90/0,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:s90/0/12.000000/12.000000/16.000000/16.000000:w90/0/12.000000/12.000000/16.000000/16.000000:e90/0/12.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/12.000000/12.000000/16.000000/16.000000,box=6.000000/7.000000/6.000000:10.000000/16.000000/10.000000:u/0/6.000000/12.000000/10.000000/16.000000:s90/0/7.000000/12.000000/16.000000/16.000000:w90/0/7.000000/12.000000/16.000000/16.000000:e90/0/7.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/7.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%oak_seat,state=attached:true/facing:east/post:false,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/90/0,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:s90/0/12.000000/12.000000/16.000000/16.000000:w90/0/12.000000/12.000000/16.000000/16.000000:e90/0/12.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/12.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%oak_seat,state=attached:false/facing:north/post:true,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000,box=6.000000/7.000000/6.000000:10.000000/16.000000/10.000000:u/0/6.000000/12.000000/10.000000/16.000000:s90/0/7.000000/12.000000/16.000000/16.000000:w90/0/7.000000/12.000000/16.000000/16.000000:e90/0/7.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/7.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%oak_seat,state=attached:false/facing:north/post:false,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000
|
|
||||||
modellist:id=%oak_seat,state=attached:false/facing:south/post:true,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/180/0,box=6.000000/7.000000/6.000000:10.000000/16.000000/10.000000:u/0/6.000000/12.000000/10.000000/16.000000:s90/0/7.000000/12.000000/16.000000/16.000000:w90/0/7.000000/12.000000/16.000000/16.000000:e90/0/7.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/7.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%oak_seat,state=attached:false/facing:south/post:false,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/180/0
|
|
||||||
modellist:id=%oak_seat,state=attached:false/facing:west/post:true,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/270/0,box=6.000000/7.000000/6.000000:10.000000/16.000000/10.000000:u/0/6.000000/12.000000/10.000000/16.000000:s90/0/7.000000/12.000000/16.000000/16.000000:w90/0/7.000000/12.000000/16.000000/16.000000:e90/0/7.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/7.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%oak_seat,state=attached:false/facing:west/post:false,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/270/0
|
|
||||||
modellist:id=%oak_seat,state=attached:false/facing:east/post:true,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/90/0,box=6.000000/7.000000/6.000000:10.000000/16.000000/10.000000:u/0/6.000000/12.000000/10.000000/16.000000:s90/0/7.000000/12.000000/16.000000/16.000000:w90/0/7.000000/12.000000/16.000000/16.000000:e90/0/7.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/7.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%oak_seat,state=attached:false/facing:east/post:false,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/90/0
|
|
||||||
modellist:id=%acacia_seat,state=attached:true/facing:north/post:true,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:s90/0/12.000000/12.000000/16.000000/16.000000:w90/0/12.000000/12.000000/16.000000/16.000000:e90/0/12.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/12.000000/12.000000/16.000000/16.000000,box=6.000000/7.000000/6.000000:10.000000/16.000000/10.000000:u/0/6.000000/12.000000/10.000000/16.000000:s90/0/7.000000/12.000000/16.000000/16.000000:w90/0/7.000000/12.000000/16.000000/16.000000:e90/0/7.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/7.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%acacia_seat,state=attached:true/facing:north/post:false,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:s90/0/12.000000/12.000000/16.000000/16.000000:w90/0/12.000000/12.000000/16.000000/16.000000:e90/0/12.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/12.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%acacia_seat,state=attached:true/facing:south/post:true,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/180/0,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:s90/0/12.000000/12.000000/16.000000/16.000000:w90/0/12.000000/12.000000/16.000000/16.000000:e90/0/12.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/12.000000/12.000000/16.000000/16.000000,box=6.000000/7.000000/6.000000:10.000000/16.000000/10.000000:u/0/6.000000/12.000000/10.000000/16.000000:s90/0/7.000000/12.000000/16.000000/16.000000:w90/0/7.000000/12.000000/16.000000/16.000000:e90/0/7.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/7.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%acacia_seat,state=attached:true/facing:south/post:false,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/180/0,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:s90/0/12.000000/12.000000/16.000000/16.000000:w90/0/12.000000/12.000000/16.000000/16.000000:e90/0/12.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/12.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%acacia_seat,state=attached:true/facing:west/post:true,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/270/0,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:s90/0/12.000000/12.000000/16.000000/16.000000:w90/0/12.000000/12.000000/16.000000/16.000000:e90/0/12.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/12.000000/12.000000/16.000000/16.000000,box=6.000000/7.000000/6.000000:10.000000/16.000000/10.000000:u/0/6.000000/12.000000/10.000000/16.000000:s90/0/7.000000/12.000000/16.000000/16.000000:w90/0/7.000000/12.000000/16.000000/16.000000:e90/0/7.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/7.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%acacia_seat,state=attached:true/facing:west/post:false,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/270/0,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:s90/0/12.000000/12.000000/16.000000/16.000000:w90/0/12.000000/12.000000/16.000000/16.000000:e90/0/12.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/12.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%acacia_seat,state=attached:true/facing:east/post:true,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/90/0,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:s90/0/12.000000/12.000000/16.000000/16.000000:w90/0/12.000000/12.000000/16.000000/16.000000:e90/0/12.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/12.000000/12.000000/16.000000/16.000000,box=6.000000/7.000000/6.000000:10.000000/16.000000/10.000000:u/0/6.000000/12.000000/10.000000/16.000000:s90/0/7.000000/12.000000/16.000000/16.000000:w90/0/7.000000/12.000000/16.000000/16.000000:e90/0/7.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/7.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%acacia_seat,state=attached:true/facing:east/post:false,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/90/0,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:s90/0/12.000000/12.000000/16.000000/16.000000:w90/0/12.000000/12.000000/16.000000/16.000000:e90/0/12.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/12.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%acacia_seat,state=attached:false/facing:north/post:true,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000,box=6.000000/7.000000/6.000000:10.000000/16.000000/10.000000:u/0/6.000000/12.000000/10.000000/16.000000:s90/0/7.000000/12.000000/16.000000/16.000000:w90/0/7.000000/12.000000/16.000000/16.000000:e90/0/7.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/7.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%acacia_seat,state=attached:false/facing:north/post:false,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000
|
|
||||||
modellist:id=%acacia_seat,state=attached:false/facing:south/post:true,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/180/0,box=6.000000/7.000000/6.000000:10.000000/16.000000/10.000000:u/0/6.000000/12.000000/10.000000/16.000000:s90/0/7.000000/12.000000/16.000000/16.000000:w90/0/7.000000/12.000000/16.000000/16.000000:e90/0/7.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/7.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%acacia_seat,state=attached:false/facing:south/post:false,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/180/0
|
|
||||||
modellist:id=%acacia_seat,state=attached:false/facing:west/post:true,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/270/0,box=6.000000/7.000000/6.000000:10.000000/16.000000/10.000000:u/0/6.000000/12.000000/10.000000/16.000000:s90/0/7.000000/12.000000/16.000000/16.000000:w90/0/7.000000/12.000000/16.000000/16.000000:e90/0/7.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/7.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%acacia_seat,state=attached:false/facing:west/post:false,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/270/0
|
|
||||||
modellist:id=%acacia_seat,state=attached:false/facing:east/post:true,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/90/0,box=6.000000/7.000000/6.000000:10.000000/16.000000/10.000000:u/0/6.000000/12.000000/10.000000/16.000000:s90/0/7.000000/12.000000/16.000000/16.000000:w90/0/7.000000/12.000000/16.000000/16.000000:e90/0/7.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/7.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%acacia_seat,state=attached:false/facing:east/post:false,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/90/0
|
|
||||||
modellist:id=%jungle_seat,state=attached:true/facing:north/post:true,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:s90/0/12.000000/12.000000/16.000000/16.000000:w90/0/12.000000/12.000000/16.000000/16.000000:e90/0/12.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/12.000000/12.000000/16.000000/16.000000,box=6.000000/7.000000/6.000000:10.000000/16.000000/10.000000:u/0/6.000000/12.000000/10.000000/16.000000:s90/0/7.000000/12.000000/16.000000/16.000000:w90/0/7.000000/12.000000/16.000000/16.000000:e90/0/7.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/7.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%jungle_seat,state=attached:true/facing:north/post:false,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:s90/0/12.000000/12.000000/16.000000/16.000000:w90/0/12.000000/12.000000/16.000000/16.000000:e90/0/12.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/12.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%jungle_seat,state=attached:true/facing:south/post:true,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/180/0,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:s90/0/12.000000/12.000000/16.000000/16.000000:w90/0/12.000000/12.000000/16.000000/16.000000:e90/0/12.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/12.000000/12.000000/16.000000/16.000000,box=6.000000/7.000000/6.000000:10.000000/16.000000/10.000000:u/0/6.000000/12.000000/10.000000/16.000000:s90/0/7.000000/12.000000/16.000000/16.000000:w90/0/7.000000/12.000000/16.000000/16.000000:e90/0/7.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/7.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%jungle_seat,state=attached:true/facing:south/post:false,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/180/0,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:s90/0/12.000000/12.000000/16.000000/16.000000:w90/0/12.000000/12.000000/16.000000/16.000000:e90/0/12.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/12.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%jungle_seat,state=attached:true/facing:west/post:true,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/270/0,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:s90/0/12.000000/12.000000/16.000000/16.000000:w90/0/12.000000/12.000000/16.000000/16.000000:e90/0/12.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/12.000000/12.000000/16.000000/16.000000,box=6.000000/7.000000/6.000000:10.000000/16.000000/10.000000:u/0/6.000000/12.000000/10.000000/16.000000:s90/0/7.000000/12.000000/16.000000/16.000000:w90/0/7.000000/12.000000/16.000000/16.000000:e90/0/7.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/7.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%jungle_seat,state=attached:true/facing:west/post:false,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/270/0,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:s90/0/12.000000/12.000000/16.000000/16.000000:w90/0/12.000000/12.000000/16.000000/16.000000:e90/0/12.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/12.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%jungle_seat,state=attached:true/facing:east/post:true,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/90/0,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:s90/0/12.000000/12.000000/16.000000/16.000000:w90/0/12.000000/12.000000/16.000000/16.000000:e90/0/12.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/12.000000/12.000000/16.000000/16.000000,box=6.000000/7.000000/6.000000:10.000000/16.000000/10.000000:u/0/6.000000/12.000000/10.000000/16.000000:s90/0/7.000000/12.000000/16.000000/16.000000:w90/0/7.000000/12.000000/16.000000/16.000000:e90/0/7.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/7.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%jungle_seat,state=attached:true/facing:east/post:false,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/90/0,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:s90/0/12.000000/12.000000/16.000000/16.000000:w90/0/12.000000/12.000000/16.000000/16.000000:e90/0/12.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/12.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%jungle_seat,state=attached:false/facing:north/post:true,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000,box=6.000000/7.000000/6.000000:10.000000/16.000000/10.000000:u/0/6.000000/12.000000/10.000000/16.000000:s90/0/7.000000/12.000000/16.000000/16.000000:w90/0/7.000000/12.000000/16.000000/16.000000:e90/0/7.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/7.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%jungle_seat,state=attached:false/facing:north/post:false,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000
|
|
||||||
modellist:id=%jungle_seat,state=attached:false/facing:south/post:true,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/180/0,box=6.000000/7.000000/6.000000:10.000000/16.000000/10.000000:u/0/6.000000/12.000000/10.000000/16.000000:s90/0/7.000000/12.000000/16.000000/16.000000:w90/0/7.000000/12.000000/16.000000/16.000000:e90/0/7.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/7.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%jungle_seat,state=attached:false/facing:south/post:false,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/180/0
|
|
||||||
modellist:id=%jungle_seat,state=attached:false/facing:west/post:true,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/270/0,box=6.000000/7.000000/6.000000:10.000000/16.000000/10.000000:u/0/6.000000/12.000000/10.000000/16.000000:s90/0/7.000000/12.000000/16.000000/16.000000:w90/0/7.000000/12.000000/16.000000/16.000000:e90/0/7.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/7.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%jungle_seat,state=attached:false/facing:west/post:false,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/270/0
|
|
||||||
modellist:id=%jungle_seat,state=attached:false/facing:east/post:true,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/90/0,box=6.000000/7.000000/6.000000:10.000000/16.000000/10.000000:u/0/6.000000/12.000000/10.000000/16.000000:s90/0/7.000000/12.000000/16.000000/16.000000:w90/0/7.000000/12.000000/16.000000/16.000000:e90/0/7.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/7.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%jungle_seat,state=attached:false/facing:east/post:false,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/90/0
|
|
||||||
modellist:id=%dark_oak_seat,state=attached:true/facing:north/post:true,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:s90/0/12.000000/12.000000/16.000000/16.000000:w90/0/12.000000/12.000000/16.000000/16.000000:e90/0/12.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/12.000000/12.000000/16.000000/16.000000,box=6.000000/7.000000/6.000000:10.000000/16.000000/10.000000:u/0/6.000000/12.000000/10.000000/16.000000:s90/0/7.000000/12.000000/16.000000/16.000000:w90/0/7.000000/12.000000/16.000000/16.000000:e90/0/7.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/7.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%dark_oak_seat,state=attached:true/facing:north/post:false,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:s90/0/12.000000/12.000000/16.000000/16.000000:w90/0/12.000000/12.000000/16.000000/16.000000:e90/0/12.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/12.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%dark_oak_seat,state=attached:true/facing:south/post:true,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/180/0,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:s90/0/12.000000/12.000000/16.000000/16.000000:w90/0/12.000000/12.000000/16.000000/16.000000:e90/0/12.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/12.000000/12.000000/16.000000/16.000000,box=6.000000/7.000000/6.000000:10.000000/16.000000/10.000000:u/0/6.000000/12.000000/10.000000/16.000000:s90/0/7.000000/12.000000/16.000000/16.000000:w90/0/7.000000/12.000000/16.000000/16.000000:e90/0/7.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/7.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%dark_oak_seat,state=attached:true/facing:south/post:false,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/180/0,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:s90/0/12.000000/12.000000/16.000000/16.000000:w90/0/12.000000/12.000000/16.000000/16.000000:e90/0/12.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/12.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%dark_oak_seat,state=attached:true/facing:west/post:true,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/270/0,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:s90/0/12.000000/12.000000/16.000000/16.000000:w90/0/12.000000/12.000000/16.000000/16.000000:e90/0/12.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/12.000000/12.000000/16.000000/16.000000,box=6.000000/7.000000/6.000000:10.000000/16.000000/10.000000:u/0/6.000000/12.000000/10.000000/16.000000:s90/0/7.000000/12.000000/16.000000/16.000000:w90/0/7.000000/12.000000/16.000000/16.000000:e90/0/7.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/7.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%dark_oak_seat,state=attached:true/facing:west/post:false,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/270/0,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:s90/0/12.000000/12.000000/16.000000/16.000000:w90/0/12.000000/12.000000/16.000000/16.000000:e90/0/12.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/12.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%dark_oak_seat,state=attached:true/facing:east/post:true,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/90/0,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:s90/0/12.000000/12.000000/16.000000/16.000000:w90/0/12.000000/12.000000/16.000000/16.000000:e90/0/12.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/12.000000/12.000000/16.000000/16.000000,box=6.000000/7.000000/6.000000:10.000000/16.000000/10.000000:u/0/6.000000/12.000000/10.000000/16.000000:s90/0/7.000000/12.000000/16.000000/16.000000:w90/0/7.000000/12.000000/16.000000/16.000000:e90/0/7.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/7.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%dark_oak_seat,state=attached:true/facing:east/post:false,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/90/0,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:s90/0/12.000000/12.000000/16.000000/16.000000:w90/0/12.000000/12.000000/16.000000/16.000000:e90/0/12.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/12.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%dark_oak_seat,state=attached:false/facing:north/post:true,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000,box=6.000000/7.000000/6.000000:10.000000/16.000000/10.000000:u/0/6.000000/12.000000/10.000000/16.000000:s90/0/7.000000/12.000000/16.000000/16.000000:w90/0/7.000000/12.000000/16.000000/16.000000:e90/0/7.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/7.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%dark_oak_seat,state=attached:false/facing:north/post:false,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000
|
|
||||||
modellist:id=%dark_oak_seat,state=attached:false/facing:south/post:true,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/180/0,box=6.000000/7.000000/6.000000:10.000000/16.000000/10.000000:u/0/6.000000/12.000000/10.000000/16.000000:s90/0/7.000000/12.000000/16.000000/16.000000:w90/0/7.000000/12.000000/16.000000/16.000000:e90/0/7.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/7.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%dark_oak_seat,state=attached:false/facing:south/post:false,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/180/0
|
|
||||||
modellist:id=%dark_oak_seat,state=attached:false/facing:west/post:true,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/270/0,box=6.000000/7.000000/6.000000:10.000000/16.000000/10.000000:u/0/6.000000/12.000000/10.000000/16.000000:s90/0/7.000000/12.000000/16.000000/16.000000:w90/0/7.000000/12.000000/16.000000/16.000000:e90/0/7.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/7.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%dark_oak_seat,state=attached:false/facing:west/post:false,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/270/0
|
|
||||||
modellist:id=%dark_oak_seat,state=attached:false/facing:east/post:true,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/90/0,box=6.000000/7.000000/6.000000:10.000000/16.000000/10.000000:u/0/6.000000/12.000000/10.000000/16.000000:s90/0/7.000000/12.000000/16.000000/16.000000:w90/0/7.000000/12.000000/16.000000/16.000000:e90/0/7.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/7.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%dark_oak_seat,state=attached:false/facing:east/post:false,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/90/0
|
|
||||||
modellist:id=%warped_seat,state=attached:true/facing:north/post:true,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:s90/0/12.000000/12.000000/16.000000/16.000000:w90/0/12.000000/12.000000/16.000000/16.000000:e90/0/12.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/12.000000/12.000000/16.000000/16.000000,box=6.000000/7.000000/6.000000:10.000000/16.000000/10.000000:u/0/6.000000/12.000000/10.000000/16.000000:s90/0/7.000000/12.000000/16.000000/16.000000:w90/0/7.000000/12.000000/16.000000/16.000000:e90/0/7.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/7.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%warped_seat,state=attached:true/facing:north/post:false,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:s90/0/12.000000/12.000000/16.000000/16.000000:w90/0/12.000000/12.000000/16.000000/16.000000:e90/0/12.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/12.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%warped_seat,state=attached:true/facing:south/post:true,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/180/0,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:s90/0/12.000000/12.000000/16.000000/16.000000:w90/0/12.000000/12.000000/16.000000/16.000000:e90/0/12.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/12.000000/12.000000/16.000000/16.000000,box=6.000000/7.000000/6.000000:10.000000/16.000000/10.000000:u/0/6.000000/12.000000/10.000000/16.000000:s90/0/7.000000/12.000000/16.000000/16.000000:w90/0/7.000000/12.000000/16.000000/16.000000:e90/0/7.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/7.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%warped_seat,state=attached:true/facing:south/post:false,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/180/0,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:s90/0/12.000000/12.000000/16.000000/16.000000:w90/0/12.000000/12.000000/16.000000/16.000000:e90/0/12.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/12.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%warped_seat,state=attached:true/facing:west/post:true,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/270/0,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:s90/0/12.000000/12.000000/16.000000/16.000000:w90/0/12.000000/12.000000/16.000000/16.000000:e90/0/12.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/12.000000/12.000000/16.000000/16.000000,box=6.000000/7.000000/6.000000:10.000000/16.000000/10.000000:u/0/6.000000/12.000000/10.000000/16.000000:s90/0/7.000000/12.000000/16.000000/16.000000:w90/0/7.000000/12.000000/16.000000/16.000000:e90/0/7.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/7.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%warped_seat,state=attached:true/facing:west/post:false,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/270/0,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:s90/0/12.000000/12.000000/16.000000/16.000000:w90/0/12.000000/12.000000/16.000000/16.000000:e90/0/12.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/12.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%warped_seat,state=attached:true/facing:east/post:true,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/90/0,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:s90/0/12.000000/12.000000/16.000000/16.000000:w90/0/12.000000/12.000000/16.000000/16.000000:e90/0/12.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/12.000000/12.000000/16.000000/16.000000,box=6.000000/7.000000/6.000000:10.000000/16.000000/10.000000:u/0/6.000000/12.000000/10.000000/16.000000:s90/0/7.000000/12.000000/16.000000/16.000000:w90/0/7.000000/12.000000/16.000000/16.000000:e90/0/7.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/7.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%warped_seat,state=attached:true/facing:east/post:false,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/90/0,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:s90/0/12.000000/12.000000/16.000000/16.000000:w90/0/12.000000/12.000000/16.000000/16.000000:e90/0/12.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/12.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%warped_seat,state=attached:false/facing:north/post:true,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000,box=6.000000/7.000000/6.000000:10.000000/16.000000/10.000000:u/0/6.000000/12.000000/10.000000/16.000000:s90/0/7.000000/12.000000/16.000000/16.000000:w90/0/7.000000/12.000000/16.000000/16.000000:e90/0/7.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/7.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%warped_seat,state=attached:false/facing:north/post:false,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000
|
|
||||||
modellist:id=%warped_seat,state=attached:false/facing:south/post:true,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/180/0,box=6.000000/7.000000/6.000000:10.000000/16.000000/10.000000:u/0/6.000000/12.000000/10.000000/16.000000:s90/0/7.000000/12.000000/16.000000/16.000000:w90/0/7.000000/12.000000/16.000000/16.000000:e90/0/7.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/7.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%warped_seat,state=attached:false/facing:south/post:false,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/180/0
|
|
||||||
modellist:id=%warped_seat,state=attached:false/facing:west/post:true,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/270/0,box=6.000000/7.000000/6.000000:10.000000/16.000000/10.000000:u/0/6.000000/12.000000/10.000000/16.000000:s90/0/7.000000/12.000000/16.000000/16.000000:w90/0/7.000000/12.000000/16.000000/16.000000:e90/0/7.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/7.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%warped_seat,state=attached:false/facing:west/post:false,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/270/0
|
|
||||||
modellist:id=%warped_seat,state=attached:false/facing:east/post:true,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/90/0,box=6.000000/7.000000/6.000000:10.000000/16.000000/10.000000:u/0/6.000000/12.000000/10.000000/16.000000:s90/0/7.000000/12.000000/16.000000/16.000000:w90/0/7.000000/12.000000/16.000000/16.000000:e90/0/7.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/7.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%warped_seat,state=attached:false/facing:east/post:false,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/90/0
|
|
||||||
modellist:id=%birch_seat,state=attached:true/facing:north/post:true,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:s90/0/12.000000/12.000000/16.000000/16.000000:w90/0/12.000000/12.000000/16.000000/16.000000:e90/0/12.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/12.000000/12.000000/16.000000/16.000000,box=6.000000/7.000000/6.000000:10.000000/16.000000/10.000000:u/0/6.000000/12.000000/10.000000/16.000000:s90/0/7.000000/12.000000/16.000000/16.000000:w90/0/7.000000/12.000000/16.000000/16.000000:e90/0/7.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/7.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%birch_seat,state=attached:true/facing:north/post:false,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:s90/0/12.000000/12.000000/16.000000/16.000000:w90/0/12.000000/12.000000/16.000000/16.000000:e90/0/12.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/12.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%birch_seat,state=attached:true/facing:south/post:true,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/180/0,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:s90/0/12.000000/12.000000/16.000000/16.000000:w90/0/12.000000/12.000000/16.000000/16.000000:e90/0/12.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/12.000000/12.000000/16.000000/16.000000,box=6.000000/7.000000/6.000000:10.000000/16.000000/10.000000:u/0/6.000000/12.000000/10.000000/16.000000:s90/0/7.000000/12.000000/16.000000/16.000000:w90/0/7.000000/12.000000/16.000000/16.000000:e90/0/7.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/7.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%birch_seat,state=attached:true/facing:south/post:false,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/180/0,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:s90/0/12.000000/12.000000/16.000000/16.000000:w90/0/12.000000/12.000000/16.000000/16.000000:e90/0/12.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/12.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%birch_seat,state=attached:true/facing:west/post:true,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/270/0,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:s90/0/12.000000/12.000000/16.000000/16.000000:w90/0/12.000000/12.000000/16.000000/16.000000:e90/0/12.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/12.000000/12.000000/16.000000/16.000000,box=6.000000/7.000000/6.000000:10.000000/16.000000/10.000000:u/0/6.000000/12.000000/10.000000/16.000000:s90/0/7.000000/12.000000/16.000000/16.000000:w90/0/7.000000/12.000000/16.000000/16.000000:e90/0/7.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/7.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%birch_seat,state=attached:true/facing:west/post:false,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/270/0,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:s90/0/12.000000/12.000000/16.000000/16.000000:w90/0/12.000000/12.000000/16.000000/16.000000:e90/0/12.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/12.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%birch_seat,state=attached:true/facing:east/post:true,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/90/0,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:s90/0/12.000000/12.000000/16.000000/16.000000:w90/0/12.000000/12.000000/16.000000/16.000000:e90/0/12.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/12.000000/12.000000/16.000000/16.000000,box=6.000000/7.000000/6.000000:10.000000/16.000000/10.000000:u/0/6.000000/12.000000/10.000000/16.000000:s90/0/7.000000/12.000000/16.000000/16.000000:w90/0/7.000000/12.000000/16.000000/16.000000:e90/0/7.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/7.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%birch_seat,state=attached:true/facing:east/post:false,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/90/0,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:s90/0/12.000000/12.000000/16.000000/16.000000:w90/0/12.000000/12.000000/16.000000/16.000000:e90/0/12.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/12.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%birch_seat,state=attached:false/facing:north/post:true,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000,box=6.000000/7.000000/6.000000:10.000000/16.000000/10.000000:u/0/6.000000/12.000000/10.000000/16.000000:s90/0/7.000000/12.000000/16.000000/16.000000:w90/0/7.000000/12.000000/16.000000/16.000000:e90/0/7.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/7.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%birch_seat,state=attached:false/facing:north/post:false,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000
|
|
||||||
modellist:id=%birch_seat,state=attached:false/facing:south/post:true,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/180/0,box=6.000000/7.000000/6.000000:10.000000/16.000000/10.000000:u/0/6.000000/12.000000/10.000000/16.000000:s90/0/7.000000/12.000000/16.000000/16.000000:w90/0/7.000000/12.000000/16.000000/16.000000:e90/0/7.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/7.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%birch_seat,state=attached:false/facing:south/post:false,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/180/0
|
|
||||||
modellist:id=%birch_seat,state=attached:false/facing:west/post:true,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/270/0,box=6.000000/7.000000/6.000000:10.000000/16.000000/10.000000:u/0/6.000000/12.000000/10.000000/16.000000:s90/0/7.000000/12.000000/16.000000/16.000000:w90/0/7.000000/12.000000/16.000000/16.000000:e90/0/7.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/7.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%birch_seat,state=attached:false/facing:west/post:false,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/270/0
|
|
||||||
modellist:id=%birch_seat,state=attached:false/facing:east/post:true,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/90/0,box=6.000000/7.000000/6.000000:10.000000/16.000000/10.000000:u/0/6.000000/12.000000/10.000000/16.000000:s90/0/7.000000/12.000000/16.000000/16.000000:w90/0/7.000000/12.000000/16.000000/16.000000:e90/0/7.000000/12.000000/16.000000/16.000000:d/0/6.000000/12.000000/10.000000/16.000000:n90/0/7.000000/12.000000/16.000000/16.000000
|
|
||||||
modellist:id=%birch_seat,state=attached:false/facing:east/post:false,box=0.000000/4.000000/4.000000:16.000000/7.000000/12.000000:u/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/9.000000/16.000000/12.000000:w/0/4.000000/9.000000/12.000000/12.000000:e/0/4.000000/9.000000/12.000000/12.000000:d/0/0.000000/0.000000/16.000000/8.000000:n/0/0.000000/9.000000/16.000000/12.000000:R/0/90/0
|
|
@ -1,979 +0,0 @@
|
|||||||
modname:decorative_blocks
|
|
||||||
|
|
||||||
texture:id=rocky_dirt,filename=assets/decorative_blocks/textures/block/rocky_dirt.png,xcount=1,ycount=1
|
|
||||||
texture:id=stone_pillar_end,filename=assets/decorative_blocks/textures/block/stone_pillar_end.png,xcount=1,ycount=1
|
|
||||||
texture:id=stone_pillar_side,filename=assets/decorative_blocks/textures/block/stone_pillar_side.png,xcount=1,ycount=1
|
|
||||||
texture:id=chain,filename=assets/decorative_blocks/textures/block/chain.png,xcount=1,ycount=1
|
|
||||||
texture:id=bar_panel_end,filename=assets/decorative_blocks/textures/block/bar_panel_end.png,xcount=1,ycount=1
|
|
||||||
texture:id=bar_panel_side,filename=assets/decorative_blocks/textures/block/bar_panel_side.png,xcount=1,ycount=1
|
|
||||||
texture:id=lattice,filename=assets/decorative_blocks/textures/block/lattice.png,xcount=1,ycount=1
|
|
||||||
texture:id=torch_1,filename=assets/decorative_blocks/textures/block/torch_1.png,xcount=1,ycount=1
|
|
||||||
texture:id=chandelier_base,filename=assets/decorative_blocks/textures/block/chandelier_base.png,xcount=1,ycount=1
|
|
||||||
texture:id=torch_2,filename=assets/decorative_blocks/textures/block/torch_2.png,xcount=1,ycount=1
|
|
||||||
texture:id=soul_torch_1,filename=assets/decorative_blocks/textures/block/soul_torch_1.png,xcount=1,ycount=1
|
|
||||||
texture:id=soul_torch_2,filename=assets/decorative_blocks/textures/block/soul_torch_2.png,xcount=1,ycount=1
|
|
||||||
texture:id=bonfire,filename=assets/decorative_blocks/textures/block/bonfire.png,xcount=1,ycount=1
|
|
||||||
texture:id=bonfire_x,filename=assets/decorative_blocks/textures/block/bonfire_x.png,xcount=1,ycount=1
|
|
||||||
texture:id=soul_bonfire,filename=assets/decorative_blocks/textures/block/soul_bonfire.png,xcount=1,ycount=1
|
|
||||||
texture:id=soul_bonfire_x,filename=assets/decorative_blocks/textures/block/soul_bonfire_x.png,xcount=1,ycount=1
|
|
||||||
texture:id=brazier_base,filename=assets/decorative_blocks/textures/block/brazier_base.png,xcount=1,ycount=1
|
|
||||||
texture:id=fire,filename=assets/decorative_blocks/textures/block/fire.png,xcount=1,ycount=1
|
|
||||||
texture:id=brazier,filename=assets/decorative_blocks/textures/block/brazier.png,xcount=1,ycount=1
|
|
||||||
texture:id=soul_fire,filename=assets/decorative_blocks/textures/block/soul_fire.png,xcount=1,ycount=1
|
|
||||||
texture:id=spruce_beam_side,filename=assets/decorative_blocks/textures/block/spruce_beam_side.png,xcount=1,ycount=1
|
|
||||||
texture:id=spruce_beam_end,filename=assets/decorative_blocks/textures/block/spruce_beam_end.png,xcount=1,ycount=1
|
|
||||||
texture:id=crimson_beam_side,filename=assets/decorative_blocks/textures/block/crimson_beam_side.png,xcount=1,ycount=1
|
|
||||||
texture:id=crimson_beam_end,filename=assets/decorative_blocks/textures/block/crimson_beam_end.png,xcount=1,ycount=1
|
|
||||||
texture:id=oak_beam_side,filename=assets/decorative_blocks/textures/block/oak_beam_side.png,xcount=1,ycount=1
|
|
||||||
texture:id=oak_beam_end,filename=assets/decorative_blocks/textures/block/oak_beam_end.png,xcount=1,ycount=1
|
|
||||||
texture:id=acacia_beam_side,filename=assets/decorative_blocks/textures/block/acacia_beam_side.png,xcount=1,ycount=1
|
|
||||||
texture:id=acacia_beam_end,filename=assets/decorative_blocks/textures/block/acacia_beam_end.png,xcount=1,ycount=1
|
|
||||||
texture:id=jungle_beam_side,filename=assets/decorative_blocks/textures/block/jungle_beam_side.png,xcount=1,ycount=1
|
|
||||||
texture:id=jungle_beam_end,filename=assets/decorative_blocks/textures/block/jungle_beam_end.png,xcount=1,ycount=1
|
|
||||||
texture:id=dark_oak_beam_side,filename=assets/decorative_blocks/textures/block/dark_oak_beam_side.png,xcount=1,ycount=1
|
|
||||||
texture:id=dark_oak_beam_end,filename=assets/decorative_blocks/textures/block/dark_oak_beam_end.png,xcount=1,ycount=1
|
|
||||||
texture:id=warped_beam_side,filename=assets/decorative_blocks/textures/block/warped_beam_side.png,xcount=1,ycount=1
|
|
||||||
texture:id=warped_beam_end,filename=assets/decorative_blocks/textures/block/warped_beam_end.png,xcount=1,ycount=1
|
|
||||||
texture:id=birch_beam_side,filename=assets/decorative_blocks/textures/block/birch_beam_side.png,xcount=1,ycount=1
|
|
||||||
texture:id=birch_beam_end,filename=assets/decorative_blocks/textures/block/birch_beam_end.png,xcount=1,ycount=1
|
|
||||||
texture:id=spruce_palisade_end,filename=assets/decorative_blocks/textures/block/spruce_palisade_end.png,xcount=1,ycount=1
|
|
||||||
texture:id=spruce_palisade_side,filename=assets/decorative_blocks/textures/block/spruce_palisade_side.png,xcount=1,ycount=1
|
|
||||||
texture:id=crimson_palisade_end,filename=assets/decorative_blocks/textures/block/crimson_palisade_end.png,xcount=1,ycount=1
|
|
||||||
texture:id=crimson_palisade_side,filename=assets/decorative_blocks/textures/block/crimson_palisade_side.png,xcount=1,ycount=1
|
|
||||||
texture:id=oak_palisade_end,filename=assets/decorative_blocks/textures/block/oak_palisade_end.png,xcount=1,ycount=1
|
|
||||||
texture:id=oak_palisade_side,filename=assets/decorative_blocks/textures/block/oak_palisade_side.png,xcount=1,ycount=1
|
|
||||||
texture:id=acacia_palisade_end,filename=assets/decorative_blocks/textures/block/acacia_palisade_end.png,xcount=1,ycount=1
|
|
||||||
texture:id=acacia_palisade_side,filename=assets/decorative_blocks/textures/block/acacia_palisade_side.png,xcount=1,ycount=1
|
|
||||||
texture:id=jungle_palisade_end,filename=assets/decorative_blocks/textures/block/jungle_palisade_end.png,xcount=1,ycount=1
|
|
||||||
texture:id=jungle_palisade_side,filename=assets/decorative_blocks/textures/block/jungle_palisade_side.png,xcount=1,ycount=1
|
|
||||||
texture:id=dark_oak_palisade_end,filename=assets/decorative_blocks/textures/block/dark_oak_palisade_end.png,xcount=1,ycount=1
|
|
||||||
texture:id=dark_oak_palisade_side,filename=assets/decorative_blocks/textures/block/dark_oak_palisade_side.png,xcount=1,ycount=1
|
|
||||||
texture:id=warped_palisade_end,filename=assets/decorative_blocks/textures/block/warped_palisade_end.png,xcount=1,ycount=1
|
|
||||||
texture:id=warped_palisade_side,filename=assets/decorative_blocks/textures/block/warped_palisade_side.png,xcount=1,ycount=1
|
|
||||||
texture:id=birch_palisade_end,filename=assets/decorative_blocks/textures/block/birch_palisade_end.png,xcount=1,ycount=1
|
|
||||||
texture:id=birch_palisade_side,filename=assets/decorative_blocks/textures/block/birch_palisade_side.png,xcount=1,ycount=1
|
|
||||||
texture:id=spruce_support_end,filename=assets/decorative_blocks/textures/block/spruce_support_end.png,xcount=1,ycount=1
|
|
||||||
texture:id=spruce_support_side,filename=assets/decorative_blocks/textures/block/spruce_support_side.png,xcount=1,ycount=1
|
|
||||||
texture:id=crimson_support_end,filename=assets/decorative_blocks/textures/block/crimson_support_end.png,xcount=1,ycount=1
|
|
||||||
texture:id=crimson_support_side,filename=assets/decorative_blocks/textures/block/crimson_support_side.png,xcount=1,ycount=1
|
|
||||||
texture:id=oak_support_end,filename=assets/decorative_blocks/textures/block/oak_support_end.png,xcount=1,ycount=1
|
|
||||||
texture:id=oak_support_side,filename=assets/decorative_blocks/textures/block/oak_support_side.png,xcount=1,ycount=1
|
|
||||||
texture:id=acacia_support_end,filename=assets/decorative_blocks/textures/block/acacia_support_end.png,xcount=1,ycount=1
|
|
||||||
texture:id=acacia_support_side,filename=assets/decorative_blocks/textures/block/acacia_support_side.png,xcount=1,ycount=1
|
|
||||||
texture:id=jungle_support_end,filename=assets/decorative_blocks/textures/block/jungle_support_end.png,xcount=1,ycount=1
|
|
||||||
texture:id=jungle_support_side,filename=assets/decorative_blocks/textures/block/jungle_support_side.png,xcount=1,ycount=1
|
|
||||||
texture:id=dark_oak_support_end,filename=assets/decorative_blocks/textures/block/dark_oak_support_end.png,xcount=1,ycount=1
|
|
||||||
texture:id=dark_oak_support_side,filename=assets/decorative_blocks/textures/block/dark_oak_support_side.png,xcount=1,ycount=1
|
|
||||||
texture:id=warped_support_end,filename=assets/decorative_blocks/textures/block/warped_support_end.png,xcount=1,ycount=1
|
|
||||||
texture:id=warped_support_side,filename=assets/decorative_blocks/textures/block/warped_support_side.png,xcount=1,ycount=1
|
|
||||||
texture:id=birch_support_end,filename=assets/decorative_blocks/textures/block/birch_support_end.png,xcount=1,ycount=1
|
|
||||||
texture:id=birch_support_side,filename=assets/decorative_blocks/textures/block/birch_support_side.png,xcount=1,ycount=1
|
|
||||||
texture:id=spruce_seat,filename=assets/decorative_blocks/textures/block/spruce_seat.png,xcount=1,ycount=1
|
|
||||||
texture:id=crimson_seat,filename=assets/decorative_blocks/textures/block/crimson_seat.png,xcount=1,ycount=1
|
|
||||||
texture:id=oak_seat,filename=assets/decorative_blocks/textures/block/oak_seat.png,xcount=1,ycount=1
|
|
||||||
texture:id=acacia_seat,filename=assets/decorative_blocks/textures/block/acacia_seat.png,xcount=1,ycount=1
|
|
||||||
texture:id=jungle_seat,filename=assets/decorative_blocks/textures/block/jungle_seat.png,xcount=1,ycount=1
|
|
||||||
texture:id=dark_oak_seat,filename=assets/decorative_blocks/textures/block/dark_oak_seat.png,xcount=1,ycount=1
|
|
||||||
texture:id=warped_seat,filename=assets/decorative_blocks/textures/block/warped_seat.png,xcount=1,ycount=1
|
|
||||||
texture:id=birch_seat,filename=assets/decorative_blocks/textures/block/birch_seat.png,xcount=1,ycount=1
|
|
||||||
block:id=%rocky_dirt,patch0=4000:rocky_dirt,patch1=0:rocky_dirt,patch2=0:rocky_dirt,patch3=6000:rocky_dirt,patch4=0:rocky_dirt,patch5=5000:rocky_dirt,stdrot=true
|
|
||||||
block:id=%stone_pillar,patch0=0:stone_pillar_end,patch1=0:stone_pillar_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%chain,state=axis:x,patch0=0:chain,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%chain,state=axis:y,patch0=0:chain,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%chain,state=axis:z,patch0=0:chain,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%bar_panel,state=facing:north/half:top/open:true,patch0=0:bar_panel_end,patch1=0:bar_panel_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%bar_panel,state=facing:north/half:top/open:false,patch0=0:bar_panel_side,patch1=0:bar_panel_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%bar_panel,state=facing:north/half:bottom/open:true,patch0=0:bar_panel_end,patch1=0:bar_panel_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%bar_panel,state=facing:north/half:bottom/open:false,patch0=0:bar_panel_side,patch1=0:bar_panel_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%bar_panel,state=facing:south/half:top/open:true,patch0=0:bar_panel_end,patch1=0:bar_panel_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%bar_panel,state=facing:south/half:top/open:false,patch0=0:bar_panel_side,patch1=0:bar_panel_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%bar_panel,state=facing:south/half:bottom/open:true,patch0=0:bar_panel_end,patch1=0:bar_panel_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%bar_panel,state=facing:south/half:bottom/open:false,patch0=0:bar_panel_side,patch1=0:bar_panel_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%bar_panel,state=facing:west/half:top/open:true,patch0=0:bar_panel_end,patch1=0:bar_panel_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%bar_panel,state=facing:west/half:top/open:false,patch0=0:bar_panel_side,patch1=0:bar_panel_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%bar_panel,state=facing:west/half:bottom/open:true,patch0=0:bar_panel_end,patch1=0:bar_panel_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%bar_panel,state=facing:west/half:bottom/open:false,patch0=0:bar_panel_side,patch1=0:bar_panel_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%bar_panel,state=facing:east/half:top/open:true,patch0=0:bar_panel_end,patch1=0:bar_panel_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%bar_panel,state=facing:east/half:top/open:false,patch0=0:bar_panel_side,patch1=0:bar_panel_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%bar_panel,state=facing:east/half:bottom/open:true,patch0=0:bar_panel_end,patch1=0:bar_panel_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%bar_panel,state=facing:east/half:bottom/open:false,patch0=0:bar_panel_side,patch1=0:bar_panel_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%lattice,state=facing:north/half:top/open:true,patch0=0:lattice,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%lattice,state=facing:north/half:top/open:false,patch0=0:lattice,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%lattice,state=facing:north/half:bottom/open:true,patch0=0:lattice,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%lattice,state=facing:north/half:bottom/open:false,patch0=0:lattice,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%lattice,state=facing:south/half:top/open:true,patch0=0:lattice,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%lattice,state=facing:south/half:top/open:false,patch0=0:lattice,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%lattice,state=facing:south/half:bottom/open:true,patch0=0:lattice,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%lattice,state=facing:south/half:bottom/open:false,patch0=0:lattice,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%lattice,state=facing:west/half:top/open:true,patch0=0:lattice,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%lattice,state=facing:west/half:top/open:false,patch0=0:lattice,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%lattice,state=facing:west/half:bottom/open:true,patch0=0:lattice,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%lattice,state=facing:west/half:bottom/open:false,patch0=0:lattice,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%lattice,state=facing:east/half:top/open:true,patch0=0:lattice,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%lattice,state=facing:east/half:top/open:false,patch0=0:lattice,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%lattice,state=facing:east/half:bottom/open:true,patch0=0:lattice,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%lattice,state=facing:east/half:bottom/open:false,patch0=0:lattice,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%chandelier,patch0=0:torch_1,patch1=0:chandelier_base,patch2=0:torch_2,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%soul_chandelier,patch0=0:soul_torch_1,patch1=0:chandelier_base,patch2=0:soul_torch_2,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%bonfire,patch0=0:bonfire,patch1=0:bonfire_x,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%soul_bonfire,patch0=0:soul_bonfire,patch1=0:soul_bonfire_x,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%brazier,state=lit:true,patch0=0:brazier_base,patch1=0:fire,patch2=0:brazier,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%brazier,state=lit:false,patch0=0:brazier_base,patch1=0:brazier,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%soul_brazier,state=lit:true,patch0=0:brazier_base,patch1=0:soul_fire,patch2=0:brazier,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%soul_brazier,state=lit:false,patch0=0:brazier_base,patch1=0:brazier,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_beam,state=axis:x,patch0=0:spruce_beam_end,patch1=6000:spruce_beam_side,patch2=6000:spruce_beam_side,patch3=0:spruce_beam_end,patch4=6000:spruce_beam_side,patch5=6000:spruce_beam_side,stdrot=true
|
|
||||||
block:id=%spruce_beam,state=axis:y,patch0=0:spruce_beam_side,patch1=0:spruce_beam_end,patch2=0:spruce_beam_side,patch3=0:spruce_beam_side,patch4=0:spruce_beam_end,patch5=0:spruce_beam_side,stdrot=true
|
|
||||||
block:id=%spruce_beam,state=axis:z,patch0=6000:spruce_beam_side,patch1=0:spruce_beam_side,patch2=0:spruce_beam_end,patch3=6000:spruce_beam_side,patch4=0:spruce_beam_side,patch5=0:spruce_beam_end,stdrot=true
|
|
||||||
block:id=%crimson_beam,state=axis:x,patch0=0:crimson_beam_end,patch1=6000:crimson_beam_side,patch2=6000:crimson_beam_side,patch3=0:crimson_beam_end,patch4=6000:crimson_beam_side,patch5=6000:crimson_beam_side,stdrot=true
|
|
||||||
block:id=%crimson_beam,state=axis:y,patch0=0:crimson_beam_side,patch1=0:crimson_beam_end,patch2=0:crimson_beam_side,patch3=0:crimson_beam_side,patch4=0:crimson_beam_end,patch5=0:crimson_beam_side,stdrot=true
|
|
||||||
block:id=%crimson_beam,state=axis:z,patch0=6000:crimson_beam_side,patch1=0:crimson_beam_side,patch2=0:crimson_beam_end,patch3=6000:crimson_beam_side,patch4=0:crimson_beam_side,patch5=0:crimson_beam_end,stdrot=true
|
|
||||||
block:id=%oak_beam,state=axis:x,patch0=0:oak_beam_end,patch1=6000:oak_beam_side,patch2=6000:oak_beam_side,patch3=0:oak_beam_end,patch4=6000:oak_beam_side,patch5=6000:oak_beam_side,stdrot=true
|
|
||||||
block:id=%oak_beam,state=axis:y,patch0=0:oak_beam_side,patch1=0:oak_beam_end,patch2=0:oak_beam_side,patch3=0:oak_beam_side,patch4=0:oak_beam_end,patch5=0:oak_beam_side,stdrot=true
|
|
||||||
block:id=%oak_beam,state=axis:z,patch0=6000:oak_beam_side,patch1=0:oak_beam_side,patch2=0:oak_beam_end,patch3=6000:oak_beam_side,patch4=0:oak_beam_side,patch5=0:oak_beam_end,stdrot=true
|
|
||||||
block:id=%acacia_beam,state=axis:x,patch0=0:acacia_beam_end,patch1=6000:acacia_beam_side,patch2=6000:acacia_beam_side,patch3=0:acacia_beam_end,patch4=6000:acacia_beam_side,patch5=6000:acacia_beam_side,stdrot=true
|
|
||||||
block:id=%acacia_beam,state=axis:y,patch0=0:acacia_beam_side,patch1=0:acacia_beam_end,patch2=0:acacia_beam_side,patch3=0:acacia_beam_side,patch4=0:acacia_beam_end,patch5=0:acacia_beam_side,stdrot=true
|
|
||||||
block:id=%acacia_beam,state=axis:z,patch0=6000:acacia_beam_side,patch1=0:acacia_beam_side,patch2=0:acacia_beam_end,patch3=6000:acacia_beam_side,patch4=0:acacia_beam_side,patch5=0:acacia_beam_end,stdrot=true
|
|
||||||
block:id=%jungle_beam,state=axis:x,patch0=0:jungle_beam_end,patch1=6000:jungle_beam_side,patch2=6000:jungle_beam_side,patch3=0:jungle_beam_end,patch4=6000:jungle_beam_side,patch5=6000:jungle_beam_side,stdrot=true
|
|
||||||
block:id=%jungle_beam,state=axis:y,patch0=0:jungle_beam_side,patch1=0:jungle_beam_end,patch2=0:jungle_beam_side,patch3=0:jungle_beam_side,patch4=0:jungle_beam_end,patch5=0:jungle_beam_side,stdrot=true
|
|
||||||
block:id=%jungle_beam,state=axis:z,patch0=6000:jungle_beam_side,patch1=0:jungle_beam_side,patch2=0:jungle_beam_end,patch3=6000:jungle_beam_side,patch4=0:jungle_beam_side,patch5=0:jungle_beam_end,stdrot=true
|
|
||||||
block:id=%dark_oak_beam,state=axis:x,patch0=0:dark_oak_beam_end,patch1=6000:dark_oak_beam_side,patch2=6000:dark_oak_beam_side,patch3=0:dark_oak_beam_end,patch4=6000:dark_oak_beam_side,patch5=6000:dark_oak_beam_side,stdrot=true
|
|
||||||
block:id=%dark_oak_beam,state=axis:y,patch0=0:dark_oak_beam_side,patch1=0:dark_oak_beam_end,patch2=0:dark_oak_beam_side,patch3=0:dark_oak_beam_side,patch4=0:dark_oak_beam_end,patch5=0:dark_oak_beam_side,stdrot=true
|
|
||||||
block:id=%dark_oak_beam,state=axis:z,patch0=6000:dark_oak_beam_side,patch1=0:dark_oak_beam_side,patch2=0:dark_oak_beam_end,patch3=6000:dark_oak_beam_side,patch4=0:dark_oak_beam_side,patch5=0:dark_oak_beam_end,stdrot=true
|
|
||||||
block:id=%warped_beam,state=axis:x,patch0=0:warped_beam_end,patch1=6000:warped_beam_side,patch2=6000:warped_beam_side,patch3=0:warped_beam_end,patch4=6000:warped_beam_side,patch5=6000:warped_beam_side,stdrot=true
|
|
||||||
block:id=%warped_beam,state=axis:y,patch0=0:warped_beam_side,patch1=0:warped_beam_end,patch2=0:warped_beam_side,patch3=0:warped_beam_side,patch4=0:warped_beam_end,patch5=0:warped_beam_side,stdrot=true
|
|
||||||
block:id=%warped_beam,state=axis:z,patch0=6000:warped_beam_side,patch1=0:warped_beam_side,patch2=0:warped_beam_end,patch3=6000:warped_beam_side,patch4=0:warped_beam_side,patch5=0:warped_beam_end,stdrot=true
|
|
||||||
block:id=%birch_beam,state=axis:x,patch0=0:birch_beam_end,patch1=6000:birch_beam_side,patch2=6000:birch_beam_side,patch3=0:birch_beam_end,patch4=6000:birch_beam_side,patch5=6000:birch_beam_side,stdrot=true
|
|
||||||
block:id=%birch_beam,state=axis:y,patch0=0:birch_beam_side,patch1=0:birch_beam_end,patch2=0:birch_beam_side,patch3=0:birch_beam_side,patch4=0:birch_beam_end,patch5=0:birch_beam_side,stdrot=true
|
|
||||||
block:id=%birch_beam,state=axis:z,patch0=6000:birch_beam_side,patch1=0:birch_beam_side,patch2=0:birch_beam_end,patch3=6000:birch_beam_side,patch4=0:birch_beam_side,patch5=0:birch_beam_end,stdrot=true
|
|
||||||
block:id=%spruce_palisade,state=west:true/east:true/south:true/north:true,patch0=0:spruce_palisade_end,patch1=0:spruce_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_palisade,state=west:false/east:true/south:true/north:true,patch0=0:spruce_palisade_end,patch1=0:spruce_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_palisade,state=west:true/east:true/south:false/north:true,patch0=0:spruce_palisade_end,patch1=0:spruce_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_palisade,state=west:false/east:true/south:false/north:true,patch0=0:spruce_palisade_end,patch1=0:spruce_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_palisade,state=west:true/east:true/south:true/north:false,patch0=0:spruce_palisade_end,patch1=0:spruce_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_palisade,state=west:false/east:true/south:true/north:false,patch0=0:spruce_palisade_end,patch1=0:spruce_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_palisade,state=west:true/east:true/south:false/north:false,patch0=0:spruce_palisade_end,patch1=0:spruce_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_palisade,state=west:false/east:true/south:false/north:false,patch0=0:spruce_palisade_end,patch1=0:spruce_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_palisade,state=west:true/east:false/south:true/north:true,patch0=0:spruce_palisade_end,patch1=0:spruce_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_palisade,state=west:false/east:false/south:true/north:true,patch0=0:spruce_palisade_end,patch1=0:spruce_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_palisade,state=west:true/east:false/south:false/north:true,patch0=0:spruce_palisade_end,patch1=0:spruce_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_palisade,state=west:false/east:false/south:false/north:true,patch0=0:spruce_palisade_end,patch1=0:spruce_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_palisade,state=west:true/east:false/south:true/north:false,patch0=0:spruce_palisade_end,patch1=0:spruce_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_palisade,state=west:false/east:false/south:true/north:false,patch0=0:spruce_palisade_end,patch1=0:spruce_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_palisade,state=west:true/east:false/south:false/north:false,patch0=0:spruce_palisade_end,patch1=0:spruce_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_palisade,state=west:false/east:false/south:false/north:false,patch0=0:spruce_palisade_end,patch1=0:spruce_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_palisade,state=west:true/east:true/south:true/north:true,patch0=0:crimson_palisade_end,patch1=0:crimson_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_palisade,state=west:false/east:true/south:true/north:true,patch0=0:crimson_palisade_end,patch1=0:crimson_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_palisade,state=west:true/east:true/south:false/north:true,patch0=0:crimson_palisade_end,patch1=0:crimson_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_palisade,state=west:false/east:true/south:false/north:true,patch0=0:crimson_palisade_end,patch1=0:crimson_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_palisade,state=west:true/east:true/south:true/north:false,patch0=0:crimson_palisade_end,patch1=0:crimson_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_palisade,state=west:false/east:true/south:true/north:false,patch0=0:crimson_palisade_end,patch1=0:crimson_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_palisade,state=west:true/east:true/south:false/north:false,patch0=0:crimson_palisade_end,patch1=0:crimson_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_palisade,state=west:false/east:true/south:false/north:false,patch0=0:crimson_palisade_end,patch1=0:crimson_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_palisade,state=west:true/east:false/south:true/north:true,patch0=0:crimson_palisade_end,patch1=0:crimson_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_palisade,state=west:false/east:false/south:true/north:true,patch0=0:crimson_palisade_end,patch1=0:crimson_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_palisade,state=west:true/east:false/south:false/north:true,patch0=0:crimson_palisade_end,patch1=0:crimson_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_palisade,state=west:false/east:false/south:false/north:true,patch0=0:crimson_palisade_end,patch1=0:crimson_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_palisade,state=west:true/east:false/south:true/north:false,patch0=0:crimson_palisade_end,patch1=0:crimson_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_palisade,state=west:false/east:false/south:true/north:false,patch0=0:crimson_palisade_end,patch1=0:crimson_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_palisade,state=west:true/east:false/south:false/north:false,patch0=0:crimson_palisade_end,patch1=0:crimson_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_palisade,state=west:false/east:false/south:false/north:false,patch0=0:crimson_palisade_end,patch1=0:crimson_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_palisade,state=west:true/east:true/south:true/north:true,patch0=0:oak_palisade_end,patch1=0:oak_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_palisade,state=west:false/east:true/south:true/north:true,patch0=0:oak_palisade_end,patch1=0:oak_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_palisade,state=west:true/east:true/south:false/north:true,patch0=0:oak_palisade_end,patch1=0:oak_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_palisade,state=west:false/east:true/south:false/north:true,patch0=0:oak_palisade_end,patch1=0:oak_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_palisade,state=west:true/east:true/south:true/north:false,patch0=0:oak_palisade_end,patch1=0:oak_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_palisade,state=west:false/east:true/south:true/north:false,patch0=0:oak_palisade_end,patch1=0:oak_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_palisade,state=west:true/east:true/south:false/north:false,patch0=0:oak_palisade_end,patch1=0:oak_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_palisade,state=west:false/east:true/south:false/north:false,patch0=0:oak_palisade_end,patch1=0:oak_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_palisade,state=west:true/east:false/south:true/north:true,patch0=0:oak_palisade_end,patch1=0:oak_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_palisade,state=west:false/east:false/south:true/north:true,patch0=0:oak_palisade_end,patch1=0:oak_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_palisade,state=west:true/east:false/south:false/north:true,patch0=0:oak_palisade_end,patch1=0:oak_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_palisade,state=west:false/east:false/south:false/north:true,patch0=0:oak_palisade_end,patch1=0:oak_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_palisade,state=west:true/east:false/south:true/north:false,patch0=0:oak_palisade_end,patch1=0:oak_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_palisade,state=west:false/east:false/south:true/north:false,patch0=0:oak_palisade_end,patch1=0:oak_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_palisade,state=west:true/east:false/south:false/north:false,patch0=0:oak_palisade_end,patch1=0:oak_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_palisade,state=west:false/east:false/south:false/north:false,patch0=0:oak_palisade_end,patch1=0:oak_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_palisade,state=west:true/east:true/south:true/north:true,patch0=0:acacia_palisade_end,patch1=0:acacia_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_palisade,state=west:false/east:true/south:true/north:true,patch0=0:acacia_palisade_end,patch1=0:acacia_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_palisade,state=west:true/east:true/south:false/north:true,patch0=0:acacia_palisade_end,patch1=0:acacia_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_palisade,state=west:false/east:true/south:false/north:true,patch0=0:acacia_palisade_end,patch1=0:acacia_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_palisade,state=west:true/east:true/south:true/north:false,patch0=0:acacia_palisade_end,patch1=0:acacia_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_palisade,state=west:false/east:true/south:true/north:false,patch0=0:acacia_palisade_end,patch1=0:acacia_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_palisade,state=west:true/east:true/south:false/north:false,patch0=0:acacia_palisade_end,patch1=0:acacia_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_palisade,state=west:false/east:true/south:false/north:false,patch0=0:acacia_palisade_end,patch1=0:acacia_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_palisade,state=west:true/east:false/south:true/north:true,patch0=0:acacia_palisade_end,patch1=0:acacia_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_palisade,state=west:false/east:false/south:true/north:true,patch0=0:acacia_palisade_end,patch1=0:acacia_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_palisade,state=west:true/east:false/south:false/north:true,patch0=0:acacia_palisade_end,patch1=0:acacia_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_palisade,state=west:false/east:false/south:false/north:true,patch0=0:acacia_palisade_end,patch1=0:acacia_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_palisade,state=west:true/east:false/south:true/north:false,patch0=0:acacia_palisade_end,patch1=0:acacia_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_palisade,state=west:false/east:false/south:true/north:false,patch0=0:acacia_palisade_end,patch1=0:acacia_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_palisade,state=west:true/east:false/south:false/north:false,patch0=0:acacia_palisade_end,patch1=0:acacia_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_palisade,state=west:false/east:false/south:false/north:false,patch0=0:acacia_palisade_end,patch1=0:acacia_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_palisade,state=west:true/east:true/south:true/north:true,patch0=0:jungle_palisade_end,patch1=0:jungle_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_palisade,state=west:false/east:true/south:true/north:true,patch0=0:jungle_palisade_end,patch1=0:jungle_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_palisade,state=west:true/east:true/south:false/north:true,patch0=0:jungle_palisade_end,patch1=0:jungle_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_palisade,state=west:false/east:true/south:false/north:true,patch0=0:jungle_palisade_end,patch1=0:jungle_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_palisade,state=west:true/east:true/south:true/north:false,patch0=0:jungle_palisade_end,patch1=0:jungle_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_palisade,state=west:false/east:true/south:true/north:false,patch0=0:jungle_palisade_end,patch1=0:jungle_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_palisade,state=west:true/east:true/south:false/north:false,patch0=0:jungle_palisade_end,patch1=0:jungle_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_palisade,state=west:false/east:true/south:false/north:false,patch0=0:jungle_palisade_end,patch1=0:jungle_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_palisade,state=west:true/east:false/south:true/north:true,patch0=0:jungle_palisade_end,patch1=0:jungle_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_palisade,state=west:false/east:false/south:true/north:true,patch0=0:jungle_palisade_end,patch1=0:jungle_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_palisade,state=west:true/east:false/south:false/north:true,patch0=0:jungle_palisade_end,patch1=0:jungle_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_palisade,state=west:false/east:false/south:false/north:true,patch0=0:jungle_palisade_end,patch1=0:jungle_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_palisade,state=west:true/east:false/south:true/north:false,patch0=0:jungle_palisade_end,patch1=0:jungle_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_palisade,state=west:false/east:false/south:true/north:false,patch0=0:jungle_palisade_end,patch1=0:jungle_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_palisade,state=west:true/east:false/south:false/north:false,patch0=0:jungle_palisade_end,patch1=0:jungle_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_palisade,state=west:false/east:false/south:false/north:false,patch0=0:jungle_palisade_end,patch1=0:jungle_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_palisade,state=west:true/east:true/south:true/north:true,patch0=0:dark_oak_palisade_end,patch1=0:dark_oak_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_palisade,state=west:false/east:true/south:true/north:true,patch0=0:dark_oak_palisade_end,patch1=0:dark_oak_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_palisade,state=west:true/east:true/south:false/north:true,patch0=0:dark_oak_palisade_end,patch1=0:dark_oak_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_palisade,state=west:false/east:true/south:false/north:true,patch0=0:dark_oak_palisade_end,patch1=0:dark_oak_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_palisade,state=west:true/east:true/south:true/north:false,patch0=0:dark_oak_palisade_end,patch1=0:dark_oak_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_palisade,state=west:false/east:true/south:true/north:false,patch0=0:dark_oak_palisade_end,patch1=0:dark_oak_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_palisade,state=west:true/east:true/south:false/north:false,patch0=0:dark_oak_palisade_end,patch1=0:dark_oak_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_palisade,state=west:false/east:true/south:false/north:false,patch0=0:dark_oak_palisade_end,patch1=0:dark_oak_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_palisade,state=west:true/east:false/south:true/north:true,patch0=0:dark_oak_palisade_end,patch1=0:dark_oak_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_palisade,state=west:false/east:false/south:true/north:true,patch0=0:dark_oak_palisade_end,patch1=0:dark_oak_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_palisade,state=west:true/east:false/south:false/north:true,patch0=0:dark_oak_palisade_end,patch1=0:dark_oak_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_palisade,state=west:false/east:false/south:false/north:true,patch0=0:dark_oak_palisade_end,patch1=0:dark_oak_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_palisade,state=west:true/east:false/south:true/north:false,patch0=0:dark_oak_palisade_end,patch1=0:dark_oak_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_palisade,state=west:false/east:false/south:true/north:false,patch0=0:dark_oak_palisade_end,patch1=0:dark_oak_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_palisade,state=west:true/east:false/south:false/north:false,patch0=0:dark_oak_palisade_end,patch1=0:dark_oak_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_palisade,state=west:false/east:false/south:false/north:false,patch0=0:dark_oak_palisade_end,patch1=0:dark_oak_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_palisade,state=west:true/east:true/south:true/north:true,patch0=0:warped_palisade_end,patch1=0:warped_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_palisade,state=west:false/east:true/south:true/north:true,patch0=0:warped_palisade_end,patch1=0:warped_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_palisade,state=west:true/east:true/south:false/north:true,patch0=0:warped_palisade_end,patch1=0:warped_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_palisade,state=west:false/east:true/south:false/north:true,patch0=0:warped_palisade_end,patch1=0:warped_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_palisade,state=west:true/east:true/south:true/north:false,patch0=0:warped_palisade_end,patch1=0:warped_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_palisade,state=west:false/east:true/south:true/north:false,patch0=0:warped_palisade_end,patch1=0:warped_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_palisade,state=west:true/east:true/south:false/north:false,patch0=0:warped_palisade_end,patch1=0:warped_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_palisade,state=west:false/east:true/south:false/north:false,patch0=0:warped_palisade_end,patch1=0:warped_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_palisade,state=west:true/east:false/south:true/north:true,patch0=0:warped_palisade_end,patch1=0:warped_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_palisade,state=west:false/east:false/south:true/north:true,patch0=0:warped_palisade_end,patch1=0:warped_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_palisade,state=west:true/east:false/south:false/north:true,patch0=0:warped_palisade_end,patch1=0:warped_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_palisade,state=west:false/east:false/south:false/north:true,patch0=0:warped_palisade_end,patch1=0:warped_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_palisade,state=west:true/east:false/south:true/north:false,patch0=0:warped_palisade_end,patch1=0:warped_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_palisade,state=west:false/east:false/south:true/north:false,patch0=0:warped_palisade_end,patch1=0:warped_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_palisade,state=west:true/east:false/south:false/north:false,patch0=0:warped_palisade_end,patch1=0:warped_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_palisade,state=west:false/east:false/south:false/north:false,patch0=0:warped_palisade_end,patch1=0:warped_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_palisade,state=west:true/east:true/south:true/north:true,patch0=0:birch_palisade_end,patch1=0:birch_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_palisade,state=west:false/east:true/south:true/north:true,patch0=0:birch_palisade_end,patch1=0:birch_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_palisade,state=west:true/east:true/south:false/north:true,patch0=0:birch_palisade_end,patch1=0:birch_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_palisade,state=west:false/east:true/south:false/north:true,patch0=0:birch_palisade_end,patch1=0:birch_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_palisade,state=west:true/east:true/south:true/north:false,patch0=0:birch_palisade_end,patch1=0:birch_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_palisade,state=west:false/east:true/south:true/north:false,patch0=0:birch_palisade_end,patch1=0:birch_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_palisade,state=west:true/east:true/south:false/north:false,patch0=0:birch_palisade_end,patch1=0:birch_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_palisade,state=west:false/east:true/south:false/north:false,patch0=0:birch_palisade_end,patch1=0:birch_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_palisade,state=west:true/east:false/south:true/north:true,patch0=0:birch_palisade_end,patch1=0:birch_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_palisade,state=west:false/east:false/south:true/north:true,patch0=0:birch_palisade_end,patch1=0:birch_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_palisade,state=west:true/east:false/south:false/north:true,patch0=0:birch_palisade_end,patch1=0:birch_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_palisade,state=west:false/east:false/south:false/north:true,patch0=0:birch_palisade_end,patch1=0:birch_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_palisade,state=west:true/east:false/south:true/north:false,patch0=0:birch_palisade_end,patch1=0:birch_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_palisade,state=west:false/east:false/south:true/north:false,patch0=0:birch_palisade_end,patch1=0:birch_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_palisade,state=west:true/east:false/south:false/north:false,patch0=0:birch_palisade_end,patch1=0:birch_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_palisade,state=west:false/east:false/south:false/north:false,patch0=0:birch_palisade_end,patch1=0:birch_palisade_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_support,state=facing:north/horizontal:big/vertical:big/up:true,patch0=0:spruce_support_end,patch1=0:spruce_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_support,state=facing:north/horizontal:big/vertical:small/up:true,patch0=0:spruce_support_end,patch1=0:spruce_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_support,state=facing:north/horizontal:big/vertical:hidden/up:true,patch0=0:spruce_support_end,patch1=0:spruce_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_support,state=facing:north/horizontal:big/vertical:big/up:false,patch0=0:spruce_support_side,patch1=0:spruce_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_support,state=facing:north/horizontal:big/vertical:small/up:false,patch0=0:spruce_support_side,patch1=0:spruce_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_support,state=facing:north/horizontal:big/vertical:hidden/up:false,patch0=0:spruce_support_side,patch1=0:spruce_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_support,state=facing:north/horizontal:small/vertical:big/up:true,patch0=0:spruce_support_end,patch1=0:spruce_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_support,state=facing:north/horizontal:small/vertical:small/up:true,patch0=0:spruce_support_end,patch1=0:spruce_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_support,state=facing:north/horizontal:small/vertical:hidden/up:true,patch0=0:spruce_support_end,patch1=0:spruce_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_support,state=facing:north/horizontal:small/vertical:big/up:false,patch0=0:spruce_support_side,patch1=0:spruce_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_support,state=facing:north/horizontal:small/vertical:small/up:false,patch0=0:spruce_support_side,patch1=0:spruce_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_support,state=facing:north/horizontal:small/vertical:hidden/up:false,patch0=0:spruce_support_side,patch1=0:spruce_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_support,state=facing:north/horizontal:hidden/vertical:big/up:true,patch0=0:spruce_support_end,patch1=0:spruce_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_support,state=facing:north/horizontal:hidden/vertical:small/up:true,patch0=0:spruce_support_end,patch1=0:spruce_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_support,state=facing:north/horizontal:hidden/vertical:hidden/up:true,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_support,state=facing:north/horizontal:hidden/vertical:big/up:false,patch0=0:spruce_support_side,patch1=0:spruce_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_support,state=facing:north/horizontal:hidden/vertical:small/up:false,patch0=0:spruce_support_side,patch1=0:spruce_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_support,state=facing:north/horizontal:hidden/vertical:hidden/up:false,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_support,state=facing:south/horizontal:big/vertical:big/up:true,patch0=0:spruce_support_end,patch1=0:spruce_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_support,state=facing:south/horizontal:big/vertical:small/up:true,patch0=0:spruce_support_end,patch1=0:spruce_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_support,state=facing:south/horizontal:big/vertical:hidden/up:true,patch0=0:spruce_support_end,patch1=0:spruce_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_support,state=facing:south/horizontal:big/vertical:big/up:false,patch0=0:spruce_support_side,patch1=0:spruce_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_support,state=facing:south/horizontal:big/vertical:small/up:false,patch0=0:spruce_support_side,patch1=0:spruce_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_support,state=facing:south/horizontal:big/vertical:hidden/up:false,patch0=0:spruce_support_side,patch1=0:spruce_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_support,state=facing:south/horizontal:small/vertical:big/up:true,patch0=0:spruce_support_end,patch1=0:spruce_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_support,state=facing:south/horizontal:small/vertical:small/up:true,patch0=0:spruce_support_end,patch1=0:spruce_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_support,state=facing:south/horizontal:small/vertical:hidden/up:true,patch0=0:spruce_support_end,patch1=0:spruce_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_support,state=facing:south/horizontal:small/vertical:big/up:false,patch0=0:spruce_support_side,patch1=0:spruce_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_support,state=facing:south/horizontal:small/vertical:small/up:false,patch0=0:spruce_support_side,patch1=0:spruce_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_support,state=facing:south/horizontal:small/vertical:hidden/up:false,patch0=0:spruce_support_side,patch1=0:spruce_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_support,state=facing:south/horizontal:hidden/vertical:big/up:true,patch0=0:spruce_support_end,patch1=0:spruce_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_support,state=facing:south/horizontal:hidden/vertical:small/up:true,patch0=0:spruce_support_end,patch1=0:spruce_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_support,state=facing:south/horizontal:hidden/vertical:hidden/up:true,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_support,state=facing:south/horizontal:hidden/vertical:big/up:false,patch0=0:spruce_support_side,patch1=0:spruce_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_support,state=facing:south/horizontal:hidden/vertical:small/up:false,patch0=0:spruce_support_side,patch1=0:spruce_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_support,state=facing:south/horizontal:hidden/vertical:hidden/up:false,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_support,state=facing:west/horizontal:big/vertical:big/up:true,patch0=0:spruce_support_end,patch1=0:spruce_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_support,state=facing:west/horizontal:big/vertical:small/up:true,patch0=0:spruce_support_end,patch1=0:spruce_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_support,state=facing:west/horizontal:big/vertical:hidden/up:true,patch0=0:spruce_support_end,patch1=0:spruce_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_support,state=facing:west/horizontal:big/vertical:big/up:false,patch0=0:spruce_support_side,patch1=0:spruce_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_support,state=facing:west/horizontal:big/vertical:small/up:false,patch0=0:spruce_support_side,patch1=0:spruce_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_support,state=facing:west/horizontal:big/vertical:hidden/up:false,patch0=0:spruce_support_side,patch1=0:spruce_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_support,state=facing:west/horizontal:small/vertical:big/up:true,patch0=0:spruce_support_end,patch1=0:spruce_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_support,state=facing:west/horizontal:small/vertical:small/up:true,patch0=0:spruce_support_end,patch1=0:spruce_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_support,state=facing:west/horizontal:small/vertical:hidden/up:true,patch0=0:spruce_support_end,patch1=0:spruce_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_support,state=facing:west/horizontal:small/vertical:big/up:false,patch0=0:spruce_support_side,patch1=0:spruce_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_support,state=facing:west/horizontal:small/vertical:small/up:false,patch0=0:spruce_support_side,patch1=0:spruce_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_support,state=facing:west/horizontal:small/vertical:hidden/up:false,patch0=0:spruce_support_side,patch1=0:spruce_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_support,state=facing:west/horizontal:hidden/vertical:big/up:true,patch0=0:spruce_support_end,patch1=0:spruce_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_support,state=facing:west/horizontal:hidden/vertical:small/up:true,patch0=0:spruce_support_end,patch1=0:spruce_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_support,state=facing:west/horizontal:hidden/vertical:hidden/up:true,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_support,state=facing:west/horizontal:hidden/vertical:big/up:false,patch0=0:spruce_support_side,patch1=0:spruce_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_support,state=facing:west/horizontal:hidden/vertical:small/up:false,patch0=0:spruce_support_side,patch1=0:spruce_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_support,state=facing:west/horizontal:hidden/vertical:hidden/up:false,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_support,state=facing:east/horizontal:big/vertical:big/up:true,patch0=0:spruce_support_end,patch1=0:spruce_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_support,state=facing:east/horizontal:big/vertical:small/up:true,patch0=0:spruce_support_end,patch1=0:spruce_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_support,state=facing:east/horizontal:big/vertical:hidden/up:true,patch0=0:spruce_support_end,patch1=0:spruce_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_support,state=facing:east/horizontal:big/vertical:big/up:false,patch0=0:spruce_support_side,patch1=0:spruce_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_support,state=facing:east/horizontal:big/vertical:small/up:false,patch0=0:spruce_support_side,patch1=0:spruce_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_support,state=facing:east/horizontal:big/vertical:hidden/up:false,patch0=0:spruce_support_side,patch1=0:spruce_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_support,state=facing:east/horizontal:small/vertical:big/up:true,patch0=0:spruce_support_end,patch1=0:spruce_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_support,state=facing:east/horizontal:small/vertical:small/up:true,patch0=0:spruce_support_end,patch1=0:spruce_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_support,state=facing:east/horizontal:small/vertical:hidden/up:true,patch0=0:spruce_support_end,patch1=0:spruce_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_support,state=facing:east/horizontal:small/vertical:big/up:false,patch0=0:spruce_support_side,patch1=0:spruce_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_support,state=facing:east/horizontal:small/vertical:small/up:false,patch0=0:spruce_support_side,patch1=0:spruce_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_support,state=facing:east/horizontal:small/vertical:hidden/up:false,patch0=0:spruce_support_side,patch1=0:spruce_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_support,state=facing:east/horizontal:hidden/vertical:big/up:true,patch0=0:spruce_support_end,patch1=0:spruce_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_support,state=facing:east/horizontal:hidden/vertical:small/up:true,patch0=0:spruce_support_end,patch1=0:spruce_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_support,state=facing:east/horizontal:hidden/vertical:hidden/up:true,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_support,state=facing:east/horizontal:hidden/vertical:big/up:false,patch0=0:spruce_support_side,patch1=0:spruce_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_support,state=facing:east/horizontal:hidden/vertical:small/up:false,patch0=0:spruce_support_side,patch1=0:spruce_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_support,state=facing:east/horizontal:hidden/vertical:hidden/up:false,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_support,state=facing:north/horizontal:big/vertical:big/up:true,patch0=0:crimson_support_end,patch1=0:crimson_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_support,state=facing:north/horizontal:big/vertical:small/up:true,patch0=0:crimson_support_end,patch1=0:crimson_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_support,state=facing:north/horizontal:big/vertical:hidden/up:true,patch0=0:crimson_support_end,patch1=0:crimson_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_support,state=facing:north/horizontal:big/vertical:big/up:false,patch0=0:crimson_support_side,patch1=0:crimson_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_support,state=facing:north/horizontal:big/vertical:small/up:false,patch0=0:crimson_support_side,patch1=0:crimson_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_support,state=facing:north/horizontal:big/vertical:hidden/up:false,patch0=0:crimson_support_side,patch1=0:crimson_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_support,state=facing:north/horizontal:small/vertical:big/up:true,patch0=0:crimson_support_end,patch1=0:crimson_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_support,state=facing:north/horizontal:small/vertical:small/up:true,patch0=0:crimson_support_end,patch1=0:crimson_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_support,state=facing:north/horizontal:small/vertical:hidden/up:true,patch0=0:crimson_support_end,patch1=0:crimson_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_support,state=facing:north/horizontal:small/vertical:big/up:false,patch0=0:crimson_support_side,patch1=0:crimson_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_support,state=facing:north/horizontal:small/vertical:small/up:false,patch0=0:crimson_support_side,patch1=0:crimson_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_support,state=facing:north/horizontal:small/vertical:hidden/up:false,patch0=0:crimson_support_side,patch1=0:crimson_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_support,state=facing:north/horizontal:hidden/vertical:big/up:true,patch0=0:crimson_support_end,patch1=0:crimson_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_support,state=facing:north/horizontal:hidden/vertical:small/up:true,patch0=0:crimson_support_end,patch1=0:crimson_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_support,state=facing:north/horizontal:hidden/vertical:hidden/up:true,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_support,state=facing:north/horizontal:hidden/vertical:big/up:false,patch0=0:crimson_support_side,patch1=0:crimson_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_support,state=facing:north/horizontal:hidden/vertical:small/up:false,patch0=0:crimson_support_side,patch1=0:crimson_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_support,state=facing:north/horizontal:hidden/vertical:hidden/up:false,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_support,state=facing:south/horizontal:big/vertical:big/up:true,patch0=0:crimson_support_end,patch1=0:crimson_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_support,state=facing:south/horizontal:big/vertical:small/up:true,patch0=0:crimson_support_end,patch1=0:crimson_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_support,state=facing:south/horizontal:big/vertical:hidden/up:true,patch0=0:crimson_support_end,patch1=0:crimson_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_support,state=facing:south/horizontal:big/vertical:big/up:false,patch0=0:crimson_support_side,patch1=0:crimson_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_support,state=facing:south/horizontal:big/vertical:small/up:false,patch0=0:crimson_support_side,patch1=0:crimson_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_support,state=facing:south/horizontal:big/vertical:hidden/up:false,patch0=0:crimson_support_side,patch1=0:crimson_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_support,state=facing:south/horizontal:small/vertical:big/up:true,patch0=0:crimson_support_end,patch1=0:crimson_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_support,state=facing:south/horizontal:small/vertical:small/up:true,patch0=0:crimson_support_end,patch1=0:crimson_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_support,state=facing:south/horizontal:small/vertical:hidden/up:true,patch0=0:crimson_support_end,patch1=0:crimson_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_support,state=facing:south/horizontal:small/vertical:big/up:false,patch0=0:crimson_support_side,patch1=0:crimson_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_support,state=facing:south/horizontal:small/vertical:small/up:false,patch0=0:crimson_support_side,patch1=0:crimson_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_support,state=facing:south/horizontal:small/vertical:hidden/up:false,patch0=0:crimson_support_side,patch1=0:crimson_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_support,state=facing:south/horizontal:hidden/vertical:big/up:true,patch0=0:crimson_support_end,patch1=0:crimson_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_support,state=facing:south/horizontal:hidden/vertical:small/up:true,patch0=0:crimson_support_end,patch1=0:crimson_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_support,state=facing:south/horizontal:hidden/vertical:hidden/up:true,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_support,state=facing:south/horizontal:hidden/vertical:big/up:false,patch0=0:crimson_support_side,patch1=0:crimson_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_support,state=facing:south/horizontal:hidden/vertical:small/up:false,patch0=0:crimson_support_side,patch1=0:crimson_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_support,state=facing:south/horizontal:hidden/vertical:hidden/up:false,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_support,state=facing:west/horizontal:big/vertical:big/up:true,patch0=0:crimson_support_end,patch1=0:crimson_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_support,state=facing:west/horizontal:big/vertical:small/up:true,patch0=0:crimson_support_end,patch1=0:crimson_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_support,state=facing:west/horizontal:big/vertical:hidden/up:true,patch0=0:crimson_support_end,patch1=0:crimson_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_support,state=facing:west/horizontal:big/vertical:big/up:false,patch0=0:crimson_support_side,patch1=0:crimson_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_support,state=facing:west/horizontal:big/vertical:small/up:false,patch0=0:crimson_support_side,patch1=0:crimson_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_support,state=facing:west/horizontal:big/vertical:hidden/up:false,patch0=0:crimson_support_side,patch1=0:crimson_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_support,state=facing:west/horizontal:small/vertical:big/up:true,patch0=0:crimson_support_end,patch1=0:crimson_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_support,state=facing:west/horizontal:small/vertical:small/up:true,patch0=0:crimson_support_end,patch1=0:crimson_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_support,state=facing:west/horizontal:small/vertical:hidden/up:true,patch0=0:crimson_support_end,patch1=0:crimson_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_support,state=facing:west/horizontal:small/vertical:big/up:false,patch0=0:crimson_support_side,patch1=0:crimson_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_support,state=facing:west/horizontal:small/vertical:small/up:false,patch0=0:crimson_support_side,patch1=0:crimson_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_support,state=facing:west/horizontal:small/vertical:hidden/up:false,patch0=0:crimson_support_side,patch1=0:crimson_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_support,state=facing:west/horizontal:hidden/vertical:big/up:true,patch0=0:crimson_support_end,patch1=0:crimson_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_support,state=facing:west/horizontal:hidden/vertical:small/up:true,patch0=0:crimson_support_end,patch1=0:crimson_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_support,state=facing:west/horizontal:hidden/vertical:hidden/up:true,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_support,state=facing:west/horizontal:hidden/vertical:big/up:false,patch0=0:crimson_support_side,patch1=0:crimson_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_support,state=facing:west/horizontal:hidden/vertical:small/up:false,patch0=0:crimson_support_side,patch1=0:crimson_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_support,state=facing:west/horizontal:hidden/vertical:hidden/up:false,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_support,state=facing:east/horizontal:big/vertical:big/up:true,patch0=0:crimson_support_end,patch1=0:crimson_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_support,state=facing:east/horizontal:big/vertical:small/up:true,patch0=0:crimson_support_end,patch1=0:crimson_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_support,state=facing:east/horizontal:big/vertical:hidden/up:true,patch0=0:crimson_support_end,patch1=0:crimson_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_support,state=facing:east/horizontal:big/vertical:big/up:false,patch0=0:crimson_support_side,patch1=0:crimson_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_support,state=facing:east/horizontal:big/vertical:small/up:false,patch0=0:crimson_support_side,patch1=0:crimson_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_support,state=facing:east/horizontal:big/vertical:hidden/up:false,patch0=0:crimson_support_side,patch1=0:crimson_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_support,state=facing:east/horizontal:small/vertical:big/up:true,patch0=0:crimson_support_end,patch1=0:crimson_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_support,state=facing:east/horizontal:small/vertical:small/up:true,patch0=0:crimson_support_end,patch1=0:crimson_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_support,state=facing:east/horizontal:small/vertical:hidden/up:true,patch0=0:crimson_support_end,patch1=0:crimson_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_support,state=facing:east/horizontal:small/vertical:big/up:false,patch0=0:crimson_support_side,patch1=0:crimson_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_support,state=facing:east/horizontal:small/vertical:small/up:false,patch0=0:crimson_support_side,patch1=0:crimson_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_support,state=facing:east/horizontal:small/vertical:hidden/up:false,patch0=0:crimson_support_side,patch1=0:crimson_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_support,state=facing:east/horizontal:hidden/vertical:big/up:true,patch0=0:crimson_support_end,patch1=0:crimson_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_support,state=facing:east/horizontal:hidden/vertical:small/up:true,patch0=0:crimson_support_end,patch1=0:crimson_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_support,state=facing:east/horizontal:hidden/vertical:hidden/up:true,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_support,state=facing:east/horizontal:hidden/vertical:big/up:false,patch0=0:crimson_support_side,patch1=0:crimson_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_support,state=facing:east/horizontal:hidden/vertical:small/up:false,patch0=0:crimson_support_side,patch1=0:crimson_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_support,state=facing:east/horizontal:hidden/vertical:hidden/up:false,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_support,state=facing:north/horizontal:big/vertical:big/up:true,patch0=0:oak_support_end,patch1=0:oak_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_support,state=facing:north/horizontal:big/vertical:small/up:true,patch0=0:oak_support_end,patch1=0:oak_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_support,state=facing:north/horizontal:big/vertical:hidden/up:true,patch0=0:oak_support_end,patch1=0:oak_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_support,state=facing:north/horizontal:big/vertical:big/up:false,patch0=0:oak_support_side,patch1=0:oak_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_support,state=facing:north/horizontal:big/vertical:small/up:false,patch0=0:oak_support_side,patch1=0:oak_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_support,state=facing:north/horizontal:big/vertical:hidden/up:false,patch0=0:oak_support_side,patch1=0:oak_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_support,state=facing:north/horizontal:small/vertical:big/up:true,patch0=0:oak_support_end,patch1=0:oak_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_support,state=facing:north/horizontal:small/vertical:small/up:true,patch0=0:oak_support_end,patch1=0:oak_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_support,state=facing:north/horizontal:small/vertical:hidden/up:true,patch0=0:oak_support_end,patch1=0:oak_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_support,state=facing:north/horizontal:small/vertical:big/up:false,patch0=0:oak_support_side,patch1=0:oak_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_support,state=facing:north/horizontal:small/vertical:small/up:false,patch0=0:oak_support_side,patch1=0:oak_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_support,state=facing:north/horizontal:small/vertical:hidden/up:false,patch0=0:oak_support_side,patch1=0:oak_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_support,state=facing:north/horizontal:hidden/vertical:big/up:true,patch0=0:oak_support_end,patch1=0:oak_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_support,state=facing:north/horizontal:hidden/vertical:small/up:true,patch0=0:oak_support_end,patch1=0:oak_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_support,state=facing:north/horizontal:hidden/vertical:hidden/up:true,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_support,state=facing:north/horizontal:hidden/vertical:big/up:false,patch0=0:oak_support_side,patch1=0:oak_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_support,state=facing:north/horizontal:hidden/vertical:small/up:false,patch0=0:oak_support_side,patch1=0:oak_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_support,state=facing:north/horizontal:hidden/vertical:hidden/up:false,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_support,state=facing:south/horizontal:big/vertical:big/up:true,patch0=0:oak_support_end,patch1=0:oak_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_support,state=facing:south/horizontal:big/vertical:small/up:true,patch0=0:oak_support_end,patch1=0:oak_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_support,state=facing:south/horizontal:big/vertical:hidden/up:true,patch0=0:oak_support_end,patch1=0:oak_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_support,state=facing:south/horizontal:big/vertical:big/up:false,patch0=0:oak_support_side,patch1=0:oak_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_support,state=facing:south/horizontal:big/vertical:small/up:false,patch0=0:oak_support_side,patch1=0:oak_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_support,state=facing:south/horizontal:big/vertical:hidden/up:false,patch0=0:oak_support_side,patch1=0:oak_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_support,state=facing:south/horizontal:small/vertical:big/up:true,patch0=0:oak_support_end,patch1=0:oak_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_support,state=facing:south/horizontal:small/vertical:small/up:true,patch0=0:oak_support_end,patch1=0:oak_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_support,state=facing:south/horizontal:small/vertical:hidden/up:true,patch0=0:oak_support_end,patch1=0:oak_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_support,state=facing:south/horizontal:small/vertical:big/up:false,patch0=0:oak_support_side,patch1=0:oak_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_support,state=facing:south/horizontal:small/vertical:small/up:false,patch0=0:oak_support_side,patch1=0:oak_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_support,state=facing:south/horizontal:small/vertical:hidden/up:false,patch0=0:oak_support_side,patch1=0:oak_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_support,state=facing:south/horizontal:hidden/vertical:big/up:true,patch0=0:oak_support_end,patch1=0:oak_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_support,state=facing:south/horizontal:hidden/vertical:small/up:true,patch0=0:oak_support_end,patch1=0:oak_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_support,state=facing:south/horizontal:hidden/vertical:hidden/up:true,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_support,state=facing:south/horizontal:hidden/vertical:big/up:false,patch0=0:oak_support_side,patch1=0:oak_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_support,state=facing:south/horizontal:hidden/vertical:small/up:false,patch0=0:oak_support_side,patch1=0:oak_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_support,state=facing:south/horizontal:hidden/vertical:hidden/up:false,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_support,state=facing:west/horizontal:big/vertical:big/up:true,patch0=0:oak_support_end,patch1=0:oak_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_support,state=facing:west/horizontal:big/vertical:small/up:true,patch0=0:oak_support_end,patch1=0:oak_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_support,state=facing:west/horizontal:big/vertical:hidden/up:true,patch0=0:oak_support_end,patch1=0:oak_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_support,state=facing:west/horizontal:big/vertical:big/up:false,patch0=0:oak_support_side,patch1=0:oak_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_support,state=facing:west/horizontal:big/vertical:small/up:false,patch0=0:oak_support_side,patch1=0:oak_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_support,state=facing:west/horizontal:big/vertical:hidden/up:false,patch0=0:oak_support_side,patch1=0:oak_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_support,state=facing:west/horizontal:small/vertical:big/up:true,patch0=0:oak_support_end,patch1=0:oak_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_support,state=facing:west/horizontal:small/vertical:small/up:true,patch0=0:oak_support_end,patch1=0:oak_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_support,state=facing:west/horizontal:small/vertical:hidden/up:true,patch0=0:oak_support_end,patch1=0:oak_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_support,state=facing:west/horizontal:small/vertical:big/up:false,patch0=0:oak_support_side,patch1=0:oak_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_support,state=facing:west/horizontal:small/vertical:small/up:false,patch0=0:oak_support_side,patch1=0:oak_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_support,state=facing:west/horizontal:small/vertical:hidden/up:false,patch0=0:oak_support_side,patch1=0:oak_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_support,state=facing:west/horizontal:hidden/vertical:big/up:true,patch0=0:oak_support_end,patch1=0:oak_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_support,state=facing:west/horizontal:hidden/vertical:small/up:true,patch0=0:oak_support_end,patch1=0:oak_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_support,state=facing:west/horizontal:hidden/vertical:hidden/up:true,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_support,state=facing:west/horizontal:hidden/vertical:big/up:false,patch0=0:oak_support_side,patch1=0:oak_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_support,state=facing:west/horizontal:hidden/vertical:small/up:false,patch0=0:oak_support_side,patch1=0:oak_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_support,state=facing:west/horizontal:hidden/vertical:hidden/up:false,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_support,state=facing:east/horizontal:big/vertical:big/up:true,patch0=0:oak_support_end,patch1=0:oak_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_support,state=facing:east/horizontal:big/vertical:small/up:true,patch0=0:oak_support_end,patch1=0:oak_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_support,state=facing:east/horizontal:big/vertical:hidden/up:true,patch0=0:oak_support_end,patch1=0:oak_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_support,state=facing:east/horizontal:big/vertical:big/up:false,patch0=0:oak_support_side,patch1=0:oak_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_support,state=facing:east/horizontal:big/vertical:small/up:false,patch0=0:oak_support_side,patch1=0:oak_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_support,state=facing:east/horizontal:big/vertical:hidden/up:false,patch0=0:oak_support_side,patch1=0:oak_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_support,state=facing:east/horizontal:small/vertical:big/up:true,patch0=0:oak_support_end,patch1=0:oak_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_support,state=facing:east/horizontal:small/vertical:small/up:true,patch0=0:oak_support_end,patch1=0:oak_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_support,state=facing:east/horizontal:small/vertical:hidden/up:true,patch0=0:oak_support_end,patch1=0:oak_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_support,state=facing:east/horizontal:small/vertical:big/up:false,patch0=0:oak_support_side,patch1=0:oak_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_support,state=facing:east/horizontal:small/vertical:small/up:false,patch0=0:oak_support_side,patch1=0:oak_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_support,state=facing:east/horizontal:small/vertical:hidden/up:false,patch0=0:oak_support_side,patch1=0:oak_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_support,state=facing:east/horizontal:hidden/vertical:big/up:true,patch0=0:oak_support_end,patch1=0:oak_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_support,state=facing:east/horizontal:hidden/vertical:small/up:true,patch0=0:oak_support_end,patch1=0:oak_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_support,state=facing:east/horizontal:hidden/vertical:hidden/up:true,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_support,state=facing:east/horizontal:hidden/vertical:big/up:false,patch0=0:oak_support_side,patch1=0:oak_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_support,state=facing:east/horizontal:hidden/vertical:small/up:false,patch0=0:oak_support_side,patch1=0:oak_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_support,state=facing:east/horizontal:hidden/vertical:hidden/up:false,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_support,state=facing:north/horizontal:big/vertical:big/up:true,patch0=0:acacia_support_end,patch1=0:acacia_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_support,state=facing:north/horizontal:big/vertical:small/up:true,patch0=0:acacia_support_end,patch1=0:acacia_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_support,state=facing:north/horizontal:big/vertical:hidden/up:true,patch0=0:acacia_support_end,patch1=0:acacia_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_support,state=facing:north/horizontal:big/vertical:big/up:false,patch0=0:acacia_support_side,patch1=0:acacia_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_support,state=facing:north/horizontal:big/vertical:small/up:false,patch0=0:acacia_support_side,patch1=0:acacia_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_support,state=facing:north/horizontal:big/vertical:hidden/up:false,patch0=0:acacia_support_side,patch1=0:acacia_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_support,state=facing:north/horizontal:small/vertical:big/up:true,patch0=0:acacia_support_end,patch1=0:acacia_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_support,state=facing:north/horizontal:small/vertical:small/up:true,patch0=0:acacia_support_end,patch1=0:acacia_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_support,state=facing:north/horizontal:small/vertical:hidden/up:true,patch0=0:acacia_support_end,patch1=0:acacia_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_support,state=facing:north/horizontal:small/vertical:big/up:false,patch0=0:acacia_support_side,patch1=0:acacia_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_support,state=facing:north/horizontal:small/vertical:small/up:false,patch0=0:acacia_support_side,patch1=0:acacia_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_support,state=facing:north/horizontal:small/vertical:hidden/up:false,patch0=0:acacia_support_side,patch1=0:acacia_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_support,state=facing:north/horizontal:hidden/vertical:big/up:true,patch0=0:acacia_support_end,patch1=0:acacia_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_support,state=facing:north/horizontal:hidden/vertical:small/up:true,patch0=0:acacia_support_end,patch1=0:acacia_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_support,state=facing:north/horizontal:hidden/vertical:hidden/up:true,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_support,state=facing:north/horizontal:hidden/vertical:big/up:false,patch0=0:acacia_support_side,patch1=0:acacia_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_support,state=facing:north/horizontal:hidden/vertical:small/up:false,patch0=0:acacia_support_side,patch1=0:acacia_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_support,state=facing:north/horizontal:hidden/vertical:hidden/up:false,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_support,state=facing:south/horizontal:big/vertical:big/up:true,patch0=0:acacia_support_end,patch1=0:acacia_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_support,state=facing:south/horizontal:big/vertical:small/up:true,patch0=0:acacia_support_end,patch1=0:acacia_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_support,state=facing:south/horizontal:big/vertical:hidden/up:true,patch0=0:acacia_support_end,patch1=0:acacia_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_support,state=facing:south/horizontal:big/vertical:big/up:false,patch0=0:acacia_support_side,patch1=0:acacia_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_support,state=facing:south/horizontal:big/vertical:small/up:false,patch0=0:acacia_support_side,patch1=0:acacia_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_support,state=facing:south/horizontal:big/vertical:hidden/up:false,patch0=0:acacia_support_side,patch1=0:acacia_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_support,state=facing:south/horizontal:small/vertical:big/up:true,patch0=0:acacia_support_end,patch1=0:acacia_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_support,state=facing:south/horizontal:small/vertical:small/up:true,patch0=0:acacia_support_end,patch1=0:acacia_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_support,state=facing:south/horizontal:small/vertical:hidden/up:true,patch0=0:acacia_support_end,patch1=0:acacia_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_support,state=facing:south/horizontal:small/vertical:big/up:false,patch0=0:acacia_support_side,patch1=0:acacia_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_support,state=facing:south/horizontal:small/vertical:small/up:false,patch0=0:acacia_support_side,patch1=0:acacia_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_support,state=facing:south/horizontal:small/vertical:hidden/up:false,patch0=0:acacia_support_side,patch1=0:acacia_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_support,state=facing:south/horizontal:hidden/vertical:big/up:true,patch0=0:acacia_support_end,patch1=0:acacia_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_support,state=facing:south/horizontal:hidden/vertical:small/up:true,patch0=0:acacia_support_end,patch1=0:acacia_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_support,state=facing:south/horizontal:hidden/vertical:hidden/up:true,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_support,state=facing:south/horizontal:hidden/vertical:big/up:false,patch0=0:acacia_support_side,patch1=0:acacia_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_support,state=facing:south/horizontal:hidden/vertical:small/up:false,patch0=0:acacia_support_side,patch1=0:acacia_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_support,state=facing:south/horizontal:hidden/vertical:hidden/up:false,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_support,state=facing:west/horizontal:big/vertical:big/up:true,patch0=0:acacia_support_end,patch1=0:acacia_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_support,state=facing:west/horizontal:big/vertical:small/up:true,patch0=0:acacia_support_end,patch1=0:acacia_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_support,state=facing:west/horizontal:big/vertical:hidden/up:true,patch0=0:acacia_support_end,patch1=0:acacia_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_support,state=facing:west/horizontal:big/vertical:big/up:false,patch0=0:acacia_support_side,patch1=0:acacia_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_support,state=facing:west/horizontal:big/vertical:small/up:false,patch0=0:acacia_support_side,patch1=0:acacia_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_support,state=facing:west/horizontal:big/vertical:hidden/up:false,patch0=0:acacia_support_side,patch1=0:acacia_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_support,state=facing:west/horizontal:small/vertical:big/up:true,patch0=0:acacia_support_end,patch1=0:acacia_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_support,state=facing:west/horizontal:small/vertical:small/up:true,patch0=0:acacia_support_end,patch1=0:acacia_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_support,state=facing:west/horizontal:small/vertical:hidden/up:true,patch0=0:acacia_support_end,patch1=0:acacia_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_support,state=facing:west/horizontal:small/vertical:big/up:false,patch0=0:acacia_support_side,patch1=0:acacia_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_support,state=facing:west/horizontal:small/vertical:small/up:false,patch0=0:acacia_support_side,patch1=0:acacia_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_support,state=facing:west/horizontal:small/vertical:hidden/up:false,patch0=0:acacia_support_side,patch1=0:acacia_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_support,state=facing:west/horizontal:hidden/vertical:big/up:true,patch0=0:acacia_support_end,patch1=0:acacia_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_support,state=facing:west/horizontal:hidden/vertical:small/up:true,patch0=0:acacia_support_end,patch1=0:acacia_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_support,state=facing:west/horizontal:hidden/vertical:hidden/up:true,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_support,state=facing:west/horizontal:hidden/vertical:big/up:false,patch0=0:acacia_support_side,patch1=0:acacia_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_support,state=facing:west/horizontal:hidden/vertical:small/up:false,patch0=0:acacia_support_side,patch1=0:acacia_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_support,state=facing:west/horizontal:hidden/vertical:hidden/up:false,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_support,state=facing:east/horizontal:big/vertical:big/up:true,patch0=0:acacia_support_end,patch1=0:acacia_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_support,state=facing:east/horizontal:big/vertical:small/up:true,patch0=0:acacia_support_end,patch1=0:acacia_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_support,state=facing:east/horizontal:big/vertical:hidden/up:true,patch0=0:acacia_support_end,patch1=0:acacia_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_support,state=facing:east/horizontal:big/vertical:big/up:false,patch0=0:acacia_support_side,patch1=0:acacia_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_support,state=facing:east/horizontal:big/vertical:small/up:false,patch0=0:acacia_support_side,patch1=0:acacia_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_support,state=facing:east/horizontal:big/vertical:hidden/up:false,patch0=0:acacia_support_side,patch1=0:acacia_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_support,state=facing:east/horizontal:small/vertical:big/up:true,patch0=0:acacia_support_end,patch1=0:acacia_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_support,state=facing:east/horizontal:small/vertical:small/up:true,patch0=0:acacia_support_end,patch1=0:acacia_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_support,state=facing:east/horizontal:small/vertical:hidden/up:true,patch0=0:acacia_support_end,patch1=0:acacia_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_support,state=facing:east/horizontal:small/vertical:big/up:false,patch0=0:acacia_support_side,patch1=0:acacia_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_support,state=facing:east/horizontal:small/vertical:small/up:false,patch0=0:acacia_support_side,patch1=0:acacia_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_support,state=facing:east/horizontal:small/vertical:hidden/up:false,patch0=0:acacia_support_side,patch1=0:acacia_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_support,state=facing:east/horizontal:hidden/vertical:big/up:true,patch0=0:acacia_support_end,patch1=0:acacia_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_support,state=facing:east/horizontal:hidden/vertical:small/up:true,patch0=0:acacia_support_end,patch1=0:acacia_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_support,state=facing:east/horizontal:hidden/vertical:hidden/up:true,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_support,state=facing:east/horizontal:hidden/vertical:big/up:false,patch0=0:acacia_support_side,patch1=0:acacia_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_support,state=facing:east/horizontal:hidden/vertical:small/up:false,patch0=0:acacia_support_side,patch1=0:acacia_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_support,state=facing:east/horizontal:hidden/vertical:hidden/up:false,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_support,state=facing:north/horizontal:big/vertical:big/up:true,patch0=0:jungle_support_end,patch1=0:jungle_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_support,state=facing:north/horizontal:big/vertical:small/up:true,patch0=0:jungle_support_end,patch1=0:jungle_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_support,state=facing:north/horizontal:big/vertical:hidden/up:true,patch0=0:jungle_support_end,patch1=0:jungle_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_support,state=facing:north/horizontal:big/vertical:big/up:false,patch0=0:jungle_support_side,patch1=0:jungle_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_support,state=facing:north/horizontal:big/vertical:small/up:false,patch0=0:jungle_support_side,patch1=0:jungle_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_support,state=facing:north/horizontal:big/vertical:hidden/up:false,patch0=0:jungle_support_side,patch1=0:jungle_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_support,state=facing:north/horizontal:small/vertical:big/up:true,patch0=0:jungle_support_end,patch1=0:jungle_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_support,state=facing:north/horizontal:small/vertical:small/up:true,patch0=0:jungle_support_end,patch1=0:jungle_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_support,state=facing:north/horizontal:small/vertical:hidden/up:true,patch0=0:jungle_support_end,patch1=0:jungle_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_support,state=facing:north/horizontal:small/vertical:big/up:false,patch0=0:jungle_support_side,patch1=0:jungle_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_support,state=facing:north/horizontal:small/vertical:small/up:false,patch0=0:jungle_support_side,patch1=0:jungle_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_support,state=facing:north/horizontal:small/vertical:hidden/up:false,patch0=0:jungle_support_side,patch1=0:jungle_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_support,state=facing:north/horizontal:hidden/vertical:big/up:true,patch0=0:jungle_support_end,patch1=0:jungle_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_support,state=facing:north/horizontal:hidden/vertical:small/up:true,patch0=0:jungle_support_end,patch1=0:jungle_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_support,state=facing:north/horizontal:hidden/vertical:hidden/up:true,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_support,state=facing:north/horizontal:hidden/vertical:big/up:false,patch0=0:jungle_support_side,patch1=0:jungle_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_support,state=facing:north/horizontal:hidden/vertical:small/up:false,patch0=0:jungle_support_side,patch1=0:jungle_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_support,state=facing:north/horizontal:hidden/vertical:hidden/up:false,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_support,state=facing:south/horizontal:big/vertical:big/up:true,patch0=0:jungle_support_end,patch1=0:jungle_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_support,state=facing:south/horizontal:big/vertical:small/up:true,patch0=0:jungle_support_end,patch1=0:jungle_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_support,state=facing:south/horizontal:big/vertical:hidden/up:true,patch0=0:jungle_support_end,patch1=0:jungle_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_support,state=facing:south/horizontal:big/vertical:big/up:false,patch0=0:jungle_support_side,patch1=0:jungle_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_support,state=facing:south/horizontal:big/vertical:small/up:false,patch0=0:jungle_support_side,patch1=0:jungle_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_support,state=facing:south/horizontal:big/vertical:hidden/up:false,patch0=0:jungle_support_side,patch1=0:jungle_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_support,state=facing:south/horizontal:small/vertical:big/up:true,patch0=0:jungle_support_end,patch1=0:jungle_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_support,state=facing:south/horizontal:small/vertical:small/up:true,patch0=0:jungle_support_end,patch1=0:jungle_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_support,state=facing:south/horizontal:small/vertical:hidden/up:true,patch0=0:jungle_support_end,patch1=0:jungle_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_support,state=facing:south/horizontal:small/vertical:big/up:false,patch0=0:jungle_support_side,patch1=0:jungle_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_support,state=facing:south/horizontal:small/vertical:small/up:false,patch0=0:jungle_support_side,patch1=0:jungle_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_support,state=facing:south/horizontal:small/vertical:hidden/up:false,patch0=0:jungle_support_side,patch1=0:jungle_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_support,state=facing:south/horizontal:hidden/vertical:big/up:true,patch0=0:jungle_support_end,patch1=0:jungle_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_support,state=facing:south/horizontal:hidden/vertical:small/up:true,patch0=0:jungle_support_end,patch1=0:jungle_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_support,state=facing:south/horizontal:hidden/vertical:hidden/up:true,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_support,state=facing:south/horizontal:hidden/vertical:big/up:false,patch0=0:jungle_support_side,patch1=0:jungle_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_support,state=facing:south/horizontal:hidden/vertical:small/up:false,patch0=0:jungle_support_side,patch1=0:jungle_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_support,state=facing:south/horizontal:hidden/vertical:hidden/up:false,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_support,state=facing:west/horizontal:big/vertical:big/up:true,patch0=0:jungle_support_end,patch1=0:jungle_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_support,state=facing:west/horizontal:big/vertical:small/up:true,patch0=0:jungle_support_end,patch1=0:jungle_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_support,state=facing:west/horizontal:big/vertical:hidden/up:true,patch0=0:jungle_support_end,patch1=0:jungle_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_support,state=facing:west/horizontal:big/vertical:big/up:false,patch0=0:jungle_support_side,patch1=0:jungle_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_support,state=facing:west/horizontal:big/vertical:small/up:false,patch0=0:jungle_support_side,patch1=0:jungle_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_support,state=facing:west/horizontal:big/vertical:hidden/up:false,patch0=0:jungle_support_side,patch1=0:jungle_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_support,state=facing:west/horizontal:small/vertical:big/up:true,patch0=0:jungle_support_end,patch1=0:jungle_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_support,state=facing:west/horizontal:small/vertical:small/up:true,patch0=0:jungle_support_end,patch1=0:jungle_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_support,state=facing:west/horizontal:small/vertical:hidden/up:true,patch0=0:jungle_support_end,patch1=0:jungle_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_support,state=facing:west/horizontal:small/vertical:big/up:false,patch0=0:jungle_support_side,patch1=0:jungle_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_support,state=facing:west/horizontal:small/vertical:small/up:false,patch0=0:jungle_support_side,patch1=0:jungle_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_support,state=facing:west/horizontal:small/vertical:hidden/up:false,patch0=0:jungle_support_side,patch1=0:jungle_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_support,state=facing:west/horizontal:hidden/vertical:big/up:true,patch0=0:jungle_support_end,patch1=0:jungle_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_support,state=facing:west/horizontal:hidden/vertical:small/up:true,patch0=0:jungle_support_end,patch1=0:jungle_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_support,state=facing:west/horizontal:hidden/vertical:hidden/up:true,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_support,state=facing:west/horizontal:hidden/vertical:big/up:false,patch0=0:jungle_support_side,patch1=0:jungle_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_support,state=facing:west/horizontal:hidden/vertical:small/up:false,patch0=0:jungle_support_side,patch1=0:jungle_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_support,state=facing:west/horizontal:hidden/vertical:hidden/up:false,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_support,state=facing:east/horizontal:big/vertical:big/up:true,patch0=0:jungle_support_end,patch1=0:jungle_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_support,state=facing:east/horizontal:big/vertical:small/up:true,patch0=0:jungle_support_end,patch1=0:jungle_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_support,state=facing:east/horizontal:big/vertical:hidden/up:true,patch0=0:jungle_support_end,patch1=0:jungle_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_support,state=facing:east/horizontal:big/vertical:big/up:false,patch0=0:jungle_support_side,patch1=0:jungle_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_support,state=facing:east/horizontal:big/vertical:small/up:false,patch0=0:jungle_support_side,patch1=0:jungle_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_support,state=facing:east/horizontal:big/vertical:hidden/up:false,patch0=0:jungle_support_side,patch1=0:jungle_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_support,state=facing:east/horizontal:small/vertical:big/up:true,patch0=0:jungle_support_end,patch1=0:jungle_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_support,state=facing:east/horizontal:small/vertical:small/up:true,patch0=0:jungle_support_end,patch1=0:jungle_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_support,state=facing:east/horizontal:small/vertical:hidden/up:true,patch0=0:jungle_support_end,patch1=0:jungle_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_support,state=facing:east/horizontal:small/vertical:big/up:false,patch0=0:jungle_support_side,patch1=0:jungle_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_support,state=facing:east/horizontal:small/vertical:small/up:false,patch0=0:jungle_support_side,patch1=0:jungle_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_support,state=facing:east/horizontal:small/vertical:hidden/up:false,patch0=0:jungle_support_side,patch1=0:jungle_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_support,state=facing:east/horizontal:hidden/vertical:big/up:true,patch0=0:jungle_support_end,patch1=0:jungle_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_support,state=facing:east/horizontal:hidden/vertical:small/up:true,patch0=0:jungle_support_end,patch1=0:jungle_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_support,state=facing:east/horizontal:hidden/vertical:hidden/up:true,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_support,state=facing:east/horizontal:hidden/vertical:big/up:false,patch0=0:jungle_support_side,patch1=0:jungle_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_support,state=facing:east/horizontal:hidden/vertical:small/up:false,patch0=0:jungle_support_side,patch1=0:jungle_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_support,state=facing:east/horizontal:hidden/vertical:hidden/up:false,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_support,state=facing:north/horizontal:big/vertical:big/up:true,patch0=0:dark_oak_support_end,patch1=0:dark_oak_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_support,state=facing:north/horizontal:big/vertical:small/up:true,patch0=0:dark_oak_support_end,patch1=0:dark_oak_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_support,state=facing:north/horizontal:big/vertical:hidden/up:true,patch0=0:dark_oak_support_end,patch1=0:dark_oak_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_support,state=facing:north/horizontal:big/vertical:big/up:false,patch0=0:dark_oak_support_side,patch1=0:dark_oak_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_support,state=facing:north/horizontal:big/vertical:small/up:false,patch0=0:dark_oak_support_side,patch1=0:dark_oak_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_support,state=facing:north/horizontal:big/vertical:hidden/up:false,patch0=0:dark_oak_support_side,patch1=0:dark_oak_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_support,state=facing:north/horizontal:small/vertical:big/up:true,patch0=0:dark_oak_support_end,patch1=0:dark_oak_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_support,state=facing:north/horizontal:small/vertical:small/up:true,patch0=0:dark_oak_support_end,patch1=0:dark_oak_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_support,state=facing:north/horizontal:small/vertical:hidden/up:true,patch0=0:dark_oak_support_end,patch1=0:dark_oak_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_support,state=facing:north/horizontal:small/vertical:big/up:false,patch0=0:dark_oak_support_side,patch1=0:dark_oak_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_support,state=facing:north/horizontal:small/vertical:small/up:false,patch0=0:dark_oak_support_side,patch1=0:dark_oak_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_support,state=facing:north/horizontal:small/vertical:hidden/up:false,patch0=0:dark_oak_support_side,patch1=0:dark_oak_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_support,state=facing:north/horizontal:hidden/vertical:big/up:true,patch0=0:dark_oak_support_end,patch1=0:dark_oak_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_support,state=facing:north/horizontal:hidden/vertical:small/up:true,patch0=0:dark_oak_support_end,patch1=0:dark_oak_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_support,state=facing:north/horizontal:hidden/vertical:hidden/up:true,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_support,state=facing:north/horizontal:hidden/vertical:big/up:false,patch0=0:dark_oak_support_side,patch1=0:dark_oak_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_support,state=facing:north/horizontal:hidden/vertical:small/up:false,patch0=0:dark_oak_support_side,patch1=0:dark_oak_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_support,state=facing:north/horizontal:hidden/vertical:hidden/up:false,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_support,state=facing:south/horizontal:big/vertical:big/up:true,patch0=0:dark_oak_support_end,patch1=0:dark_oak_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_support,state=facing:south/horizontal:big/vertical:small/up:true,patch0=0:dark_oak_support_end,patch1=0:dark_oak_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_support,state=facing:south/horizontal:big/vertical:hidden/up:true,patch0=0:dark_oak_support_end,patch1=0:dark_oak_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_support,state=facing:south/horizontal:big/vertical:big/up:false,patch0=0:dark_oak_support_side,patch1=0:dark_oak_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_support,state=facing:south/horizontal:big/vertical:small/up:false,patch0=0:dark_oak_support_side,patch1=0:dark_oak_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_support,state=facing:south/horizontal:big/vertical:hidden/up:false,patch0=0:dark_oak_support_side,patch1=0:dark_oak_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_support,state=facing:south/horizontal:small/vertical:big/up:true,patch0=0:dark_oak_support_end,patch1=0:dark_oak_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_support,state=facing:south/horizontal:small/vertical:small/up:true,patch0=0:dark_oak_support_end,patch1=0:dark_oak_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_support,state=facing:south/horizontal:small/vertical:hidden/up:true,patch0=0:dark_oak_support_end,patch1=0:dark_oak_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_support,state=facing:south/horizontal:small/vertical:big/up:false,patch0=0:dark_oak_support_side,patch1=0:dark_oak_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_support,state=facing:south/horizontal:small/vertical:small/up:false,patch0=0:dark_oak_support_side,patch1=0:dark_oak_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_support,state=facing:south/horizontal:small/vertical:hidden/up:false,patch0=0:dark_oak_support_side,patch1=0:dark_oak_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_support,state=facing:south/horizontal:hidden/vertical:big/up:true,patch0=0:dark_oak_support_end,patch1=0:dark_oak_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_support,state=facing:south/horizontal:hidden/vertical:small/up:true,patch0=0:dark_oak_support_end,patch1=0:dark_oak_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_support,state=facing:south/horizontal:hidden/vertical:hidden/up:true,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_support,state=facing:south/horizontal:hidden/vertical:big/up:false,patch0=0:dark_oak_support_side,patch1=0:dark_oak_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_support,state=facing:south/horizontal:hidden/vertical:small/up:false,patch0=0:dark_oak_support_side,patch1=0:dark_oak_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_support,state=facing:south/horizontal:hidden/vertical:hidden/up:false,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_support,state=facing:west/horizontal:big/vertical:big/up:true,patch0=0:dark_oak_support_end,patch1=0:dark_oak_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_support,state=facing:west/horizontal:big/vertical:small/up:true,patch0=0:dark_oak_support_end,patch1=0:dark_oak_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_support,state=facing:west/horizontal:big/vertical:hidden/up:true,patch0=0:dark_oak_support_end,patch1=0:dark_oak_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_support,state=facing:west/horizontal:big/vertical:big/up:false,patch0=0:dark_oak_support_side,patch1=0:dark_oak_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_support,state=facing:west/horizontal:big/vertical:small/up:false,patch0=0:dark_oak_support_side,patch1=0:dark_oak_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_support,state=facing:west/horizontal:big/vertical:hidden/up:false,patch0=0:dark_oak_support_side,patch1=0:dark_oak_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_support,state=facing:west/horizontal:small/vertical:big/up:true,patch0=0:dark_oak_support_end,patch1=0:dark_oak_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_support,state=facing:west/horizontal:small/vertical:small/up:true,patch0=0:dark_oak_support_end,patch1=0:dark_oak_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_support,state=facing:west/horizontal:small/vertical:hidden/up:true,patch0=0:dark_oak_support_end,patch1=0:dark_oak_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_support,state=facing:west/horizontal:small/vertical:big/up:false,patch0=0:dark_oak_support_side,patch1=0:dark_oak_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_support,state=facing:west/horizontal:small/vertical:small/up:false,patch0=0:dark_oak_support_side,patch1=0:dark_oak_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_support,state=facing:west/horizontal:small/vertical:hidden/up:false,patch0=0:dark_oak_support_side,patch1=0:dark_oak_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_support,state=facing:west/horizontal:hidden/vertical:big/up:true,patch0=0:dark_oak_support_end,patch1=0:dark_oak_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_support,state=facing:west/horizontal:hidden/vertical:small/up:true,patch0=0:dark_oak_support_end,patch1=0:dark_oak_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_support,state=facing:west/horizontal:hidden/vertical:hidden/up:true,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_support,state=facing:west/horizontal:hidden/vertical:big/up:false,patch0=0:dark_oak_support_side,patch1=0:dark_oak_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_support,state=facing:west/horizontal:hidden/vertical:small/up:false,patch0=0:dark_oak_support_side,patch1=0:dark_oak_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_support,state=facing:west/horizontal:hidden/vertical:hidden/up:false,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_support,state=facing:east/horizontal:big/vertical:big/up:true,patch0=0:dark_oak_support_end,patch1=0:dark_oak_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_support,state=facing:east/horizontal:big/vertical:small/up:true,patch0=0:dark_oak_support_end,patch1=0:dark_oak_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_support,state=facing:east/horizontal:big/vertical:hidden/up:true,patch0=0:dark_oak_support_end,patch1=0:dark_oak_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_support,state=facing:east/horizontal:big/vertical:big/up:false,patch0=0:dark_oak_support_side,patch1=0:dark_oak_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_support,state=facing:east/horizontal:big/vertical:small/up:false,patch0=0:dark_oak_support_side,patch1=0:dark_oak_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_support,state=facing:east/horizontal:big/vertical:hidden/up:false,patch0=0:dark_oak_support_side,patch1=0:dark_oak_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_support,state=facing:east/horizontal:small/vertical:big/up:true,patch0=0:dark_oak_support_end,patch1=0:dark_oak_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_support,state=facing:east/horizontal:small/vertical:small/up:true,patch0=0:dark_oak_support_end,patch1=0:dark_oak_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_support,state=facing:east/horizontal:small/vertical:hidden/up:true,patch0=0:dark_oak_support_end,patch1=0:dark_oak_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_support,state=facing:east/horizontal:small/vertical:big/up:false,patch0=0:dark_oak_support_side,patch1=0:dark_oak_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_support,state=facing:east/horizontal:small/vertical:small/up:false,patch0=0:dark_oak_support_side,patch1=0:dark_oak_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_support,state=facing:east/horizontal:small/vertical:hidden/up:false,patch0=0:dark_oak_support_side,patch1=0:dark_oak_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_support,state=facing:east/horizontal:hidden/vertical:big/up:true,patch0=0:dark_oak_support_end,patch1=0:dark_oak_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_support,state=facing:east/horizontal:hidden/vertical:small/up:true,patch0=0:dark_oak_support_end,patch1=0:dark_oak_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_support,state=facing:east/horizontal:hidden/vertical:hidden/up:true,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_support,state=facing:east/horizontal:hidden/vertical:big/up:false,patch0=0:dark_oak_support_side,patch1=0:dark_oak_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_support,state=facing:east/horizontal:hidden/vertical:small/up:false,patch0=0:dark_oak_support_side,patch1=0:dark_oak_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_support,state=facing:east/horizontal:hidden/vertical:hidden/up:false,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_support,state=facing:north/horizontal:big/vertical:big/up:true,patch0=0:warped_support_end,patch1=0:warped_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_support,state=facing:north/horizontal:big/vertical:small/up:true,patch0=0:warped_support_end,patch1=0:warped_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_support,state=facing:north/horizontal:big/vertical:hidden/up:true,patch0=0:warped_support_end,patch1=0:warped_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_support,state=facing:north/horizontal:big/vertical:big/up:false,patch0=0:warped_support_side,patch1=0:warped_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_support,state=facing:north/horizontal:big/vertical:small/up:false,patch0=0:warped_support_side,patch1=0:warped_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_support,state=facing:north/horizontal:big/vertical:hidden/up:false,patch0=0:warped_support_side,patch1=0:warped_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_support,state=facing:north/horizontal:small/vertical:big/up:true,patch0=0:warped_support_end,patch1=0:warped_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_support,state=facing:north/horizontal:small/vertical:small/up:true,patch0=0:warped_support_end,patch1=0:warped_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_support,state=facing:north/horizontal:small/vertical:hidden/up:true,patch0=0:warped_support_end,patch1=0:warped_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_support,state=facing:north/horizontal:small/vertical:big/up:false,patch0=0:warped_support_side,patch1=0:warped_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_support,state=facing:north/horizontal:small/vertical:small/up:false,patch0=0:warped_support_side,patch1=0:warped_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_support,state=facing:north/horizontal:small/vertical:hidden/up:false,patch0=0:warped_support_side,patch1=0:warped_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_support,state=facing:north/horizontal:hidden/vertical:big/up:true,patch0=0:warped_support_end,patch1=0:warped_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_support,state=facing:north/horizontal:hidden/vertical:small/up:true,patch0=0:warped_support_end,patch1=0:warped_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_support,state=facing:north/horizontal:hidden/vertical:hidden/up:true,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_support,state=facing:north/horizontal:hidden/vertical:big/up:false,patch0=0:warped_support_side,patch1=0:warped_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_support,state=facing:north/horizontal:hidden/vertical:small/up:false,patch0=0:warped_support_side,patch1=0:warped_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_support,state=facing:north/horizontal:hidden/vertical:hidden/up:false,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_support,state=facing:south/horizontal:big/vertical:big/up:true,patch0=0:warped_support_end,patch1=0:warped_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_support,state=facing:south/horizontal:big/vertical:small/up:true,patch0=0:warped_support_end,patch1=0:warped_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_support,state=facing:south/horizontal:big/vertical:hidden/up:true,patch0=0:warped_support_end,patch1=0:warped_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_support,state=facing:south/horizontal:big/vertical:big/up:false,patch0=0:warped_support_side,patch1=0:warped_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_support,state=facing:south/horizontal:big/vertical:small/up:false,patch0=0:warped_support_side,patch1=0:warped_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_support,state=facing:south/horizontal:big/vertical:hidden/up:false,patch0=0:warped_support_side,patch1=0:warped_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_support,state=facing:south/horizontal:small/vertical:big/up:true,patch0=0:warped_support_end,patch1=0:warped_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_support,state=facing:south/horizontal:small/vertical:small/up:true,patch0=0:warped_support_end,patch1=0:warped_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_support,state=facing:south/horizontal:small/vertical:hidden/up:true,patch0=0:warped_support_end,patch1=0:warped_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_support,state=facing:south/horizontal:small/vertical:big/up:false,patch0=0:warped_support_side,patch1=0:warped_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_support,state=facing:south/horizontal:small/vertical:small/up:false,patch0=0:warped_support_side,patch1=0:warped_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_support,state=facing:south/horizontal:small/vertical:hidden/up:false,patch0=0:warped_support_side,patch1=0:warped_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_support,state=facing:south/horizontal:hidden/vertical:big/up:true,patch0=0:warped_support_end,patch1=0:warped_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_support,state=facing:south/horizontal:hidden/vertical:small/up:true,patch0=0:warped_support_end,patch1=0:warped_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_support,state=facing:south/horizontal:hidden/vertical:hidden/up:true,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_support,state=facing:south/horizontal:hidden/vertical:big/up:false,patch0=0:warped_support_side,patch1=0:warped_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_support,state=facing:south/horizontal:hidden/vertical:small/up:false,patch0=0:warped_support_side,patch1=0:warped_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_support,state=facing:south/horizontal:hidden/vertical:hidden/up:false,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_support,state=facing:west/horizontal:big/vertical:big/up:true,patch0=0:warped_support_end,patch1=0:warped_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_support,state=facing:west/horizontal:big/vertical:small/up:true,patch0=0:warped_support_end,patch1=0:warped_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_support,state=facing:west/horizontal:big/vertical:hidden/up:true,patch0=0:warped_support_end,patch1=0:warped_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_support,state=facing:west/horizontal:big/vertical:big/up:false,patch0=0:warped_support_side,patch1=0:warped_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_support,state=facing:west/horizontal:big/vertical:small/up:false,patch0=0:warped_support_side,patch1=0:warped_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_support,state=facing:west/horizontal:big/vertical:hidden/up:false,patch0=0:warped_support_side,patch1=0:warped_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_support,state=facing:west/horizontal:small/vertical:big/up:true,patch0=0:warped_support_end,patch1=0:warped_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_support,state=facing:west/horizontal:small/vertical:small/up:true,patch0=0:warped_support_end,patch1=0:warped_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_support,state=facing:west/horizontal:small/vertical:hidden/up:true,patch0=0:warped_support_end,patch1=0:warped_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_support,state=facing:west/horizontal:small/vertical:big/up:false,patch0=0:warped_support_side,patch1=0:warped_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_support,state=facing:west/horizontal:small/vertical:small/up:false,patch0=0:warped_support_side,patch1=0:warped_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_support,state=facing:west/horizontal:small/vertical:hidden/up:false,patch0=0:warped_support_side,patch1=0:warped_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_support,state=facing:west/horizontal:hidden/vertical:big/up:true,patch0=0:warped_support_end,patch1=0:warped_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_support,state=facing:west/horizontal:hidden/vertical:small/up:true,patch0=0:warped_support_end,patch1=0:warped_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_support,state=facing:west/horizontal:hidden/vertical:hidden/up:true,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_support,state=facing:west/horizontal:hidden/vertical:big/up:false,patch0=0:warped_support_side,patch1=0:warped_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_support,state=facing:west/horizontal:hidden/vertical:small/up:false,patch0=0:warped_support_side,patch1=0:warped_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_support,state=facing:west/horizontal:hidden/vertical:hidden/up:false,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_support,state=facing:east/horizontal:big/vertical:big/up:true,patch0=0:warped_support_end,patch1=0:warped_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_support,state=facing:east/horizontal:big/vertical:small/up:true,patch0=0:warped_support_end,patch1=0:warped_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_support,state=facing:east/horizontal:big/vertical:hidden/up:true,patch0=0:warped_support_end,patch1=0:warped_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_support,state=facing:east/horizontal:big/vertical:big/up:false,patch0=0:warped_support_side,patch1=0:warped_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_support,state=facing:east/horizontal:big/vertical:small/up:false,patch0=0:warped_support_side,patch1=0:warped_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_support,state=facing:east/horizontal:big/vertical:hidden/up:false,patch0=0:warped_support_side,patch1=0:warped_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_support,state=facing:east/horizontal:small/vertical:big/up:true,patch0=0:warped_support_end,patch1=0:warped_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_support,state=facing:east/horizontal:small/vertical:small/up:true,patch0=0:warped_support_end,patch1=0:warped_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_support,state=facing:east/horizontal:small/vertical:hidden/up:true,patch0=0:warped_support_end,patch1=0:warped_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_support,state=facing:east/horizontal:small/vertical:big/up:false,patch0=0:warped_support_side,patch1=0:warped_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_support,state=facing:east/horizontal:small/vertical:small/up:false,patch0=0:warped_support_side,patch1=0:warped_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_support,state=facing:east/horizontal:small/vertical:hidden/up:false,patch0=0:warped_support_side,patch1=0:warped_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_support,state=facing:east/horizontal:hidden/vertical:big/up:true,patch0=0:warped_support_end,patch1=0:warped_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_support,state=facing:east/horizontal:hidden/vertical:small/up:true,patch0=0:warped_support_end,patch1=0:warped_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_support,state=facing:east/horizontal:hidden/vertical:hidden/up:true,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_support,state=facing:east/horizontal:hidden/vertical:big/up:false,patch0=0:warped_support_side,patch1=0:warped_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_support,state=facing:east/horizontal:hidden/vertical:small/up:false,patch0=0:warped_support_side,patch1=0:warped_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_support,state=facing:east/horizontal:hidden/vertical:hidden/up:false,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_support,state=facing:north/horizontal:big/vertical:big/up:true,patch0=0:birch_support_end,patch1=0:birch_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_support,state=facing:north/horizontal:big/vertical:small/up:true,patch0=0:birch_support_end,patch1=0:birch_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_support,state=facing:north/horizontal:big/vertical:hidden/up:true,patch0=0:birch_support_end,patch1=0:birch_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_support,state=facing:north/horizontal:big/vertical:big/up:false,patch0=0:birch_support_side,patch1=0:birch_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_support,state=facing:north/horizontal:big/vertical:small/up:false,patch0=0:birch_support_side,patch1=0:birch_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_support,state=facing:north/horizontal:big/vertical:hidden/up:false,patch0=0:birch_support_side,patch1=0:birch_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_support,state=facing:north/horizontal:small/vertical:big/up:true,patch0=0:birch_support_end,patch1=0:birch_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_support,state=facing:north/horizontal:small/vertical:small/up:true,patch0=0:birch_support_end,patch1=0:birch_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_support,state=facing:north/horizontal:small/vertical:hidden/up:true,patch0=0:birch_support_end,patch1=0:birch_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_support,state=facing:north/horizontal:small/vertical:big/up:false,patch0=0:birch_support_side,patch1=0:birch_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_support,state=facing:north/horizontal:small/vertical:small/up:false,patch0=0:birch_support_side,patch1=0:birch_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_support,state=facing:north/horizontal:small/vertical:hidden/up:false,patch0=0:birch_support_side,patch1=0:birch_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_support,state=facing:north/horizontal:hidden/vertical:big/up:true,patch0=0:birch_support_end,patch1=0:birch_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_support,state=facing:north/horizontal:hidden/vertical:small/up:true,patch0=0:birch_support_end,patch1=0:birch_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_support,state=facing:north/horizontal:hidden/vertical:hidden/up:true,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_support,state=facing:north/horizontal:hidden/vertical:big/up:false,patch0=0:birch_support_side,patch1=0:birch_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_support,state=facing:north/horizontal:hidden/vertical:small/up:false,patch0=0:birch_support_side,patch1=0:birch_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_support,state=facing:north/horizontal:hidden/vertical:hidden/up:false,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_support,state=facing:south/horizontal:big/vertical:big/up:true,patch0=0:birch_support_end,patch1=0:birch_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_support,state=facing:south/horizontal:big/vertical:small/up:true,patch0=0:birch_support_end,patch1=0:birch_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_support,state=facing:south/horizontal:big/vertical:hidden/up:true,patch0=0:birch_support_end,patch1=0:birch_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_support,state=facing:south/horizontal:big/vertical:big/up:false,patch0=0:birch_support_side,patch1=0:birch_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_support,state=facing:south/horizontal:big/vertical:small/up:false,patch0=0:birch_support_side,patch1=0:birch_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_support,state=facing:south/horizontal:big/vertical:hidden/up:false,patch0=0:birch_support_side,patch1=0:birch_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_support,state=facing:south/horizontal:small/vertical:big/up:true,patch0=0:birch_support_end,patch1=0:birch_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_support,state=facing:south/horizontal:small/vertical:small/up:true,patch0=0:birch_support_end,patch1=0:birch_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_support,state=facing:south/horizontal:small/vertical:hidden/up:true,patch0=0:birch_support_end,patch1=0:birch_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_support,state=facing:south/horizontal:small/vertical:big/up:false,patch0=0:birch_support_side,patch1=0:birch_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_support,state=facing:south/horizontal:small/vertical:small/up:false,patch0=0:birch_support_side,patch1=0:birch_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_support,state=facing:south/horizontal:small/vertical:hidden/up:false,patch0=0:birch_support_side,patch1=0:birch_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_support,state=facing:south/horizontal:hidden/vertical:big/up:true,patch0=0:birch_support_end,patch1=0:birch_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_support,state=facing:south/horizontal:hidden/vertical:small/up:true,patch0=0:birch_support_end,patch1=0:birch_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_support,state=facing:south/horizontal:hidden/vertical:hidden/up:true,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_support,state=facing:south/horizontal:hidden/vertical:big/up:false,patch0=0:birch_support_side,patch1=0:birch_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_support,state=facing:south/horizontal:hidden/vertical:small/up:false,patch0=0:birch_support_side,patch1=0:birch_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_support,state=facing:south/horizontal:hidden/vertical:hidden/up:false,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_support,state=facing:west/horizontal:big/vertical:big/up:true,patch0=0:birch_support_end,patch1=0:birch_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_support,state=facing:west/horizontal:big/vertical:small/up:true,patch0=0:birch_support_end,patch1=0:birch_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_support,state=facing:west/horizontal:big/vertical:hidden/up:true,patch0=0:birch_support_end,patch1=0:birch_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_support,state=facing:west/horizontal:big/vertical:big/up:false,patch0=0:birch_support_side,patch1=0:birch_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_support,state=facing:west/horizontal:big/vertical:small/up:false,patch0=0:birch_support_side,patch1=0:birch_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_support,state=facing:west/horizontal:big/vertical:hidden/up:false,patch0=0:birch_support_side,patch1=0:birch_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_support,state=facing:west/horizontal:small/vertical:big/up:true,patch0=0:birch_support_end,patch1=0:birch_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_support,state=facing:west/horizontal:small/vertical:small/up:true,patch0=0:birch_support_end,patch1=0:birch_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_support,state=facing:west/horizontal:small/vertical:hidden/up:true,patch0=0:birch_support_end,patch1=0:birch_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_support,state=facing:west/horizontal:small/vertical:big/up:false,patch0=0:birch_support_side,patch1=0:birch_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_support,state=facing:west/horizontal:small/vertical:small/up:false,patch0=0:birch_support_side,patch1=0:birch_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_support,state=facing:west/horizontal:small/vertical:hidden/up:false,patch0=0:birch_support_side,patch1=0:birch_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_support,state=facing:west/horizontal:hidden/vertical:big/up:true,patch0=0:birch_support_end,patch1=0:birch_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_support,state=facing:west/horizontal:hidden/vertical:small/up:true,patch0=0:birch_support_end,patch1=0:birch_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_support,state=facing:west/horizontal:hidden/vertical:hidden/up:true,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_support,state=facing:west/horizontal:hidden/vertical:big/up:false,patch0=0:birch_support_side,patch1=0:birch_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_support,state=facing:west/horizontal:hidden/vertical:small/up:false,patch0=0:birch_support_side,patch1=0:birch_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_support,state=facing:west/horizontal:hidden/vertical:hidden/up:false,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_support,state=facing:east/horizontal:big/vertical:big/up:true,patch0=0:birch_support_end,patch1=0:birch_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_support,state=facing:east/horizontal:big/vertical:small/up:true,patch0=0:birch_support_end,patch1=0:birch_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_support,state=facing:east/horizontal:big/vertical:hidden/up:true,patch0=0:birch_support_end,patch1=0:birch_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_support,state=facing:east/horizontal:big/vertical:big/up:false,patch0=0:birch_support_side,patch1=0:birch_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_support,state=facing:east/horizontal:big/vertical:small/up:false,patch0=0:birch_support_side,patch1=0:birch_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_support,state=facing:east/horizontal:big/vertical:hidden/up:false,patch0=0:birch_support_side,patch1=0:birch_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_support,state=facing:east/horizontal:small/vertical:big/up:true,patch0=0:birch_support_end,patch1=0:birch_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_support,state=facing:east/horizontal:small/vertical:small/up:true,patch0=0:birch_support_end,patch1=0:birch_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_support,state=facing:east/horizontal:small/vertical:hidden/up:true,patch0=0:birch_support_end,patch1=0:birch_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_support,state=facing:east/horizontal:small/vertical:big/up:false,patch0=0:birch_support_side,patch1=0:birch_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_support,state=facing:east/horizontal:small/vertical:small/up:false,patch0=0:birch_support_side,patch1=0:birch_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_support,state=facing:east/horizontal:small/vertical:hidden/up:false,patch0=0:birch_support_side,patch1=0:birch_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_support,state=facing:east/horizontal:hidden/vertical:big/up:true,patch0=0:birch_support_end,patch1=0:birch_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_support,state=facing:east/horizontal:hidden/vertical:small/up:true,patch0=0:birch_support_end,patch1=0:birch_support_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_support,state=facing:east/horizontal:hidden/vertical:hidden/up:true,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_support,state=facing:east/horizontal:hidden/vertical:big/up:false,patch0=0:birch_support_side,patch1=0:birch_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_support,state=facing:east/horizontal:hidden/vertical:small/up:false,patch0=0:birch_support_side,patch1=0:birch_support_end,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_support,state=facing:east/horizontal:hidden/vertical:hidden/up:false,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_seat,state=attached:true/facing:north/post:true,patch0=0:spruce_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_seat,state=attached:true/facing:north/post:false,patch0=0:spruce_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_seat,state=attached:true/facing:south/post:true,patch0=0:spruce_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_seat,state=attached:true/facing:south/post:false,patch0=0:spruce_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_seat,state=attached:true/facing:west/post:true,patch0=0:spruce_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_seat,state=attached:true/facing:west/post:false,patch0=0:spruce_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_seat,state=attached:true/facing:east/post:true,patch0=0:spruce_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_seat,state=attached:true/facing:east/post:false,patch0=0:spruce_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_seat,state=attached:false/facing:north/post:true,patch0=0:spruce_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_seat,state=attached:false/facing:north/post:false,patch0=0:spruce_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_seat,state=attached:false/facing:south/post:true,patch0=0:spruce_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_seat,state=attached:false/facing:south/post:false,patch0=0:spruce_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_seat,state=attached:false/facing:west/post:true,patch0=0:spruce_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_seat,state=attached:false/facing:west/post:false,patch0=0:spruce_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_seat,state=attached:false/facing:east/post:true,patch0=0:spruce_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spruce_seat,state=attached:false/facing:east/post:false,patch0=0:spruce_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_seat,state=attached:true/facing:north/post:true,patch0=0:crimson_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_seat,state=attached:true/facing:north/post:false,patch0=0:crimson_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_seat,state=attached:true/facing:south/post:true,patch0=0:crimson_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_seat,state=attached:true/facing:south/post:false,patch0=0:crimson_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_seat,state=attached:true/facing:west/post:true,patch0=0:crimson_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_seat,state=attached:true/facing:west/post:false,patch0=0:crimson_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_seat,state=attached:true/facing:east/post:true,patch0=0:crimson_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_seat,state=attached:true/facing:east/post:false,patch0=0:crimson_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_seat,state=attached:false/facing:north/post:true,patch0=0:crimson_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_seat,state=attached:false/facing:north/post:false,patch0=0:crimson_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_seat,state=attached:false/facing:south/post:true,patch0=0:crimson_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_seat,state=attached:false/facing:south/post:false,patch0=0:crimson_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_seat,state=attached:false/facing:west/post:true,patch0=0:crimson_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_seat,state=attached:false/facing:west/post:false,patch0=0:crimson_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_seat,state=attached:false/facing:east/post:true,patch0=0:crimson_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%crimson_seat,state=attached:false/facing:east/post:false,patch0=0:crimson_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_seat,state=attached:true/facing:north/post:true,patch0=0:oak_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_seat,state=attached:true/facing:north/post:false,patch0=0:oak_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_seat,state=attached:true/facing:south/post:true,patch0=0:oak_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_seat,state=attached:true/facing:south/post:false,patch0=0:oak_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_seat,state=attached:true/facing:west/post:true,patch0=0:oak_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_seat,state=attached:true/facing:west/post:false,patch0=0:oak_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_seat,state=attached:true/facing:east/post:true,patch0=0:oak_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_seat,state=attached:true/facing:east/post:false,patch0=0:oak_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_seat,state=attached:false/facing:north/post:true,patch0=0:oak_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_seat,state=attached:false/facing:north/post:false,patch0=0:oak_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_seat,state=attached:false/facing:south/post:true,patch0=0:oak_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_seat,state=attached:false/facing:south/post:false,patch0=0:oak_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_seat,state=attached:false/facing:west/post:true,patch0=0:oak_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_seat,state=attached:false/facing:west/post:false,patch0=0:oak_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_seat,state=attached:false/facing:east/post:true,patch0=0:oak_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_seat,state=attached:false/facing:east/post:false,patch0=0:oak_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_seat,state=attached:true/facing:north/post:true,patch0=0:acacia_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_seat,state=attached:true/facing:north/post:false,patch0=0:acacia_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_seat,state=attached:true/facing:south/post:true,patch0=0:acacia_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_seat,state=attached:true/facing:south/post:false,patch0=0:acacia_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_seat,state=attached:true/facing:west/post:true,patch0=0:acacia_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_seat,state=attached:true/facing:west/post:false,patch0=0:acacia_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_seat,state=attached:true/facing:east/post:true,patch0=0:acacia_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_seat,state=attached:true/facing:east/post:false,patch0=0:acacia_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_seat,state=attached:false/facing:north/post:true,patch0=0:acacia_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_seat,state=attached:false/facing:north/post:false,patch0=0:acacia_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_seat,state=attached:false/facing:south/post:true,patch0=0:acacia_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_seat,state=attached:false/facing:south/post:false,patch0=0:acacia_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_seat,state=attached:false/facing:west/post:true,patch0=0:acacia_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_seat,state=attached:false/facing:west/post:false,patch0=0:acacia_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_seat,state=attached:false/facing:east/post:true,patch0=0:acacia_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%acacia_seat,state=attached:false/facing:east/post:false,patch0=0:acacia_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_seat,state=attached:true/facing:north/post:true,patch0=0:jungle_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_seat,state=attached:true/facing:north/post:false,patch0=0:jungle_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_seat,state=attached:true/facing:south/post:true,patch0=0:jungle_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_seat,state=attached:true/facing:south/post:false,patch0=0:jungle_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_seat,state=attached:true/facing:west/post:true,patch0=0:jungle_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_seat,state=attached:true/facing:west/post:false,patch0=0:jungle_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_seat,state=attached:true/facing:east/post:true,patch0=0:jungle_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_seat,state=attached:true/facing:east/post:false,patch0=0:jungle_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_seat,state=attached:false/facing:north/post:true,patch0=0:jungle_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_seat,state=attached:false/facing:north/post:false,patch0=0:jungle_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_seat,state=attached:false/facing:south/post:true,patch0=0:jungle_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_seat,state=attached:false/facing:south/post:false,patch0=0:jungle_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_seat,state=attached:false/facing:west/post:true,patch0=0:jungle_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_seat,state=attached:false/facing:west/post:false,patch0=0:jungle_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_seat,state=attached:false/facing:east/post:true,patch0=0:jungle_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%jungle_seat,state=attached:false/facing:east/post:false,patch0=0:jungle_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_seat,state=attached:true/facing:north/post:true,patch0=0:dark_oak_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_seat,state=attached:true/facing:north/post:false,patch0=0:dark_oak_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_seat,state=attached:true/facing:south/post:true,patch0=0:dark_oak_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_seat,state=attached:true/facing:south/post:false,patch0=0:dark_oak_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_seat,state=attached:true/facing:west/post:true,patch0=0:dark_oak_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_seat,state=attached:true/facing:west/post:false,patch0=0:dark_oak_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_seat,state=attached:true/facing:east/post:true,patch0=0:dark_oak_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_seat,state=attached:true/facing:east/post:false,patch0=0:dark_oak_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_seat,state=attached:false/facing:north/post:true,patch0=0:dark_oak_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_seat,state=attached:false/facing:north/post:false,patch0=0:dark_oak_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_seat,state=attached:false/facing:south/post:true,patch0=0:dark_oak_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_seat,state=attached:false/facing:south/post:false,patch0=0:dark_oak_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_seat,state=attached:false/facing:west/post:true,patch0=0:dark_oak_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_seat,state=attached:false/facing:west/post:false,patch0=0:dark_oak_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_seat,state=attached:false/facing:east/post:true,patch0=0:dark_oak_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dark_oak_seat,state=attached:false/facing:east/post:false,patch0=0:dark_oak_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_seat,state=attached:true/facing:north/post:true,patch0=0:warped_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_seat,state=attached:true/facing:north/post:false,patch0=0:warped_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_seat,state=attached:true/facing:south/post:true,patch0=0:warped_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_seat,state=attached:true/facing:south/post:false,patch0=0:warped_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_seat,state=attached:true/facing:west/post:true,patch0=0:warped_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_seat,state=attached:true/facing:west/post:false,patch0=0:warped_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_seat,state=attached:true/facing:east/post:true,patch0=0:warped_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_seat,state=attached:true/facing:east/post:false,patch0=0:warped_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_seat,state=attached:false/facing:north/post:true,patch0=0:warped_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_seat,state=attached:false/facing:north/post:false,patch0=0:warped_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_seat,state=attached:false/facing:south/post:true,patch0=0:warped_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_seat,state=attached:false/facing:south/post:false,patch0=0:warped_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_seat,state=attached:false/facing:west/post:true,patch0=0:warped_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_seat,state=attached:false/facing:west/post:false,patch0=0:warped_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_seat,state=attached:false/facing:east/post:true,patch0=0:warped_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%warped_seat,state=attached:false/facing:east/post:false,patch0=0:warped_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_seat,state=attached:true/facing:north/post:true,patch0=0:birch_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_seat,state=attached:true/facing:north/post:false,patch0=0:birch_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_seat,state=attached:true/facing:south/post:true,patch0=0:birch_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_seat,state=attached:true/facing:south/post:false,patch0=0:birch_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_seat,state=attached:true/facing:west/post:true,patch0=0:birch_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_seat,state=attached:true/facing:west/post:false,patch0=0:birch_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_seat,state=attached:true/facing:east/post:true,patch0=0:birch_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_seat,state=attached:true/facing:east/post:false,patch0=0:birch_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_seat,state=attached:false/facing:north/post:true,patch0=0:birch_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_seat,state=attached:false/facing:north/post:false,patch0=0:birch_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_seat,state=attached:false/facing:south/post:true,patch0=0:birch_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_seat,state=attached:false/facing:south/post:false,patch0=0:birch_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_seat,state=attached:false/facing:west/post:true,patch0=0:birch_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_seat,state=attached:false/facing:west/post:false,patch0=0:birch_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_seat,state=attached:false/facing:east/post:true,patch0=0:birch_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%birch_seat,state=attached:false/facing:east/post:false,patch0=0:birch_seat,transparency=SEMITRANSPARENT,stdrot=true
|
|
File diff suppressed because one or more lines are too long
@ -1,46 +0,0 @@
|
|||||||
modname:enderchests
|
|
||||||
|
|
||||||
texture:id=top,filename=assets/enderchests/textures/block/top.png,xcount=1,ycount=1
|
|
||||||
texture:id=side,filename=assets/enderchests/textures/block/side.png,xcount=1,ycount=1
|
|
||||||
texture:id=middle,filename=assets/enderchests/textures/block/middle.png,xcount=1,ycount=1
|
|
||||||
texture:id=bands,filename=assets/enderchests/textures/block/bands.png,xcount=1,ycount=1
|
|
||||||
texture:id=type_normal,filename=assets/enderchests/textures/block/type_normal.png,xcount=1,ycount=1
|
|
||||||
texture:id=type_private,filename=assets/enderchests/textures/block/type_private.png,xcount=1,ycount=1
|
|
||||||
texture:id=type_team,filename=assets/enderchests/textures/block/type_team.png,xcount=1,ycount=1
|
|
||||||
texture:id=spcommon:space,filename=assets/spcommon/textures/space.png,xcount=1,ycount=1
|
|
||||||
block:id=%ender_chest,state=variant:public/facing:down/static:true,patch0=0:top,patch1=0:side,patch2=0:middle,patch3=1000:bands,patch4=0:type_normal,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%ender_chest,state=variant:private/facing:down/static:true,patch0=0:top,patch1=0:side,patch2=0:middle,patch3=1000:bands,patch4=0:type_private,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%ender_chest,state=variant:team/facing:down/static:true,patch0=0:top,patch1=0:side,patch2=0:middle,patch3=1000:bands,patch4=0:type_team,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%ender_chest,state=variant:public/facing:down/static:false,patch0=0:spcommon:space,patch1=0:top,patch2=0:type_normal,patch3=0:middle,patch4=0:side,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%ender_chest,state=variant:private/facing:down/static:false,patch0=0:spcommon:space,patch1=0:top,patch2=0:type_private,patch3=0:middle,patch4=0:side,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%ender_chest,state=variant:team/facing:down/static:false,patch0=0:spcommon:space,patch1=0:top,patch2=0:type_team,patch3=0:middle,patch4=0:side,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%ender_chest,state=variant:public/facing:up/static:true,patch0=0:top,patch1=0:side,patch2=0:middle,patch3=1000:bands,patch4=0:type_normal,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%ender_chest,state=variant:private/facing:up/static:true,patch0=0:top,patch1=0:side,patch2=0:middle,patch3=1000:bands,patch4=0:type_private,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%ender_chest,state=variant:team/facing:up/static:true,patch0=0:top,patch1=0:side,patch2=0:middle,patch3=1000:bands,patch4=0:type_team,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%ender_chest,state=variant:public/facing:up/static:false,patch0=0:spcommon:space,patch1=0:top,patch2=0:type_normal,patch3=0:middle,patch4=0:side,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%ender_chest,state=variant:private/facing:up/static:false,patch0=0:spcommon:space,patch1=0:top,patch2=0:type_private,patch3=0:middle,patch4=0:side,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%ender_chest,state=variant:team/facing:up/static:false,patch0=0:spcommon:space,patch1=0:top,patch2=0:type_team,patch3=0:middle,patch4=0:side,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%ender_chest,state=variant:public/facing:north/static:true,patch0=0:top,patch1=0:side,patch2=0:middle,patch3=1000:bands,patch4=0:type_normal,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%ender_chest,state=variant:private/facing:north/static:true,patch0=0:top,patch1=0:side,patch2=0:middle,patch3=1000:bands,patch4=0:type_private,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%ender_chest,state=variant:team/facing:north/static:true,patch0=0:top,patch1=0:side,patch2=0:middle,patch3=1000:bands,patch4=0:type_team,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%ender_chest,state=variant:public/facing:north/static:false,patch0=0:spcommon:space,patch1=0:top,patch2=0:type_normal,patch3=0:middle,patch4=0:side,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%ender_chest,state=variant:private/facing:north/static:false,patch0=0:spcommon:space,patch1=0:top,patch2=0:type_private,patch3=0:middle,patch4=0:side,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%ender_chest,state=variant:team/facing:north/static:false,patch0=0:spcommon:space,patch1=0:top,patch2=0:type_team,patch3=0:middle,patch4=0:side,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%ender_chest,state=variant:public/facing:south/static:true,patch0=0:top,patch1=0:side,patch2=0:middle,patch3=1000:bands,patch4=0:type_normal,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%ender_chest,state=variant:private/facing:south/static:true,patch0=0:top,patch1=0:side,patch2=0:middle,patch3=1000:bands,patch4=0:type_private,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%ender_chest,state=variant:team/facing:south/static:true,patch0=0:top,patch1=0:side,patch2=0:middle,patch3=1000:bands,patch4=0:type_team,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%ender_chest,state=variant:public/facing:south/static:false,patch0=0:spcommon:space,patch1=0:top,patch2=0:type_normal,patch3=0:middle,patch4=0:side,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%ender_chest,state=variant:private/facing:south/static:false,patch0=0:spcommon:space,patch1=0:top,patch2=0:type_private,patch3=0:middle,patch4=0:side,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%ender_chest,state=variant:team/facing:south/static:false,patch0=0:spcommon:space,patch1=0:top,patch2=0:type_team,patch3=0:middle,patch4=0:side,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%ender_chest,state=variant:public/facing:west/static:true,patch0=0:top,patch1=0:side,patch2=0:middle,patch3=1000:bands,patch4=0:type_normal,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%ender_chest,state=variant:private/facing:west/static:true,patch0=0:top,patch1=0:side,patch2=0:middle,patch3=1000:bands,patch4=0:type_private,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%ender_chest,state=variant:team/facing:west/static:true,patch0=0:top,patch1=0:side,patch2=0:middle,patch3=1000:bands,patch4=0:type_team,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%ender_chest,state=variant:public/facing:west/static:false,patch0=0:spcommon:space,patch1=0:top,patch2=0:type_normal,patch3=0:middle,patch4=0:side,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%ender_chest,state=variant:private/facing:west/static:false,patch0=0:spcommon:space,patch1=0:top,patch2=0:type_private,patch3=0:middle,patch4=0:side,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%ender_chest,state=variant:team/facing:west/static:false,patch0=0:spcommon:space,patch1=0:top,patch2=0:type_team,patch3=0:middle,patch4=0:side,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%ender_chest,state=variant:public/facing:east/static:true,patch0=0:top,patch1=0:side,patch2=0:middle,patch3=1000:bands,patch4=0:type_normal,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%ender_chest,state=variant:private/facing:east/static:true,patch0=0:top,patch1=0:side,patch2=0:middle,patch3=1000:bands,patch4=0:type_private,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%ender_chest,state=variant:team/facing:east/static:true,patch0=0:top,patch1=0:side,patch2=0:middle,patch3=1000:bands,patch4=0:type_team,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%ender_chest,state=variant:public/facing:east/static:false,patch0=0:spcommon:space,patch1=0:top,patch2=0:type_normal,patch3=0:middle,patch4=0:side,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%ender_chest,state=variant:private/facing:east/static:false,patch0=0:spcommon:space,patch1=0:top,patch2=0:type_private,patch3=0:middle,patch4=0:side,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%ender_chest,state=variant:team/facing:east/static:false,patch0=0:spcommon:space,patch1=0:top,patch2=0:type_team,patch3=0:middle,patch4=0:side,transparency=TRANSPARENT,stdrot=true
|
|
File diff suppressed because one or more lines are too long
@ -1,48 +0,0 @@
|
|||||||
modname:endertanks
|
|
||||||
|
|
||||||
texture:id=spcommon:space,filename=assets/spcommon/textures/space.png,xcount=1,ycount=1
|
|
||||||
texture:id=bottom_powered,filename=assets/endertanks/textures/block/bottom_powered.png,xcount=1,ycount=1
|
|
||||||
texture:id=top_powered,filename=assets/endertanks/textures/block/top_powered.png,xcount=1,ycount=1
|
|
||||||
texture:id=side_powered,filename=assets/endertanks/textures/block/side_powered.png,xcount=1,ycount=1
|
|
||||||
texture:id=bands,filename=assets/endertanks/textures/block/bands.png,xcount=1,ycount=1
|
|
||||||
texture:id=type_normal,filename=assets/endertanks/textures/block/type_normal.png,xcount=1,ycount=1
|
|
||||||
texture:id=type_private,filename=assets/endertanks/textures/block/type_private.png,xcount=1,ycount=1
|
|
||||||
texture:id=type_team,filename=assets/endertanks/textures/block/type_team.png,xcount=1,ycount=1
|
|
||||||
texture:id=top_normal,filename=assets/endertanks/textures/block/top_normal.png,xcount=1,ycount=1
|
|
||||||
texture:id=side_normal,filename=assets/endertanks/textures/block/side_normal.png,xcount=1,ycount=1
|
|
||||||
block:id=%ender_tank,state=variant:public/facing:down/powered:true,patch0=0:spcommon:space,patch1=0:bottom_powered,patch2=0:top_powered,patch3=0:side_powered,patch4=1000:bands,patch5=0:type_normal,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%ender_tank,state=variant:private/facing:down/powered:true,patch0=0:spcommon:space,patch1=0:bottom_powered,patch2=0:top_powered,patch3=0:side_powered,patch4=1000:bands,patch5=0:type_private,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%ender_tank,state=variant:team/facing:down/powered:true,patch0=0:spcommon:space,patch1=0:bottom_powered,patch2=0:top_powered,patch3=0:side_powered,patch4=1000:bands,patch5=0:type_team,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%ender_tank,state=variant:public/facing:down/powered:false,patch0=0:spcommon:space,patch1=0:top_normal,patch2=0:side_normal,patch3=1000:bands,patch4=0:type_normal,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%ender_tank,state=variant:private/facing:down/powered:false,patch0=0:spcommon:space,patch1=0:top_normal,patch2=0:side_normal,patch3=1000:bands,patch4=0:type_private,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%ender_tank,state=variant:team/facing:down/powered:false,patch0=0:spcommon:space,patch1=0:top_normal,patch2=0:side_normal,patch3=1000:bands,patch4=0:type_team,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%ender_tank,state=variant:public/facing:up/powered:true,patch0=0:spcommon:space,patch1=0:bottom_powered,patch2=0:top_powered,patch3=0:side_powered,patch4=1000:bands,patch5=0:type_normal,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%ender_tank,state=variant:private/facing:up/powered:true,patch0=0:spcommon:space,patch1=0:bottom_powered,patch2=0:top_powered,patch3=0:side_powered,patch4=1000:bands,patch5=0:type_private,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%ender_tank,state=variant:team/facing:up/powered:true,patch0=0:spcommon:space,patch1=0:bottom_powered,patch2=0:top_powered,patch3=0:side_powered,patch4=1000:bands,patch5=0:type_team,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%ender_tank,state=variant:public/facing:up/powered:false,patch0=0:spcommon:space,patch1=0:top_normal,patch2=0:side_normal,patch3=1000:bands,patch4=0:type_normal,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%ender_tank,state=variant:private/facing:up/powered:false,patch0=0:spcommon:space,patch1=0:top_normal,patch2=0:side_normal,patch3=1000:bands,patch4=0:type_private,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%ender_tank,state=variant:team/facing:up/powered:false,patch0=0:spcommon:space,patch1=0:top_normal,patch2=0:side_normal,patch3=1000:bands,patch4=0:type_team,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%ender_tank,state=variant:public/facing:north/powered:true,patch0=0:spcommon:space,patch1=0:bottom_powered,patch2=0:top_powered,patch3=0:side_powered,patch4=1000:bands,patch5=0:type_normal,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%ender_tank,state=variant:private/facing:north/powered:true,patch0=0:spcommon:space,patch1=0:bottom_powered,patch2=0:top_powered,patch3=0:side_powered,patch4=1000:bands,patch5=0:type_private,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%ender_tank,state=variant:team/facing:north/powered:true,patch0=0:spcommon:space,patch1=0:bottom_powered,patch2=0:top_powered,patch3=0:side_powered,patch4=1000:bands,patch5=0:type_team,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%ender_tank,state=variant:public/facing:north/powered:false,patch0=0:spcommon:space,patch1=0:top_normal,patch2=0:side_normal,patch3=1000:bands,patch4=0:type_normal,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%ender_tank,state=variant:private/facing:north/powered:false,patch0=0:spcommon:space,patch1=0:top_normal,patch2=0:side_normal,patch3=1000:bands,patch4=0:type_private,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%ender_tank,state=variant:team/facing:north/powered:false,patch0=0:spcommon:space,patch1=0:top_normal,patch2=0:side_normal,patch3=1000:bands,patch4=0:type_team,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%ender_tank,state=variant:public/facing:south/powered:true,patch0=0:spcommon:space,patch1=0:bottom_powered,patch2=0:top_powered,patch3=0:side_powered,patch4=1000:bands,patch5=0:type_normal,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%ender_tank,state=variant:private/facing:south/powered:true,patch0=0:spcommon:space,patch1=0:bottom_powered,patch2=0:top_powered,patch3=0:side_powered,patch4=1000:bands,patch5=0:type_private,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%ender_tank,state=variant:team/facing:south/powered:true,patch0=0:spcommon:space,patch1=0:bottom_powered,patch2=0:top_powered,patch3=0:side_powered,patch4=1000:bands,patch5=0:type_team,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%ender_tank,state=variant:public/facing:south/powered:false,patch0=0:spcommon:space,patch1=0:top_normal,patch2=0:side_normal,patch3=1000:bands,patch4=0:type_normal,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%ender_tank,state=variant:private/facing:south/powered:false,patch0=0:spcommon:space,patch1=0:top_normal,patch2=0:side_normal,patch3=1000:bands,patch4=0:type_private,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%ender_tank,state=variant:team/facing:south/powered:false,patch0=0:spcommon:space,patch1=0:top_normal,patch2=0:side_normal,patch3=1000:bands,patch4=0:type_team,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%ender_tank,state=variant:public/facing:west/powered:true,patch0=0:spcommon:space,patch1=0:bottom_powered,patch2=0:top_powered,patch3=0:side_powered,patch4=1000:bands,patch5=0:type_normal,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%ender_tank,state=variant:private/facing:west/powered:true,patch0=0:spcommon:space,patch1=0:bottom_powered,patch2=0:top_powered,patch3=0:side_powered,patch4=1000:bands,patch5=0:type_private,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%ender_tank,state=variant:team/facing:west/powered:true,patch0=0:spcommon:space,patch1=0:bottom_powered,patch2=0:top_powered,patch3=0:side_powered,patch4=1000:bands,patch5=0:type_team,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%ender_tank,state=variant:public/facing:west/powered:false,patch0=0:spcommon:space,patch1=0:top_normal,patch2=0:side_normal,patch3=1000:bands,patch4=0:type_normal,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%ender_tank,state=variant:private/facing:west/powered:false,patch0=0:spcommon:space,patch1=0:top_normal,patch2=0:side_normal,patch3=1000:bands,patch4=0:type_private,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%ender_tank,state=variant:team/facing:west/powered:false,patch0=0:spcommon:space,patch1=0:top_normal,patch2=0:side_normal,patch3=1000:bands,patch4=0:type_team,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%ender_tank,state=variant:public/facing:east/powered:true,patch0=0:spcommon:space,patch1=0:bottom_powered,patch2=0:top_powered,patch3=0:side_powered,patch4=1000:bands,patch5=0:type_normal,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%ender_tank,state=variant:private/facing:east/powered:true,patch0=0:spcommon:space,patch1=0:bottom_powered,patch2=0:top_powered,patch3=0:side_powered,patch4=1000:bands,patch5=0:type_private,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%ender_tank,state=variant:team/facing:east/powered:true,patch0=0:spcommon:space,patch1=0:bottom_powered,patch2=0:top_powered,patch3=0:side_powered,patch4=1000:bands,patch5=0:type_team,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%ender_tank,state=variant:public/facing:east/powered:false,patch0=0:spcommon:space,patch1=0:top_normal,patch2=0:side_normal,patch3=1000:bands,patch4=0:type_normal,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%ender_tank,state=variant:private/facing:east/powered:false,patch0=0:spcommon:space,patch1=0:top_normal,patch2=0:side_normal,patch3=1000:bands,patch4=0:type_private,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%ender_tank,state=variant:team/facing:east/powered:false,patch0=0:spcommon:space,patch1=0:top_normal,patch2=0:side_normal,patch3=1000:bands,patch4=0:type_team,transparency=TRANSPARENT,stdrot=true
|
|
@ -1,338 +0,0 @@
|
|||||||
modname:farmersdelight
|
|
||||||
|
|
||||||
modellist:id=%stove,state=facing:south/lit:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/0/180/0
|
|
||||||
modellist:id=%stove,state=facing:south/lit:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/0/180/0
|
|
||||||
modellist:id=%stove,state=facing:west/lit:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/0/270/0
|
|
||||||
modellist:id=%stove,state=facing:west/lit:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/0/270/0
|
|
||||||
modellist:id=%stove,state=facing:east/lit:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/0/90/0
|
|
||||||
modellist:id=%stove,state=facing:east/lit:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/0/90/0
|
|
||||||
modellist:id=%cooking_pot,state=facing:north/support:none,box=2.000000/0.000000/2.000000:14.000000/10.000000/14.000000:u/0/2.000000/2.000000/14.000000/14.000000:s/1/2.000000/6.000000/14.000000/16.000000:w/1/2.000000/6.000000/14.000000/16.000000:e/1/2.000000/6.000000/14.000000/16.000000:d/2/2.000000/2.000000/14.000000/14.000000:n/1/2.000000/6.000000/14.000000/16.000000,box=7.000000/3.000000/7.000000:9.000000/15.000000/9.000000/0.000000/0.000000/-22.500000/8.000000/3.000000/8.000000:u/3/0.000000/0.000000/2.000000/2.000000:s/3/2.000000/2.000000/0.000000/14.000000:w/3/0.000000/2.000000/2.000000/14.000000:e/3/0.000000/2.000000/2.000000/14.000000:d/3/0.000000/0.000000/2.000000/2.000000:n/3/2.000000/2.000000/0.000000/14.000000,box=14.000000/7.000000/5.000000:16.000000/9.000000/11.000000:u90/3/4.000000/0.000000/10.000000/2.000000:s/3/2.000000/0.000000/4.000000/2.000000:e/3/4.000000/2.000000/10.000000/4.000000:d90/3/4.000000/2.000000/10.000000/4.000000:n/3/10.000000/0.000000/12.000000/2.000000,box=0.000000/7.000000/5.000000:2.000000/9.000000/11.000000:u270/3/4.000000/0.000000/10.000000/2.000000:s/3/10.000000/0.000000/12.000000/2.000000:w/3/4.000000/2.000000/10.000000/4.000000:d270/3/4.000000/2.000000/10.000000/4.000000:n/3/2.000000/0.000000/4.000000/2.000000
|
|
||||||
modellist:id=%cooking_pot,state=facing:north/support:tray,box=2.000000/0.000000/2.000000:14.000000/10.000000/14.000000:u/0/2.000000/2.000000/14.000000/14.000000:s/1/2.000000/6.000000/14.000000/16.000000:w/1/2.000000/6.000000/14.000000/16.000000:e/1/2.000000/6.000000/14.000000/16.000000:d/2/2.000000/2.000000/14.000000/14.000000:n/1/2.000000/6.000000/14.000000/16.000000,box=7.000000/3.000000/7.000000:9.000000/15.000000/9.000000/0.000000/0.000000/-22.500000/8.000000/3.000000/8.000000:u/3/0.000000/0.000000/2.000000/2.000000:s/3/2.000000/2.000000/0.000000/14.000000:w/3/0.000000/2.000000/2.000000/14.000000:e/3/0.000000/2.000000/2.000000/14.000000:d/3/0.000000/0.000000/2.000000/2.000000:n/3/2.000000/2.000000/0.000000/14.000000,box=14.000000/7.000000/5.000000:16.000000/9.000000/11.000000:u90/3/4.000000/0.000000/10.000000/2.000000:s/3/2.000000/0.000000/4.000000/2.000000:e/3/4.000000/2.000000/10.000000/4.000000:d90/3/4.000000/2.000000/10.000000/4.000000:n/3/10.000000/0.000000/12.000000/2.000000,box=0.000000/7.000000/5.000000:2.000000/9.000000/11.000000:u270/3/4.000000/0.000000/10.000000/2.000000:s/3/10.000000/0.000000/12.000000/2.000000:w/3/4.000000/2.000000/10.000000/4.000000:d270/3/4.000000/2.000000/10.000000/4.000000:n/3/2.000000/0.000000/4.000000/2.000000,box=0.000000/-1.000000/0.000000:16.000000/0.000000/16.000000:u/4/0.000000/0.000000/16.000000/16.000000:s/5/0.000000/0.000000/16.000000/1.000000:w/5/0.000000/0.000000/16.000000/1.000000:e/5/0.000000/0.000000/16.000000/1.000000:d/4/0.000000/0.000000/16.000000/16.000000:n/5/0.000000/0.000000/16.000000/1.000000,box=15.000000/-16.000000/15.000000:16.000000/-1.000000/16.000000:u/5/0.000000/0.000000/0.500000/0.500000:s/5/15.000000/1.000000/16.000000/16.000000:w/5/15.000000/1.000000/16.000000/16.000000:e/5/0.000000/1.000000/1.000000/16.000000:d/5/0.000000/0.000000/0.500000/0.500000:n/5/0.000000/1.000000/1.000000/16.000000,box=0.000000/-16.000000/15.000000:1.000000/-1.000000/16.000000:u/5/0.000000/0.000000/0.500000/0.500000:s/5/0.000000/1.000000/1.000000/16.000000:w/5/15.000000/1.000000/16.000000/16.000000:e/5/0.000000/1.000000/1.000000/16.000000:d/5/0.000000/0.000000/0.500000/0.500000:n/5/15.000000/1.000000/16.000000/16.000000,box=15.000000/-16.000000/0.000000:16.000000/-1.000000/1.000000:u/5/0.000000/0.000000/0.500000/0.500000:s/5/15.000000/1.000000/16.000000/16.000000:w/5/0.000000/1.000000/1.000000/16.000000:e/5/15.000000/1.000000/16.000000/16.000000:d/5/0.000000/0.000000/0.500000/0.500000:n/5/0.000000/1.000000/1.000000/16.000000,box=0.000000/-16.000000/0.000000:1.000000/-1.000000/1.000000:u/5/0.000000/0.000000/0.500000/0.500000:s/5/0.000000/1.000000/1.000000/16.000000:w/5/0.000000/1.000000/1.000000/16.000000:e/5/15.000000/1.000000/16.000000/16.000000:d/5/0.000000/0.000000/0.500000/0.500000:n/5/15.000000/1.000000/16.000000/16.000000
|
|
||||||
modellist:id=%cooking_pot,state=facing:north/support:handle,box=2.000000/0.000000/2.000000:14.000000/10.000000/14.000000:u/0/2.000000/2.000000/14.000000/14.000000:s/1/2.000000/6.000000/14.000000/16.000000:w/1/2.000000/6.000000/14.000000/16.000000:e/1/2.000000/6.000000/14.000000/16.000000:d/2/2.000000/2.000000/14.000000/14.000000:n/1/2.000000/6.000000/14.000000/16.000000,box=7.000000/3.000000/7.000000:9.000000/15.000000/9.000000/0.000000/0.000000/-22.500000/8.000000/3.000000/8.000000:u/3/0.000000/0.000000/2.000000/2.000000:s/3/2.000000/2.000000/0.000000/14.000000:w/3/0.000000/2.000000/2.000000/14.000000:e/3/0.000000/2.000000/2.000000/14.000000:d/3/0.000000/0.000000/2.000000/2.000000:n/3/2.000000/2.000000/0.000000/14.000000,box=14.000000/7.000000/5.000000:16.000000/9.000000/11.000000:u90/3/4.000000/0.000000/10.000000/2.000000:s/3/2.000000/0.000000/4.000000/2.000000:e/3/4.000000/2.000000/10.000000/4.000000:d90/3/4.000000/2.000000/10.000000/4.000000:n/3/10.000000/0.000000/12.000000/2.000000,box=0.000000/7.000000/5.000000:2.000000/9.000000/11.000000:u270/3/4.000000/0.000000/10.000000/2.000000:s/3/10.000000/0.000000/12.000000/2.000000:w/3/4.000000/2.000000/10.000000/4.000000:d270/3/4.000000/2.000000/10.000000/4.000000:n/3/2.000000/0.000000/4.000000/2.000000,box=1.000000/8.000000/8.000000:15.000000/16.000000/8.000000:s/4/1.000000/8.000000/15.000000/16.000000:n/4/1.000000/8.000000/15.000000/16.000000,box=15.000000/8.000000/7.000000:15.000000/16.000000/9.000000:w/4/0.000000/0.000000/2.000000/8.000000:e/4/2.000000/0.000000/0.000000/8.000000,box=1.000000/8.000000/7.000000:1.000000/16.000000/9.000000:w/4/0.000000/0.000000/2.000000/8.000000:e/4/2.000000/0.000000/0.000000/8.000000,box=1.000000/15.999000/7.000000:15.000000/15.999000/9.000000:u/4/2.000000/0.000000/16.000000/2.000000:d/4/2.000000/0.000000/16.000000/2.000000
|
|
||||||
modellist:id=%cooking_pot,state=facing:south/support:none,box=2.000000/0.000000/2.000000:14.000000/10.000000/14.000000:u/0/2.000000/2.000000/14.000000/14.000000:s/1/2.000000/6.000000/14.000000/16.000000:w/1/2.000000/6.000000/14.000000/16.000000:e/1/2.000000/6.000000/14.000000/16.000000:d/2/2.000000/2.000000/14.000000/14.000000:n/1/2.000000/6.000000/14.000000/16.000000:R/0/180/0,box=7.000000/3.000000/7.000000:9.000000/15.000000/9.000000/0.000000/0.000000/-22.500000/8.000000/3.000000/8.000000:u/3/0.000000/0.000000/2.000000/2.000000:s/3/2.000000/2.000000/0.000000/14.000000:w/3/0.000000/2.000000/2.000000/14.000000:e/3/0.000000/2.000000/2.000000/14.000000:d/3/0.000000/0.000000/2.000000/2.000000:n/3/2.000000/2.000000/0.000000/14.000000:R/0/180/0,box=14.000000/7.000000/5.000000:16.000000/9.000000/11.000000:u90/3/4.000000/0.000000/10.000000/2.000000:s/3/2.000000/0.000000/4.000000/2.000000:e/3/4.000000/2.000000/10.000000/4.000000:d90/3/4.000000/2.000000/10.000000/4.000000:n/3/10.000000/0.000000/12.000000/2.000000:R/0/180/0,box=0.000000/7.000000/5.000000:2.000000/9.000000/11.000000:u270/3/4.000000/0.000000/10.000000/2.000000:s/3/10.000000/0.000000/12.000000/2.000000:w/3/4.000000/2.000000/10.000000/4.000000:d270/3/4.000000/2.000000/10.000000/4.000000:n/3/2.000000/0.000000/4.000000/2.000000:R/0/180/0
|
|
||||||
modellist:id=%cooking_pot,state=facing:south/support:tray,box=2.000000/0.000000/2.000000:14.000000/10.000000/14.000000:u/0/2.000000/2.000000/14.000000/14.000000:s/1/2.000000/6.000000/14.000000/16.000000:w/1/2.000000/6.000000/14.000000/16.000000:e/1/2.000000/6.000000/14.000000/16.000000:d/2/2.000000/2.000000/14.000000/14.000000:n/1/2.000000/6.000000/14.000000/16.000000:R/0/180/0,box=7.000000/3.000000/7.000000:9.000000/15.000000/9.000000/0.000000/0.000000/-22.500000/8.000000/3.000000/8.000000:u/3/0.000000/0.000000/2.000000/2.000000:s/3/2.000000/2.000000/0.000000/14.000000:w/3/0.000000/2.000000/2.000000/14.000000:e/3/0.000000/2.000000/2.000000/14.000000:d/3/0.000000/0.000000/2.000000/2.000000:n/3/2.000000/2.000000/0.000000/14.000000:R/0/180/0,box=14.000000/7.000000/5.000000:16.000000/9.000000/11.000000:u90/3/4.000000/0.000000/10.000000/2.000000:s/3/2.000000/0.000000/4.000000/2.000000:e/3/4.000000/2.000000/10.000000/4.000000:d90/3/4.000000/2.000000/10.000000/4.000000:n/3/10.000000/0.000000/12.000000/2.000000:R/0/180/0,box=0.000000/7.000000/5.000000:2.000000/9.000000/11.000000:u270/3/4.000000/0.000000/10.000000/2.000000:s/3/10.000000/0.000000/12.000000/2.000000:w/3/4.000000/2.000000/10.000000/4.000000:d270/3/4.000000/2.000000/10.000000/4.000000:n/3/2.000000/0.000000/4.000000/2.000000:R/0/180/0,box=0.000000/-1.000000/0.000000:16.000000/0.000000/16.000000:u/4/0.000000/0.000000/16.000000/16.000000:s/5/0.000000/0.000000/16.000000/1.000000:w/5/0.000000/0.000000/16.000000/1.000000:e/5/0.000000/0.000000/16.000000/1.000000:d/4/0.000000/0.000000/16.000000/16.000000:n/5/0.000000/0.000000/16.000000/1.000000:R/0/180/0,box=15.000000/-16.000000/15.000000:16.000000/-1.000000/16.000000:u/5/0.000000/0.000000/0.500000/0.500000:s/5/15.000000/1.000000/16.000000/16.000000:w/5/15.000000/1.000000/16.000000/16.000000:e/5/0.000000/1.000000/1.000000/16.000000:d/5/0.000000/0.000000/0.500000/0.500000:n/5/0.000000/1.000000/1.000000/16.000000:R/0/180/0,box=0.000000/-16.000000/15.000000:1.000000/-1.000000/16.000000:u/5/0.000000/0.000000/0.500000/0.500000:s/5/0.000000/1.000000/1.000000/16.000000:w/5/15.000000/1.000000/16.000000/16.000000:e/5/0.000000/1.000000/1.000000/16.000000:d/5/0.000000/0.000000/0.500000/0.500000:n/5/15.000000/1.000000/16.000000/16.000000:R/0/180/0,box=15.000000/-16.000000/0.000000:16.000000/-1.000000/1.000000:u/5/0.000000/0.000000/0.500000/0.500000:s/5/15.000000/1.000000/16.000000/16.000000:w/5/0.000000/1.000000/1.000000/16.000000:e/5/15.000000/1.000000/16.000000/16.000000:d/5/0.000000/0.000000/0.500000/0.500000:n/5/0.000000/1.000000/1.000000/16.000000:R/0/180/0,box=0.000000/-16.000000/0.000000:1.000000/-1.000000/1.000000:u/5/0.000000/0.000000/0.500000/0.500000:s/5/0.000000/1.000000/1.000000/16.000000:w/5/0.000000/1.000000/1.000000/16.000000:e/5/15.000000/1.000000/16.000000/16.000000:d/5/0.000000/0.000000/0.500000/0.500000:n/5/15.000000/1.000000/16.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%cooking_pot,state=facing:south/support:handle,box=2.000000/0.000000/2.000000:14.000000/10.000000/14.000000:u/0/2.000000/2.000000/14.000000/14.000000:s/1/2.000000/6.000000/14.000000/16.000000:w/1/2.000000/6.000000/14.000000/16.000000:e/1/2.000000/6.000000/14.000000/16.000000:d/2/2.000000/2.000000/14.000000/14.000000:n/1/2.000000/6.000000/14.000000/16.000000:R/0/180/0,box=7.000000/3.000000/7.000000:9.000000/15.000000/9.000000/0.000000/0.000000/-22.500000/8.000000/3.000000/8.000000:u/3/0.000000/0.000000/2.000000/2.000000:s/3/2.000000/2.000000/0.000000/14.000000:w/3/0.000000/2.000000/2.000000/14.000000:e/3/0.000000/2.000000/2.000000/14.000000:d/3/0.000000/0.000000/2.000000/2.000000:n/3/2.000000/2.000000/0.000000/14.000000:R/0/180/0,box=14.000000/7.000000/5.000000:16.000000/9.000000/11.000000:u90/3/4.000000/0.000000/10.000000/2.000000:s/3/2.000000/0.000000/4.000000/2.000000:e/3/4.000000/2.000000/10.000000/4.000000:d90/3/4.000000/2.000000/10.000000/4.000000:n/3/10.000000/0.000000/12.000000/2.000000:R/0/180/0,box=0.000000/7.000000/5.000000:2.000000/9.000000/11.000000:u270/3/4.000000/0.000000/10.000000/2.000000:s/3/10.000000/0.000000/12.000000/2.000000:w/3/4.000000/2.000000/10.000000/4.000000:d270/3/4.000000/2.000000/10.000000/4.000000:n/3/2.000000/0.000000/4.000000/2.000000:R/0/180/0,box=1.000000/8.000000/8.000000:15.000000/16.000000/8.000000:s/4/1.000000/8.000000/15.000000/16.000000:n/4/1.000000/8.000000/15.000000/16.000000:R/0/180/0,box=15.000000/8.000000/7.000000:15.000000/16.000000/9.000000:w/4/0.000000/0.000000/2.000000/8.000000:e/4/2.000000/0.000000/0.000000/8.000000:R/0/180/0,box=1.000000/8.000000/7.000000:1.000000/16.000000/9.000000:w/4/0.000000/0.000000/2.000000/8.000000:e/4/2.000000/0.000000/0.000000/8.000000:R/0/180/0,box=1.000000/15.999000/7.000000:15.000000/15.999000/9.000000:u/4/2.000000/0.000000/16.000000/2.000000:d/4/2.000000/0.000000/16.000000/2.000000:R/0/180/0
|
|
||||||
modellist:id=%cooking_pot,state=facing:west/support:none,box=2.000000/0.000000/2.000000:14.000000/10.000000/14.000000:u/0/2.000000/2.000000/14.000000/14.000000:s/1/2.000000/6.000000/14.000000/16.000000:w/1/2.000000/6.000000/14.000000/16.000000:e/1/2.000000/6.000000/14.000000/16.000000:d/2/2.000000/2.000000/14.000000/14.000000:n/1/2.000000/6.000000/14.000000/16.000000:R/0/270/0,box=7.000000/3.000000/7.000000:9.000000/15.000000/9.000000/0.000000/0.000000/-22.500000/8.000000/3.000000/8.000000:u/3/0.000000/0.000000/2.000000/2.000000:s/3/2.000000/2.000000/0.000000/14.000000:w/3/0.000000/2.000000/2.000000/14.000000:e/3/0.000000/2.000000/2.000000/14.000000:d/3/0.000000/0.000000/2.000000/2.000000:n/3/2.000000/2.000000/0.000000/14.000000:R/0/270/0,box=14.000000/7.000000/5.000000:16.000000/9.000000/11.000000:u90/3/4.000000/0.000000/10.000000/2.000000:s/3/2.000000/0.000000/4.000000/2.000000:e/3/4.000000/2.000000/10.000000/4.000000:d90/3/4.000000/2.000000/10.000000/4.000000:n/3/10.000000/0.000000/12.000000/2.000000:R/0/270/0,box=0.000000/7.000000/5.000000:2.000000/9.000000/11.000000:u270/3/4.000000/0.000000/10.000000/2.000000:s/3/10.000000/0.000000/12.000000/2.000000:w/3/4.000000/2.000000/10.000000/4.000000:d270/3/4.000000/2.000000/10.000000/4.000000:n/3/2.000000/0.000000/4.000000/2.000000:R/0/270/0
|
|
||||||
modellist:id=%cooking_pot,state=facing:west/support:tray,box=2.000000/0.000000/2.000000:14.000000/10.000000/14.000000:u/0/2.000000/2.000000/14.000000/14.000000:s/1/2.000000/6.000000/14.000000/16.000000:w/1/2.000000/6.000000/14.000000/16.000000:e/1/2.000000/6.000000/14.000000/16.000000:d/2/2.000000/2.000000/14.000000/14.000000:n/1/2.000000/6.000000/14.000000/16.000000:R/0/270/0,box=7.000000/3.000000/7.000000:9.000000/15.000000/9.000000/0.000000/0.000000/-22.500000/8.000000/3.000000/8.000000:u/3/0.000000/0.000000/2.000000/2.000000:s/3/2.000000/2.000000/0.000000/14.000000:w/3/0.000000/2.000000/2.000000/14.000000:e/3/0.000000/2.000000/2.000000/14.000000:d/3/0.000000/0.000000/2.000000/2.000000:n/3/2.000000/2.000000/0.000000/14.000000:R/0/270/0,box=14.000000/7.000000/5.000000:16.000000/9.000000/11.000000:u90/3/4.000000/0.000000/10.000000/2.000000:s/3/2.000000/0.000000/4.000000/2.000000:e/3/4.000000/2.000000/10.000000/4.000000:d90/3/4.000000/2.000000/10.000000/4.000000:n/3/10.000000/0.000000/12.000000/2.000000:R/0/270/0,box=0.000000/7.000000/5.000000:2.000000/9.000000/11.000000:u270/3/4.000000/0.000000/10.000000/2.000000:s/3/10.000000/0.000000/12.000000/2.000000:w/3/4.000000/2.000000/10.000000/4.000000:d270/3/4.000000/2.000000/10.000000/4.000000:n/3/2.000000/0.000000/4.000000/2.000000:R/0/270/0,box=0.000000/-1.000000/0.000000:16.000000/0.000000/16.000000:u/4/0.000000/0.000000/16.000000/16.000000:s/5/0.000000/0.000000/16.000000/1.000000:w/5/0.000000/0.000000/16.000000/1.000000:e/5/0.000000/0.000000/16.000000/1.000000:d/4/0.000000/0.000000/16.000000/16.000000:n/5/0.000000/0.000000/16.000000/1.000000:R/0/270/0,box=15.000000/-16.000000/15.000000:16.000000/-1.000000/16.000000:u/5/0.000000/0.000000/0.500000/0.500000:s/5/15.000000/1.000000/16.000000/16.000000:w/5/15.000000/1.000000/16.000000/16.000000:e/5/0.000000/1.000000/1.000000/16.000000:d/5/0.000000/0.000000/0.500000/0.500000:n/5/0.000000/1.000000/1.000000/16.000000:R/0/270/0,box=0.000000/-16.000000/15.000000:1.000000/-1.000000/16.000000:u/5/0.000000/0.000000/0.500000/0.500000:s/5/0.000000/1.000000/1.000000/16.000000:w/5/15.000000/1.000000/16.000000/16.000000:e/5/0.000000/1.000000/1.000000/16.000000:d/5/0.000000/0.000000/0.500000/0.500000:n/5/15.000000/1.000000/16.000000/16.000000:R/0/270/0,box=15.000000/-16.000000/0.000000:16.000000/-1.000000/1.000000:u/5/0.000000/0.000000/0.500000/0.500000:s/5/15.000000/1.000000/16.000000/16.000000:w/5/0.000000/1.000000/1.000000/16.000000:e/5/15.000000/1.000000/16.000000/16.000000:d/5/0.000000/0.000000/0.500000/0.500000:n/5/0.000000/1.000000/1.000000/16.000000:R/0/270/0,box=0.000000/-16.000000/0.000000:1.000000/-1.000000/1.000000:u/5/0.000000/0.000000/0.500000/0.500000:s/5/0.000000/1.000000/1.000000/16.000000:w/5/0.000000/1.000000/1.000000/16.000000:e/5/15.000000/1.000000/16.000000/16.000000:d/5/0.000000/0.000000/0.500000/0.500000:n/5/15.000000/1.000000/16.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%cooking_pot,state=facing:west/support:handle,box=2.000000/0.000000/2.000000:14.000000/10.000000/14.000000:u/0/2.000000/2.000000/14.000000/14.000000:s/1/2.000000/6.000000/14.000000/16.000000:w/1/2.000000/6.000000/14.000000/16.000000:e/1/2.000000/6.000000/14.000000/16.000000:d/2/2.000000/2.000000/14.000000/14.000000:n/1/2.000000/6.000000/14.000000/16.000000:R/0/270/0,box=7.000000/3.000000/7.000000:9.000000/15.000000/9.000000/0.000000/0.000000/-22.500000/8.000000/3.000000/8.000000:u/3/0.000000/0.000000/2.000000/2.000000:s/3/2.000000/2.000000/0.000000/14.000000:w/3/0.000000/2.000000/2.000000/14.000000:e/3/0.000000/2.000000/2.000000/14.000000:d/3/0.000000/0.000000/2.000000/2.000000:n/3/2.000000/2.000000/0.000000/14.000000:R/0/270/0,box=14.000000/7.000000/5.000000:16.000000/9.000000/11.000000:u90/3/4.000000/0.000000/10.000000/2.000000:s/3/2.000000/0.000000/4.000000/2.000000:e/3/4.000000/2.000000/10.000000/4.000000:d90/3/4.000000/2.000000/10.000000/4.000000:n/3/10.000000/0.000000/12.000000/2.000000:R/0/270/0,box=0.000000/7.000000/5.000000:2.000000/9.000000/11.000000:u270/3/4.000000/0.000000/10.000000/2.000000:s/3/10.000000/0.000000/12.000000/2.000000:w/3/4.000000/2.000000/10.000000/4.000000:d270/3/4.000000/2.000000/10.000000/4.000000:n/3/2.000000/0.000000/4.000000/2.000000:R/0/270/0,box=1.000000/8.000000/8.000000:15.000000/16.000000/8.000000:s/4/1.000000/8.000000/15.000000/16.000000:n/4/1.000000/8.000000/15.000000/16.000000:R/0/270/0,box=15.000000/8.000000/7.000000:15.000000/16.000000/9.000000:w/4/0.000000/0.000000/2.000000/8.000000:e/4/2.000000/0.000000/0.000000/8.000000:R/0/270/0,box=1.000000/8.000000/7.000000:1.000000/16.000000/9.000000:w/4/0.000000/0.000000/2.000000/8.000000:e/4/2.000000/0.000000/0.000000/8.000000:R/0/270/0,box=1.000000/15.999000/7.000000:15.000000/15.999000/9.000000:u/4/2.000000/0.000000/16.000000/2.000000:d/4/2.000000/0.000000/16.000000/2.000000:R/0/270/0
|
|
||||||
modellist:id=%cooking_pot,state=facing:east/support:none,box=2.000000/0.000000/2.000000:14.000000/10.000000/14.000000:u/0/2.000000/2.000000/14.000000/14.000000:s/1/2.000000/6.000000/14.000000/16.000000:w/1/2.000000/6.000000/14.000000/16.000000:e/1/2.000000/6.000000/14.000000/16.000000:d/2/2.000000/2.000000/14.000000/14.000000:n/1/2.000000/6.000000/14.000000/16.000000:R/0/90/0,box=7.000000/3.000000/7.000000:9.000000/15.000000/9.000000/0.000000/0.000000/-22.500000/8.000000/3.000000/8.000000:u/3/0.000000/0.000000/2.000000/2.000000:s/3/2.000000/2.000000/0.000000/14.000000:w/3/0.000000/2.000000/2.000000/14.000000:e/3/0.000000/2.000000/2.000000/14.000000:d/3/0.000000/0.000000/2.000000/2.000000:n/3/2.000000/2.000000/0.000000/14.000000:R/0/90/0,box=14.000000/7.000000/5.000000:16.000000/9.000000/11.000000:u90/3/4.000000/0.000000/10.000000/2.000000:s/3/2.000000/0.000000/4.000000/2.000000:e/3/4.000000/2.000000/10.000000/4.000000:d90/3/4.000000/2.000000/10.000000/4.000000:n/3/10.000000/0.000000/12.000000/2.000000:R/0/90/0,box=0.000000/7.000000/5.000000:2.000000/9.000000/11.000000:u270/3/4.000000/0.000000/10.000000/2.000000:s/3/10.000000/0.000000/12.000000/2.000000:w/3/4.000000/2.000000/10.000000/4.000000:d270/3/4.000000/2.000000/10.000000/4.000000:n/3/2.000000/0.000000/4.000000/2.000000:R/0/90/0
|
|
||||||
modellist:id=%cooking_pot,state=facing:east/support:tray,box=2.000000/0.000000/2.000000:14.000000/10.000000/14.000000:u/0/2.000000/2.000000/14.000000/14.000000:s/1/2.000000/6.000000/14.000000/16.000000:w/1/2.000000/6.000000/14.000000/16.000000:e/1/2.000000/6.000000/14.000000/16.000000:d/2/2.000000/2.000000/14.000000/14.000000:n/1/2.000000/6.000000/14.000000/16.000000:R/0/90/0,box=7.000000/3.000000/7.000000:9.000000/15.000000/9.000000/0.000000/0.000000/-22.500000/8.000000/3.000000/8.000000:u/3/0.000000/0.000000/2.000000/2.000000:s/3/2.000000/2.000000/0.000000/14.000000:w/3/0.000000/2.000000/2.000000/14.000000:e/3/0.000000/2.000000/2.000000/14.000000:d/3/0.000000/0.000000/2.000000/2.000000:n/3/2.000000/2.000000/0.000000/14.000000:R/0/90/0,box=14.000000/7.000000/5.000000:16.000000/9.000000/11.000000:u90/3/4.000000/0.000000/10.000000/2.000000:s/3/2.000000/0.000000/4.000000/2.000000:e/3/4.000000/2.000000/10.000000/4.000000:d90/3/4.000000/2.000000/10.000000/4.000000:n/3/10.000000/0.000000/12.000000/2.000000:R/0/90/0,box=0.000000/7.000000/5.000000:2.000000/9.000000/11.000000:u270/3/4.000000/0.000000/10.000000/2.000000:s/3/10.000000/0.000000/12.000000/2.000000:w/3/4.000000/2.000000/10.000000/4.000000:d270/3/4.000000/2.000000/10.000000/4.000000:n/3/2.000000/0.000000/4.000000/2.000000:R/0/90/0,box=0.000000/-1.000000/0.000000:16.000000/0.000000/16.000000:u/4/0.000000/0.000000/16.000000/16.000000:s/5/0.000000/0.000000/16.000000/1.000000:w/5/0.000000/0.000000/16.000000/1.000000:e/5/0.000000/0.000000/16.000000/1.000000:d/4/0.000000/0.000000/16.000000/16.000000:n/5/0.000000/0.000000/16.000000/1.000000:R/0/90/0,box=15.000000/-16.000000/15.000000:16.000000/-1.000000/16.000000:u/5/0.000000/0.000000/0.500000/0.500000:s/5/15.000000/1.000000/16.000000/16.000000:w/5/15.000000/1.000000/16.000000/16.000000:e/5/0.000000/1.000000/1.000000/16.000000:d/5/0.000000/0.000000/0.500000/0.500000:n/5/0.000000/1.000000/1.000000/16.000000:R/0/90/0,box=0.000000/-16.000000/15.000000:1.000000/-1.000000/16.000000:u/5/0.000000/0.000000/0.500000/0.500000:s/5/0.000000/1.000000/1.000000/16.000000:w/5/15.000000/1.000000/16.000000/16.000000:e/5/0.000000/1.000000/1.000000/16.000000:d/5/0.000000/0.000000/0.500000/0.500000:n/5/15.000000/1.000000/16.000000/16.000000:R/0/90/0,box=15.000000/-16.000000/0.000000:16.000000/-1.000000/1.000000:u/5/0.000000/0.000000/0.500000/0.500000:s/5/15.000000/1.000000/16.000000/16.000000:w/5/0.000000/1.000000/1.000000/16.000000:e/5/15.000000/1.000000/16.000000/16.000000:d/5/0.000000/0.000000/0.500000/0.500000:n/5/0.000000/1.000000/1.000000/16.000000:R/0/90/0,box=0.000000/-16.000000/0.000000:1.000000/-1.000000/1.000000:u/5/0.000000/0.000000/0.500000/0.500000:s/5/0.000000/1.000000/1.000000/16.000000:w/5/0.000000/1.000000/1.000000/16.000000:e/5/15.000000/1.000000/16.000000/16.000000:d/5/0.000000/0.000000/0.500000/0.500000:n/5/15.000000/1.000000/16.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%cooking_pot,state=facing:east/support:handle,box=2.000000/0.000000/2.000000:14.000000/10.000000/14.000000:u/0/2.000000/2.000000/14.000000/14.000000:s/1/2.000000/6.000000/14.000000/16.000000:w/1/2.000000/6.000000/14.000000/16.000000:e/1/2.000000/6.000000/14.000000/16.000000:d/2/2.000000/2.000000/14.000000/14.000000:n/1/2.000000/6.000000/14.000000/16.000000:R/0/90/0,box=7.000000/3.000000/7.000000:9.000000/15.000000/9.000000/0.000000/0.000000/-22.500000/8.000000/3.000000/8.000000:u/3/0.000000/0.000000/2.000000/2.000000:s/3/2.000000/2.000000/0.000000/14.000000:w/3/0.000000/2.000000/2.000000/14.000000:e/3/0.000000/2.000000/2.000000/14.000000:d/3/0.000000/0.000000/2.000000/2.000000:n/3/2.000000/2.000000/0.000000/14.000000:R/0/90/0,box=14.000000/7.000000/5.000000:16.000000/9.000000/11.000000:u90/3/4.000000/0.000000/10.000000/2.000000:s/3/2.000000/0.000000/4.000000/2.000000:e/3/4.000000/2.000000/10.000000/4.000000:d90/3/4.000000/2.000000/10.000000/4.000000:n/3/10.000000/0.000000/12.000000/2.000000:R/0/90/0,box=0.000000/7.000000/5.000000:2.000000/9.000000/11.000000:u270/3/4.000000/0.000000/10.000000/2.000000:s/3/10.000000/0.000000/12.000000/2.000000:w/3/4.000000/2.000000/10.000000/4.000000:d270/3/4.000000/2.000000/10.000000/4.000000:n/3/2.000000/0.000000/4.000000/2.000000:R/0/90/0,box=1.000000/8.000000/8.000000:15.000000/16.000000/8.000000:s/4/1.000000/8.000000/15.000000/16.000000:n/4/1.000000/8.000000/15.000000/16.000000:R/0/90/0,box=15.000000/8.000000/7.000000:15.000000/16.000000/9.000000:w/4/0.000000/0.000000/2.000000/8.000000:e/4/2.000000/0.000000/0.000000/8.000000:R/0/90/0,box=1.000000/8.000000/7.000000:1.000000/16.000000/9.000000:w/4/0.000000/0.000000/2.000000/8.000000:e/4/2.000000/0.000000/0.000000/8.000000:R/0/90/0,box=1.000000/15.999000/7.000000:15.000000/15.999000/9.000000:u/4/2.000000/0.000000/16.000000/2.000000:d/4/2.000000/0.000000/16.000000/2.000000:R/0/90/0
|
|
||||||
modellist:id=%skillet,state=facing:north/support:true,box=1.000000/0.000000/1.000000:15.000000/1.000000/15.000000:u/0/1.000000/1.000000/15.000000/15.000000:s/1/1.000000/3.000000/15.000000/4.000000:w/1/1.000000/3.000000/15.000000/4.000000:e/1/1.000000/3.000000/15.000000/4.000000:d/2/1.000000/1.000000/15.000000/15.000000:n/1/1.000000/3.000000/15.000000/4.000000,box=1.000000/1.000000/1.000000:15.000000/4.000000/2.000000:u/0/1.000000/1.000000/15.000000/2.000000:s/1/1.000000/0.000000/15.000000/3.000000:w/1/1.000000/0.000000/2.000000/3.000000:e/1/14.000000/0.000000/15.000000/3.000000:n/1/1.000000/0.000000/15.000000/3.000000,box=1.000000/1.000000/14.000000:15.000000/4.000000/15.000000:u/0/1.000000/1.000000/15.000000/2.000000:s/1/1.000000/0.000000/15.000000/3.000000:w/1/1.000000/0.000000/2.000000/3.000000:e/1/14.000000/0.000000/15.000000/3.000000:n/1/1.000000/0.000000/15.000000/3.000000,box=1.000000/1.000000/2.000000:2.000000/4.000000/14.000000:u/0/1.000000/2.000000/2.000000/14.000000:w/1/2.000000/0.000000/14.000000/3.000000:e/1/2.000000/0.000000/14.000000/3.000000,box=14.000000/1.000000/2.000000:15.000000/4.000000/14.000000:u/0/1.000000/2.000000/2.000000/14.000000:w/1/2.000000/0.000000/14.000000/3.000000:e/1/2.000000/0.000000/14.000000/3.000000,box=7.000000/1.000000/15.000000:9.000000/3.000000/27.000000:u/1/7.000000/4.000000/9.000000/16.000000:s/1/3.000000/14.000000/5.000000/16.000000:w270/1/5.000000/4.000000/7.000000/16.000000:e90/1/9.000000/4.000000/11.000000/16.000000:d180/1/11.000000/4.000000/13.000000/16.000000:n/1/7.000000/14.000000/9.000000/16.000000,box=0.000000/-1.000000/0.000000:16.000000/0.000000/16.000000:u/3/0.000000/0.000000/16.000000/16.000000:s/3/0.000000/0.000000/16.000000/1.000000:w/3/0.000000/0.000000/16.000000/1.000000:e/3/0.000000/0.000000/16.000000/1.000000:d/3/0.000000/0.000000/16.000000/16.000000:n/3/0.000000/0.000000/16.000000/1.000000,box=15.000000/-16.000000/15.000000:16.000000/-1.000000/16.000000:u/4/0.000000/0.000000/0.500000/0.500000:s/4/15.000000/1.000000/16.000000/16.000000:w/4/15.000000/1.000000/16.000000/16.000000:e/4/0.000000/1.000000/1.000000/16.000000:d/4/0.000000/0.000000/0.500000/0.500000:n/4/0.000000/1.000000/1.000000/16.000000,box=0.000000/-16.000000/15.000000:1.000000/-1.000000/16.000000:u/4/0.000000/0.000000/0.500000/0.500000:s/4/0.000000/1.000000/1.000000/16.000000:w/4/15.000000/1.000000/16.000000/16.000000:e/4/0.000000/1.000000/1.000000/16.000000:d/4/0.000000/0.000000/0.500000/0.500000:n/4/15.000000/1.000000/16.000000/16.000000,box=15.000000/-16.000000/0.000000:16.000000/-1.000000/1.000000:u/4/0.000000/0.000000/0.500000/0.500000:s/4/15.000000/1.000000/16.000000/16.000000:w/4/0.000000/1.000000/1.000000/16.000000:e/4/15.000000/1.000000/16.000000/16.000000:d/4/0.000000/0.000000/0.500000/0.500000:n/4/0.000000/1.000000/1.000000/16.000000,box=0.000000/-16.000000/0.000000:1.000000/-1.000000/1.000000:u/4/0.000000/0.000000/0.500000/0.500000:s/4/0.000000/1.000000/1.000000/16.000000:w/4/0.000000/1.000000/1.000000/16.000000:e/4/15.000000/1.000000/16.000000/16.000000:d/4/0.000000/0.000000/0.500000/0.500000:n/4/15.000000/1.000000/16.000000/16.000000
|
|
||||||
modellist:id=%skillet,state=facing:north/support:false,box=1.000000/0.000000/1.000000:15.000000/1.000000/15.000000:u/0/1.000000/1.000000/15.000000/15.000000:s/1/1.000000/3.000000/15.000000/4.000000:w/1/1.000000/3.000000/15.000000/4.000000:e/1/1.000000/3.000000/15.000000/4.000000:d/2/1.000000/1.000000/15.000000/15.000000:n/1/1.000000/3.000000/15.000000/4.000000,box=1.000000/1.000000/1.000000:15.000000/4.000000/2.000000:u/0/1.000000/1.000000/15.000000/2.000000:s/1/1.000000/0.000000/15.000000/3.000000:w/1/1.000000/0.000000/2.000000/3.000000:e/1/14.000000/0.000000/15.000000/3.000000:n/1/1.000000/0.000000/15.000000/3.000000,box=1.000000/1.000000/14.000000:15.000000/4.000000/15.000000:u/0/1.000000/1.000000/15.000000/2.000000:s/1/1.000000/0.000000/15.000000/3.000000:w/1/1.000000/0.000000/2.000000/3.000000:e/1/14.000000/0.000000/15.000000/3.000000:n/1/1.000000/0.000000/15.000000/3.000000,box=1.000000/1.000000/2.000000:2.000000/4.000000/14.000000:u/0/1.000000/2.000000/2.000000/14.000000:w/1/2.000000/0.000000/14.000000/3.000000:e/1/2.000000/0.000000/14.000000/3.000000,box=14.000000/1.000000/2.000000:15.000000/4.000000/14.000000:u/0/1.000000/2.000000/2.000000/14.000000:w/1/2.000000/0.000000/14.000000/3.000000:e/1/2.000000/0.000000/14.000000/3.000000,box=7.000000/1.000000/15.000000:9.000000/3.000000/27.000000:u/1/7.000000/4.000000/9.000000/16.000000:s/1/3.000000/14.000000/5.000000/16.000000:w270/1/5.000000/4.000000/7.000000/16.000000:e90/1/9.000000/4.000000/11.000000/16.000000:d180/1/11.000000/4.000000/13.000000/16.000000:n/1/7.000000/14.000000/9.000000/16.000000
|
|
||||||
modellist:id=%skillet,state=facing:south/support:true,box=1.000000/0.000000/1.000000:15.000000/1.000000/15.000000:u/0/1.000000/1.000000/15.000000/15.000000:s/1/1.000000/3.000000/15.000000/4.000000:w/1/1.000000/3.000000/15.000000/4.000000:e/1/1.000000/3.000000/15.000000/4.000000:d/2/1.000000/1.000000/15.000000/15.000000:n/1/1.000000/3.000000/15.000000/4.000000:R/0/180/0,box=1.000000/1.000000/1.000000:15.000000/4.000000/2.000000:u/0/1.000000/1.000000/15.000000/2.000000:s/1/1.000000/0.000000/15.000000/3.000000:w/1/1.000000/0.000000/2.000000/3.000000:e/1/14.000000/0.000000/15.000000/3.000000:n/1/1.000000/0.000000/15.000000/3.000000:R/0/180/0,box=1.000000/1.000000/14.000000:15.000000/4.000000/15.000000:u/0/1.000000/1.000000/15.000000/2.000000:s/1/1.000000/0.000000/15.000000/3.000000:w/1/1.000000/0.000000/2.000000/3.000000:e/1/14.000000/0.000000/15.000000/3.000000:n/1/1.000000/0.000000/15.000000/3.000000:R/0/180/0,box=1.000000/1.000000/2.000000:2.000000/4.000000/14.000000:u/0/1.000000/2.000000/2.000000/14.000000:w/1/2.000000/0.000000/14.000000/3.000000:e/1/2.000000/0.000000/14.000000/3.000000:R/0/180/0,box=14.000000/1.000000/2.000000:15.000000/4.000000/14.000000:u/0/1.000000/2.000000/2.000000/14.000000:w/1/2.000000/0.000000/14.000000/3.000000:e/1/2.000000/0.000000/14.000000/3.000000:R/0/180/0,box=7.000000/1.000000/15.000000:9.000000/3.000000/27.000000:u/1/7.000000/4.000000/9.000000/16.000000:s/1/3.000000/14.000000/5.000000/16.000000:w270/1/5.000000/4.000000/7.000000/16.000000:e90/1/9.000000/4.000000/11.000000/16.000000:d180/1/11.000000/4.000000/13.000000/16.000000:n/1/7.000000/14.000000/9.000000/16.000000:R/0/180/0,box=0.000000/-1.000000/0.000000:16.000000/0.000000/16.000000:u/3/0.000000/0.000000/16.000000/16.000000:s/3/0.000000/0.000000/16.000000/1.000000:w/3/0.000000/0.000000/16.000000/1.000000:e/3/0.000000/0.000000/16.000000/1.000000:d/3/0.000000/0.000000/16.000000/16.000000:n/3/0.000000/0.000000/16.000000/1.000000:R/0/180/0,box=15.000000/-16.000000/15.000000:16.000000/-1.000000/16.000000:u/4/0.000000/0.000000/0.500000/0.500000:s/4/15.000000/1.000000/16.000000/16.000000:w/4/15.000000/1.000000/16.000000/16.000000:e/4/0.000000/1.000000/1.000000/16.000000:d/4/0.000000/0.000000/0.500000/0.500000:n/4/0.000000/1.000000/1.000000/16.000000:R/0/180/0,box=0.000000/-16.000000/15.000000:1.000000/-1.000000/16.000000:u/4/0.000000/0.000000/0.500000/0.500000:s/4/0.000000/1.000000/1.000000/16.000000:w/4/15.000000/1.000000/16.000000/16.000000:e/4/0.000000/1.000000/1.000000/16.000000:d/4/0.000000/0.000000/0.500000/0.500000:n/4/15.000000/1.000000/16.000000/16.000000:R/0/180/0,box=15.000000/-16.000000/0.000000:16.000000/-1.000000/1.000000:u/4/0.000000/0.000000/0.500000/0.500000:s/4/15.000000/1.000000/16.000000/16.000000:w/4/0.000000/1.000000/1.000000/16.000000:e/4/15.000000/1.000000/16.000000/16.000000:d/4/0.000000/0.000000/0.500000/0.500000:n/4/0.000000/1.000000/1.000000/16.000000:R/0/180/0,box=0.000000/-16.000000/0.000000:1.000000/-1.000000/1.000000:u/4/0.000000/0.000000/0.500000/0.500000:s/4/0.000000/1.000000/1.000000/16.000000:w/4/0.000000/1.000000/1.000000/16.000000:e/4/15.000000/1.000000/16.000000/16.000000:d/4/0.000000/0.000000/0.500000/0.500000:n/4/15.000000/1.000000/16.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%skillet,state=facing:south/support:false,box=1.000000/0.000000/1.000000:15.000000/1.000000/15.000000:u/0/1.000000/1.000000/15.000000/15.000000:s/1/1.000000/3.000000/15.000000/4.000000:w/1/1.000000/3.000000/15.000000/4.000000:e/1/1.000000/3.000000/15.000000/4.000000:d/2/1.000000/1.000000/15.000000/15.000000:n/1/1.000000/3.000000/15.000000/4.000000:R/0/180/0,box=1.000000/1.000000/1.000000:15.000000/4.000000/2.000000:u/0/1.000000/1.000000/15.000000/2.000000:s/1/1.000000/0.000000/15.000000/3.000000:w/1/1.000000/0.000000/2.000000/3.000000:e/1/14.000000/0.000000/15.000000/3.000000:n/1/1.000000/0.000000/15.000000/3.000000:R/0/180/0,box=1.000000/1.000000/14.000000:15.000000/4.000000/15.000000:u/0/1.000000/1.000000/15.000000/2.000000:s/1/1.000000/0.000000/15.000000/3.000000:w/1/1.000000/0.000000/2.000000/3.000000:e/1/14.000000/0.000000/15.000000/3.000000:n/1/1.000000/0.000000/15.000000/3.000000:R/0/180/0,box=1.000000/1.000000/2.000000:2.000000/4.000000/14.000000:u/0/1.000000/2.000000/2.000000/14.000000:w/1/2.000000/0.000000/14.000000/3.000000:e/1/2.000000/0.000000/14.000000/3.000000:R/0/180/0,box=14.000000/1.000000/2.000000:15.000000/4.000000/14.000000:u/0/1.000000/2.000000/2.000000/14.000000:w/1/2.000000/0.000000/14.000000/3.000000:e/1/2.000000/0.000000/14.000000/3.000000:R/0/180/0,box=7.000000/1.000000/15.000000:9.000000/3.000000/27.000000:u/1/7.000000/4.000000/9.000000/16.000000:s/1/3.000000/14.000000/5.000000/16.000000:w270/1/5.000000/4.000000/7.000000/16.000000:e90/1/9.000000/4.000000/11.000000/16.000000:d180/1/11.000000/4.000000/13.000000/16.000000:n/1/7.000000/14.000000/9.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%skillet,state=facing:west/support:true,box=1.000000/0.000000/1.000000:15.000000/1.000000/15.000000:u/0/1.000000/1.000000/15.000000/15.000000:s/1/1.000000/3.000000/15.000000/4.000000:w/1/1.000000/3.000000/15.000000/4.000000:e/1/1.000000/3.000000/15.000000/4.000000:d/2/1.000000/1.000000/15.000000/15.000000:n/1/1.000000/3.000000/15.000000/4.000000:R/0/270/0,box=1.000000/1.000000/1.000000:15.000000/4.000000/2.000000:u/0/1.000000/1.000000/15.000000/2.000000:s/1/1.000000/0.000000/15.000000/3.000000:w/1/1.000000/0.000000/2.000000/3.000000:e/1/14.000000/0.000000/15.000000/3.000000:n/1/1.000000/0.000000/15.000000/3.000000:R/0/270/0,box=1.000000/1.000000/14.000000:15.000000/4.000000/15.000000:u/0/1.000000/1.000000/15.000000/2.000000:s/1/1.000000/0.000000/15.000000/3.000000:w/1/1.000000/0.000000/2.000000/3.000000:e/1/14.000000/0.000000/15.000000/3.000000:n/1/1.000000/0.000000/15.000000/3.000000:R/0/270/0,box=1.000000/1.000000/2.000000:2.000000/4.000000/14.000000:u/0/1.000000/2.000000/2.000000/14.000000:w/1/2.000000/0.000000/14.000000/3.000000:e/1/2.000000/0.000000/14.000000/3.000000:R/0/270/0,box=14.000000/1.000000/2.000000:15.000000/4.000000/14.000000:u/0/1.000000/2.000000/2.000000/14.000000:w/1/2.000000/0.000000/14.000000/3.000000:e/1/2.000000/0.000000/14.000000/3.000000:R/0/270/0,box=7.000000/1.000000/15.000000:9.000000/3.000000/27.000000:u/1/7.000000/4.000000/9.000000/16.000000:s/1/3.000000/14.000000/5.000000/16.000000:w270/1/5.000000/4.000000/7.000000/16.000000:e90/1/9.000000/4.000000/11.000000/16.000000:d180/1/11.000000/4.000000/13.000000/16.000000:n/1/7.000000/14.000000/9.000000/16.000000:R/0/270/0,box=0.000000/-1.000000/0.000000:16.000000/0.000000/16.000000:u/3/0.000000/0.000000/16.000000/16.000000:s/3/0.000000/0.000000/16.000000/1.000000:w/3/0.000000/0.000000/16.000000/1.000000:e/3/0.000000/0.000000/16.000000/1.000000:d/3/0.000000/0.000000/16.000000/16.000000:n/3/0.000000/0.000000/16.000000/1.000000:R/0/270/0,box=15.000000/-16.000000/15.000000:16.000000/-1.000000/16.000000:u/4/0.000000/0.000000/0.500000/0.500000:s/4/15.000000/1.000000/16.000000/16.000000:w/4/15.000000/1.000000/16.000000/16.000000:e/4/0.000000/1.000000/1.000000/16.000000:d/4/0.000000/0.000000/0.500000/0.500000:n/4/0.000000/1.000000/1.000000/16.000000:R/0/270/0,box=0.000000/-16.000000/15.000000:1.000000/-1.000000/16.000000:u/4/0.000000/0.000000/0.500000/0.500000:s/4/0.000000/1.000000/1.000000/16.000000:w/4/15.000000/1.000000/16.000000/16.000000:e/4/0.000000/1.000000/1.000000/16.000000:d/4/0.000000/0.000000/0.500000/0.500000:n/4/15.000000/1.000000/16.000000/16.000000:R/0/270/0,box=15.000000/-16.000000/0.000000:16.000000/-1.000000/1.000000:u/4/0.000000/0.000000/0.500000/0.500000:s/4/15.000000/1.000000/16.000000/16.000000:w/4/0.000000/1.000000/1.000000/16.000000:e/4/15.000000/1.000000/16.000000/16.000000:d/4/0.000000/0.000000/0.500000/0.500000:n/4/0.000000/1.000000/1.000000/16.000000:R/0/270/0,box=0.000000/-16.000000/0.000000:1.000000/-1.000000/1.000000:u/4/0.000000/0.000000/0.500000/0.500000:s/4/0.000000/1.000000/1.000000/16.000000:w/4/0.000000/1.000000/1.000000/16.000000:e/4/15.000000/1.000000/16.000000/16.000000:d/4/0.000000/0.000000/0.500000/0.500000:n/4/15.000000/1.000000/16.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%skillet,state=facing:west/support:false,box=1.000000/0.000000/1.000000:15.000000/1.000000/15.000000:u/0/1.000000/1.000000/15.000000/15.000000:s/1/1.000000/3.000000/15.000000/4.000000:w/1/1.000000/3.000000/15.000000/4.000000:e/1/1.000000/3.000000/15.000000/4.000000:d/2/1.000000/1.000000/15.000000/15.000000:n/1/1.000000/3.000000/15.000000/4.000000:R/0/270/0,box=1.000000/1.000000/1.000000:15.000000/4.000000/2.000000:u/0/1.000000/1.000000/15.000000/2.000000:s/1/1.000000/0.000000/15.000000/3.000000:w/1/1.000000/0.000000/2.000000/3.000000:e/1/14.000000/0.000000/15.000000/3.000000:n/1/1.000000/0.000000/15.000000/3.000000:R/0/270/0,box=1.000000/1.000000/14.000000:15.000000/4.000000/15.000000:u/0/1.000000/1.000000/15.000000/2.000000:s/1/1.000000/0.000000/15.000000/3.000000:w/1/1.000000/0.000000/2.000000/3.000000:e/1/14.000000/0.000000/15.000000/3.000000:n/1/1.000000/0.000000/15.000000/3.000000:R/0/270/0,box=1.000000/1.000000/2.000000:2.000000/4.000000/14.000000:u/0/1.000000/2.000000/2.000000/14.000000:w/1/2.000000/0.000000/14.000000/3.000000:e/1/2.000000/0.000000/14.000000/3.000000:R/0/270/0,box=14.000000/1.000000/2.000000:15.000000/4.000000/14.000000:u/0/1.000000/2.000000/2.000000/14.000000:w/1/2.000000/0.000000/14.000000/3.000000:e/1/2.000000/0.000000/14.000000/3.000000:R/0/270/0,box=7.000000/1.000000/15.000000:9.000000/3.000000/27.000000:u/1/7.000000/4.000000/9.000000/16.000000:s/1/3.000000/14.000000/5.000000/16.000000:w270/1/5.000000/4.000000/7.000000/16.000000:e90/1/9.000000/4.000000/11.000000/16.000000:d180/1/11.000000/4.000000/13.000000/16.000000:n/1/7.000000/14.000000/9.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%skillet,state=facing:east/support:true,box=1.000000/0.000000/1.000000:15.000000/1.000000/15.000000:u/0/1.000000/1.000000/15.000000/15.000000:s/1/1.000000/3.000000/15.000000/4.000000:w/1/1.000000/3.000000/15.000000/4.000000:e/1/1.000000/3.000000/15.000000/4.000000:d/2/1.000000/1.000000/15.000000/15.000000:n/1/1.000000/3.000000/15.000000/4.000000:R/0/90/0,box=1.000000/1.000000/1.000000:15.000000/4.000000/2.000000:u/0/1.000000/1.000000/15.000000/2.000000:s/1/1.000000/0.000000/15.000000/3.000000:w/1/1.000000/0.000000/2.000000/3.000000:e/1/14.000000/0.000000/15.000000/3.000000:n/1/1.000000/0.000000/15.000000/3.000000:R/0/90/0,box=1.000000/1.000000/14.000000:15.000000/4.000000/15.000000:u/0/1.000000/1.000000/15.000000/2.000000:s/1/1.000000/0.000000/15.000000/3.000000:w/1/1.000000/0.000000/2.000000/3.000000:e/1/14.000000/0.000000/15.000000/3.000000:n/1/1.000000/0.000000/15.000000/3.000000:R/0/90/0,box=1.000000/1.000000/2.000000:2.000000/4.000000/14.000000:u/0/1.000000/2.000000/2.000000/14.000000:w/1/2.000000/0.000000/14.000000/3.000000:e/1/2.000000/0.000000/14.000000/3.000000:R/0/90/0,box=14.000000/1.000000/2.000000:15.000000/4.000000/14.000000:u/0/1.000000/2.000000/2.000000/14.000000:w/1/2.000000/0.000000/14.000000/3.000000:e/1/2.000000/0.000000/14.000000/3.000000:R/0/90/0,box=7.000000/1.000000/15.000000:9.000000/3.000000/27.000000:u/1/7.000000/4.000000/9.000000/16.000000:s/1/3.000000/14.000000/5.000000/16.000000:w270/1/5.000000/4.000000/7.000000/16.000000:e90/1/9.000000/4.000000/11.000000/16.000000:d180/1/11.000000/4.000000/13.000000/16.000000:n/1/7.000000/14.000000/9.000000/16.000000:R/0/90/0,box=0.000000/-1.000000/0.000000:16.000000/0.000000/16.000000:u/3/0.000000/0.000000/16.000000/16.000000:s/3/0.000000/0.000000/16.000000/1.000000:w/3/0.000000/0.000000/16.000000/1.000000:e/3/0.000000/0.000000/16.000000/1.000000:d/3/0.000000/0.000000/16.000000/16.000000:n/3/0.000000/0.000000/16.000000/1.000000:R/0/90/0,box=15.000000/-16.000000/15.000000:16.000000/-1.000000/16.000000:u/4/0.000000/0.000000/0.500000/0.500000:s/4/15.000000/1.000000/16.000000/16.000000:w/4/15.000000/1.000000/16.000000/16.000000:e/4/0.000000/1.000000/1.000000/16.000000:d/4/0.000000/0.000000/0.500000/0.500000:n/4/0.000000/1.000000/1.000000/16.000000:R/0/90/0,box=0.000000/-16.000000/15.000000:1.000000/-1.000000/16.000000:u/4/0.000000/0.000000/0.500000/0.500000:s/4/0.000000/1.000000/1.000000/16.000000:w/4/15.000000/1.000000/16.000000/16.000000:e/4/0.000000/1.000000/1.000000/16.000000:d/4/0.000000/0.000000/0.500000/0.500000:n/4/15.000000/1.000000/16.000000/16.000000:R/0/90/0,box=15.000000/-16.000000/0.000000:16.000000/-1.000000/1.000000:u/4/0.000000/0.000000/0.500000/0.500000:s/4/15.000000/1.000000/16.000000/16.000000:w/4/0.000000/1.000000/1.000000/16.000000:e/4/15.000000/1.000000/16.000000/16.000000:d/4/0.000000/0.000000/0.500000/0.500000:n/4/0.000000/1.000000/1.000000/16.000000:R/0/90/0,box=0.000000/-16.000000/0.000000:1.000000/-1.000000/1.000000:u/4/0.000000/0.000000/0.500000/0.500000:s/4/0.000000/1.000000/1.000000/16.000000:w/4/0.000000/1.000000/1.000000/16.000000:e/4/15.000000/1.000000/16.000000/16.000000:d/4/0.000000/0.000000/0.500000/0.500000:n/4/15.000000/1.000000/16.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%skillet,state=facing:east/support:false,box=1.000000/0.000000/1.000000:15.000000/1.000000/15.000000:u/0/1.000000/1.000000/15.000000/15.000000:s/1/1.000000/3.000000/15.000000/4.000000:w/1/1.000000/3.000000/15.000000/4.000000:e/1/1.000000/3.000000/15.000000/4.000000:d/2/1.000000/1.000000/15.000000/15.000000:n/1/1.000000/3.000000/15.000000/4.000000:R/0/90/0,box=1.000000/1.000000/1.000000:15.000000/4.000000/2.000000:u/0/1.000000/1.000000/15.000000/2.000000:s/1/1.000000/0.000000/15.000000/3.000000:w/1/1.000000/0.000000/2.000000/3.000000:e/1/14.000000/0.000000/15.000000/3.000000:n/1/1.000000/0.000000/15.000000/3.000000:R/0/90/0,box=1.000000/1.000000/14.000000:15.000000/4.000000/15.000000:u/0/1.000000/1.000000/15.000000/2.000000:s/1/1.000000/0.000000/15.000000/3.000000:w/1/1.000000/0.000000/2.000000/3.000000:e/1/14.000000/0.000000/15.000000/3.000000:n/1/1.000000/0.000000/15.000000/3.000000:R/0/90/0,box=1.000000/1.000000/2.000000:2.000000/4.000000/14.000000:u/0/1.000000/2.000000/2.000000/14.000000:w/1/2.000000/0.000000/14.000000/3.000000:e/1/2.000000/0.000000/14.000000/3.000000:R/0/90/0,box=14.000000/1.000000/2.000000:15.000000/4.000000/14.000000:u/0/1.000000/2.000000/2.000000/14.000000:w/1/2.000000/0.000000/14.000000/3.000000:e/1/2.000000/0.000000/14.000000/3.000000:R/0/90/0,box=7.000000/1.000000/15.000000:9.000000/3.000000/27.000000:u/1/7.000000/4.000000/9.000000/16.000000:s/1/3.000000/14.000000/5.000000/16.000000:w270/1/5.000000/4.000000/7.000000/16.000000:e90/1/9.000000/4.000000/11.000000/16.000000:d180/1/11.000000/4.000000/13.000000/16.000000:n/1/7.000000/14.000000/9.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%basket,state=facing:north,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/2.000000:R/90/0/0,box=0.000000/13.000000/0.000000:16.000000/16.000000/2.000000:u/1/0.000000/0.000000/16.000000/2.000000:s/2/16.000000/0.000000/0.000000/3.000000:w/2/0.000000/0.000000/2.000000/3.000000:e/2/14.000000/0.000000/16.000000/3.000000:d/1/0.000000/0.000000/16.000000/2.000000:n/2/0.000000/0.000000/16.000000/3.000000:R/90/0/0,box=10.000000/11.000000/0.000000:16.000000/13.000000/2.000000:s/2/6.000000/3.000000/0.000000/5.000000:w/3/0.000000/2.000000/2.000000/4.000000:e/2/14.000000/3.000000/16.000000/5.000000:n/2/0.000000/3.000000/6.000000/5.000000:R/90/0/0,box=0.000000/11.000000/0.000000:6.000000/13.000000/2.000000:s/2/16.000000/3.000000/10.000000/5.000000:w/2/0.000000/3.000000/2.000000/5.000000:e/3/14.000000/2.000000/16.000000/4.000000:n/2/10.000000/3.000000/16.000000/5.000000:R/90/0/0,box=0.000000/2.000000/0.000000:16.000000/11.000000/2.000000:u/3/0.000000/0.000000/16.000000/2.000000:s/2/16.000000/5.000000/0.000000/14.000000:w/2/0.000000/5.000000/2.000000/14.000000:e/2/14.000000/5.000000/16.000000/14.000000:n/2/0.000000/5.000000/16.000000/14.000000:R/90/0/0,box=0.000000/13.000000/14.000000:16.000000/16.000000/16.000000:u/1/0.000000/14.000000/16.000000/16.000000:s/2/0.000000/0.000000/16.000000/3.000000:w/2/14.000000/0.000000/16.000000/3.000000:e/2/0.000000/0.000000/2.000000/3.000000:d/1/0.000000/14.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/3.000000:R/90/0/0,box=0.000000/11.000000/14.000000:6.000000/13.000000/16.000000:s/2/0.000000/3.000000/6.000000/5.000000:w/2/14.000000/3.000000/16.000000/5.000000:e/3/0.000000/2.000000/2.000000/4.000000:n/2/6.000000/3.000000/0.000000/5.000000:R/90/0/0,box=10.000000/11.000000/14.000000:16.000000/13.000000/16.000000:s/2/10.000000/3.000000/16.000000/5.000000:w/3/0.000000/2.000000/2.000000/4.000000:e/2/0.000000/3.000000/2.000000/5.000000:n/2/16.000000/3.000000/10.000000/5.000000:R/90/0/0,box=0.000000/2.000000/14.000000:16.000000/11.000000/16.000000:u/3/0.000000/14.000000/16.000000/16.000000:s/2/0.000000/5.000000/16.000000/14.000000:w/2/14.000000/5.000000/16.000000/14.000000:e/2/0.000000/5.000000/2.000000/14.000000:n/2/16.000000/5.000000/0.000000/14.000000:R/90/0/0,box=0.000000/13.000000/2.000000:2.000000/16.000000/14.000000:u/1/0.000000/2.000000/2.000000/14.000000:w/2/2.000000/0.000000/14.000000/3.000000:e/2/14.000000/0.000000/2.000000/3.000000:d/1/14.000000/2.000000/16.000000/14.000000:R/90/0/0,box=0.000000/11.000000/2.000000:2.000000/13.000000/6.000000:s/3/0.000000/2.000000/2.000000/4.000000:w/2/2.000000/3.000000/6.000000/5.000000:e/2/6.000000/3.000000/2.000000/5.000000:R/90/0/0,box=0.000000/11.000000/10.000000:2.000000/13.000000/14.000000:w/2/10.000000/3.000000/14.000000/5.000000:e/2/14.000000/3.000000/10.000000/5.000000:n/3/14.000000/2.000000/16.000000/4.000000:R/90/0/0,box=0.000000/2.000000/2.000000:2.000000/11.000000/14.000000:u/3/0.000000/2.000000/2.000000/14.000000:s/2/0.000000/0.000000/2.000000/16.000000:w/2/2.000000/5.000000/14.000000/14.000000:e/2/14.000000/5.000000/2.000000/14.000000:n/2/14.000000/0.000000/16.000000/16.000000:R/90/0/0,box=14.000000/13.000000/2.000000:16.000000/16.000000/14.000000:u/1/14.000000/2.000000/16.000000/14.000000:w/2/14.000000/0.000000/2.000000/3.000000:e/2/2.000000/0.000000/14.000000/3.000000:d/1/0.000000/2.000000/2.000000/14.000000:R/90/0/0,box=14.000000/11.000000/10.000000:16.000000/13.000000/14.000000:w/2/6.000000/3.000000/2.000000/5.000000:e/2/2.000000/3.000000/6.000000/5.000000:n/3/0.000000/2.000000/2.000000/4.000000:R/90/0/0,box=14.000000/11.000000/2.000000:16.000000/13.000000/6.000000:s/3/14.000000/2.000000/16.000000/4.000000:w/2/14.000000/3.000000/10.000000/5.000000:e/2/10.000000/3.000000/14.000000/5.000000:R/90/0/0,box=14.000000/2.000000/2.000000:16.000000/11.000000/14.000000:u/3/14.000000/2.000000/16.000000/14.000000:w/2/14.000000/5.000000/2.000000/14.000000:e/2/2.000000/5.000000/14.000000/14.000000:R/90/0/0
|
|
||||||
modellist:id=%basket,state=facing:east,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/2.000000:R/90/90/0,box=0.000000/13.000000/0.000000:16.000000/16.000000/2.000000:u/1/0.000000/0.000000/16.000000/2.000000:s/2/16.000000/0.000000/0.000000/3.000000:w/2/0.000000/0.000000/2.000000/3.000000:e/2/14.000000/0.000000/16.000000/3.000000:d/1/0.000000/0.000000/16.000000/2.000000:n/2/0.000000/0.000000/16.000000/3.000000:R/90/90/0,box=10.000000/11.000000/0.000000:16.000000/13.000000/2.000000:s/2/6.000000/3.000000/0.000000/5.000000:w/3/0.000000/2.000000/2.000000/4.000000:e/2/14.000000/3.000000/16.000000/5.000000:n/2/0.000000/3.000000/6.000000/5.000000:R/90/90/0,box=0.000000/11.000000/0.000000:6.000000/13.000000/2.000000:s/2/16.000000/3.000000/10.000000/5.000000:w/2/0.000000/3.000000/2.000000/5.000000:e/3/14.000000/2.000000/16.000000/4.000000:n/2/10.000000/3.000000/16.000000/5.000000:R/90/90/0,box=0.000000/2.000000/0.000000:16.000000/11.000000/2.000000:u/3/0.000000/0.000000/16.000000/2.000000:s/2/16.000000/5.000000/0.000000/14.000000:w/2/0.000000/5.000000/2.000000/14.000000:e/2/14.000000/5.000000/16.000000/14.000000:n/2/0.000000/5.000000/16.000000/14.000000:R/90/90/0,box=0.000000/13.000000/14.000000:16.000000/16.000000/16.000000:u/1/0.000000/14.000000/16.000000/16.000000:s/2/0.000000/0.000000/16.000000/3.000000:w/2/14.000000/0.000000/16.000000/3.000000:e/2/0.000000/0.000000/2.000000/3.000000:d/1/0.000000/14.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/3.000000:R/90/90/0,box=0.000000/11.000000/14.000000:6.000000/13.000000/16.000000:s/2/0.000000/3.000000/6.000000/5.000000:w/2/14.000000/3.000000/16.000000/5.000000:e/3/0.000000/2.000000/2.000000/4.000000:n/2/6.000000/3.000000/0.000000/5.000000:R/90/90/0,box=10.000000/11.000000/14.000000:16.000000/13.000000/16.000000:s/2/10.000000/3.000000/16.000000/5.000000:w/3/0.000000/2.000000/2.000000/4.000000:e/2/0.000000/3.000000/2.000000/5.000000:n/2/16.000000/3.000000/10.000000/5.000000:R/90/90/0,box=0.000000/2.000000/14.000000:16.000000/11.000000/16.000000:u/3/0.000000/14.000000/16.000000/16.000000:s/2/0.000000/5.000000/16.000000/14.000000:w/2/14.000000/5.000000/16.000000/14.000000:e/2/0.000000/5.000000/2.000000/14.000000:n/2/16.000000/5.000000/0.000000/14.000000:R/90/90/0,box=0.000000/13.000000/2.000000:2.000000/16.000000/14.000000:u/1/0.000000/2.000000/2.000000/14.000000:w/2/2.000000/0.000000/14.000000/3.000000:e/2/14.000000/0.000000/2.000000/3.000000:d/1/14.000000/2.000000/16.000000/14.000000:R/90/90/0,box=0.000000/11.000000/2.000000:2.000000/13.000000/6.000000:s/3/0.000000/2.000000/2.000000/4.000000:w/2/2.000000/3.000000/6.000000/5.000000:e/2/6.000000/3.000000/2.000000/5.000000:R/90/90/0,box=0.000000/11.000000/10.000000:2.000000/13.000000/14.000000:w/2/10.000000/3.000000/14.000000/5.000000:e/2/14.000000/3.000000/10.000000/5.000000:n/3/14.000000/2.000000/16.000000/4.000000:R/90/90/0,box=0.000000/2.000000/2.000000:2.000000/11.000000/14.000000:u/3/0.000000/2.000000/2.000000/14.000000:s/2/0.000000/0.000000/2.000000/16.000000:w/2/2.000000/5.000000/14.000000/14.000000:e/2/14.000000/5.000000/2.000000/14.000000:n/2/14.000000/0.000000/16.000000/16.000000:R/90/90/0,box=14.000000/13.000000/2.000000:16.000000/16.000000/14.000000:u/1/14.000000/2.000000/16.000000/14.000000:w/2/14.000000/0.000000/2.000000/3.000000:e/2/2.000000/0.000000/14.000000/3.000000:d/1/0.000000/2.000000/2.000000/14.000000:R/90/90/0,box=14.000000/11.000000/10.000000:16.000000/13.000000/14.000000:w/2/6.000000/3.000000/2.000000/5.000000:e/2/2.000000/3.000000/6.000000/5.000000:n/3/0.000000/2.000000/2.000000/4.000000:R/90/90/0,box=14.000000/11.000000/2.000000:16.000000/13.000000/6.000000:s/3/14.000000/2.000000/16.000000/4.000000:w/2/14.000000/3.000000/10.000000/5.000000:e/2/10.000000/3.000000/14.000000/5.000000:R/90/90/0,box=14.000000/2.000000/2.000000:16.000000/11.000000/14.000000:u/3/14.000000/2.000000/16.000000/14.000000:w/2/14.000000/5.000000/2.000000/14.000000:e/2/2.000000/5.000000/14.000000/14.000000:R/90/90/0
|
|
||||||
modellist:id=%basket,state=facing:south,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/2.000000:R/90/180/0,box=0.000000/13.000000/0.000000:16.000000/16.000000/2.000000:u/1/0.000000/0.000000/16.000000/2.000000:s/2/16.000000/0.000000/0.000000/3.000000:w/2/0.000000/0.000000/2.000000/3.000000:e/2/14.000000/0.000000/16.000000/3.000000:d/1/0.000000/0.000000/16.000000/2.000000:n/2/0.000000/0.000000/16.000000/3.000000:R/90/180/0,box=10.000000/11.000000/0.000000:16.000000/13.000000/2.000000:s/2/6.000000/3.000000/0.000000/5.000000:w/3/0.000000/2.000000/2.000000/4.000000:e/2/14.000000/3.000000/16.000000/5.000000:n/2/0.000000/3.000000/6.000000/5.000000:R/90/180/0,box=0.000000/11.000000/0.000000:6.000000/13.000000/2.000000:s/2/16.000000/3.000000/10.000000/5.000000:w/2/0.000000/3.000000/2.000000/5.000000:e/3/14.000000/2.000000/16.000000/4.000000:n/2/10.000000/3.000000/16.000000/5.000000:R/90/180/0,box=0.000000/2.000000/0.000000:16.000000/11.000000/2.000000:u/3/0.000000/0.000000/16.000000/2.000000:s/2/16.000000/5.000000/0.000000/14.000000:w/2/0.000000/5.000000/2.000000/14.000000:e/2/14.000000/5.000000/16.000000/14.000000:n/2/0.000000/5.000000/16.000000/14.000000:R/90/180/0,box=0.000000/13.000000/14.000000:16.000000/16.000000/16.000000:u/1/0.000000/14.000000/16.000000/16.000000:s/2/0.000000/0.000000/16.000000/3.000000:w/2/14.000000/0.000000/16.000000/3.000000:e/2/0.000000/0.000000/2.000000/3.000000:d/1/0.000000/14.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/3.000000:R/90/180/0,box=0.000000/11.000000/14.000000:6.000000/13.000000/16.000000:s/2/0.000000/3.000000/6.000000/5.000000:w/2/14.000000/3.000000/16.000000/5.000000:e/3/0.000000/2.000000/2.000000/4.000000:n/2/6.000000/3.000000/0.000000/5.000000:R/90/180/0,box=10.000000/11.000000/14.000000:16.000000/13.000000/16.000000:s/2/10.000000/3.000000/16.000000/5.000000:w/3/0.000000/2.000000/2.000000/4.000000:e/2/0.000000/3.000000/2.000000/5.000000:n/2/16.000000/3.000000/10.000000/5.000000:R/90/180/0,box=0.000000/2.000000/14.000000:16.000000/11.000000/16.000000:u/3/0.000000/14.000000/16.000000/16.000000:s/2/0.000000/5.000000/16.000000/14.000000:w/2/14.000000/5.000000/16.000000/14.000000:e/2/0.000000/5.000000/2.000000/14.000000:n/2/16.000000/5.000000/0.000000/14.000000:R/90/180/0,box=0.000000/13.000000/2.000000:2.000000/16.000000/14.000000:u/1/0.000000/2.000000/2.000000/14.000000:w/2/2.000000/0.000000/14.000000/3.000000:e/2/14.000000/0.000000/2.000000/3.000000:d/1/14.000000/2.000000/16.000000/14.000000:R/90/180/0,box=0.000000/11.000000/2.000000:2.000000/13.000000/6.000000:s/3/0.000000/2.000000/2.000000/4.000000:w/2/2.000000/3.000000/6.000000/5.000000:e/2/6.000000/3.000000/2.000000/5.000000:R/90/180/0,box=0.000000/11.000000/10.000000:2.000000/13.000000/14.000000:w/2/10.000000/3.000000/14.000000/5.000000:e/2/14.000000/3.000000/10.000000/5.000000:n/3/14.000000/2.000000/16.000000/4.000000:R/90/180/0,box=0.000000/2.000000/2.000000:2.000000/11.000000/14.000000:u/3/0.000000/2.000000/2.000000/14.000000:s/2/0.000000/0.000000/2.000000/16.000000:w/2/2.000000/5.000000/14.000000/14.000000:e/2/14.000000/5.000000/2.000000/14.000000:n/2/14.000000/0.000000/16.000000/16.000000:R/90/180/0,box=14.000000/13.000000/2.000000:16.000000/16.000000/14.000000:u/1/14.000000/2.000000/16.000000/14.000000:w/2/14.000000/0.000000/2.000000/3.000000:e/2/2.000000/0.000000/14.000000/3.000000:d/1/0.000000/2.000000/2.000000/14.000000:R/90/180/0,box=14.000000/11.000000/10.000000:16.000000/13.000000/14.000000:w/2/6.000000/3.000000/2.000000/5.000000:e/2/2.000000/3.000000/6.000000/5.000000:n/3/0.000000/2.000000/2.000000/4.000000:R/90/180/0,box=14.000000/11.000000/2.000000:16.000000/13.000000/6.000000:s/3/14.000000/2.000000/16.000000/4.000000:w/2/14.000000/3.000000/10.000000/5.000000:e/2/10.000000/3.000000/14.000000/5.000000:R/90/180/0,box=14.000000/2.000000/2.000000:16.000000/11.000000/14.000000:u/3/14.000000/2.000000/16.000000/14.000000:w/2/14.000000/5.000000/2.000000/14.000000:e/2/2.000000/5.000000/14.000000/14.000000:R/90/180/0
|
|
||||||
modellist:id=%basket,state=facing:west,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/2.000000:R/90/270/0,box=0.000000/13.000000/0.000000:16.000000/16.000000/2.000000:u/1/0.000000/0.000000/16.000000/2.000000:s/2/16.000000/0.000000/0.000000/3.000000:w/2/0.000000/0.000000/2.000000/3.000000:e/2/14.000000/0.000000/16.000000/3.000000:d/1/0.000000/0.000000/16.000000/2.000000:n/2/0.000000/0.000000/16.000000/3.000000:R/90/270/0,box=10.000000/11.000000/0.000000:16.000000/13.000000/2.000000:s/2/6.000000/3.000000/0.000000/5.000000:w/3/0.000000/2.000000/2.000000/4.000000:e/2/14.000000/3.000000/16.000000/5.000000:n/2/0.000000/3.000000/6.000000/5.000000:R/90/270/0,box=0.000000/11.000000/0.000000:6.000000/13.000000/2.000000:s/2/16.000000/3.000000/10.000000/5.000000:w/2/0.000000/3.000000/2.000000/5.000000:e/3/14.000000/2.000000/16.000000/4.000000:n/2/10.000000/3.000000/16.000000/5.000000:R/90/270/0,box=0.000000/2.000000/0.000000:16.000000/11.000000/2.000000:u/3/0.000000/0.000000/16.000000/2.000000:s/2/16.000000/5.000000/0.000000/14.000000:w/2/0.000000/5.000000/2.000000/14.000000:e/2/14.000000/5.000000/16.000000/14.000000:n/2/0.000000/5.000000/16.000000/14.000000:R/90/270/0,box=0.000000/13.000000/14.000000:16.000000/16.000000/16.000000:u/1/0.000000/14.000000/16.000000/16.000000:s/2/0.000000/0.000000/16.000000/3.000000:w/2/14.000000/0.000000/16.000000/3.000000:e/2/0.000000/0.000000/2.000000/3.000000:d/1/0.000000/14.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/3.000000:R/90/270/0,box=0.000000/11.000000/14.000000:6.000000/13.000000/16.000000:s/2/0.000000/3.000000/6.000000/5.000000:w/2/14.000000/3.000000/16.000000/5.000000:e/3/0.000000/2.000000/2.000000/4.000000:n/2/6.000000/3.000000/0.000000/5.000000:R/90/270/0,box=10.000000/11.000000/14.000000:16.000000/13.000000/16.000000:s/2/10.000000/3.000000/16.000000/5.000000:w/3/0.000000/2.000000/2.000000/4.000000:e/2/0.000000/3.000000/2.000000/5.000000:n/2/16.000000/3.000000/10.000000/5.000000:R/90/270/0,box=0.000000/2.000000/14.000000:16.000000/11.000000/16.000000:u/3/0.000000/14.000000/16.000000/16.000000:s/2/0.000000/5.000000/16.000000/14.000000:w/2/14.000000/5.000000/16.000000/14.000000:e/2/0.000000/5.000000/2.000000/14.000000:n/2/16.000000/5.000000/0.000000/14.000000:R/90/270/0,box=0.000000/13.000000/2.000000:2.000000/16.000000/14.000000:u/1/0.000000/2.000000/2.000000/14.000000:w/2/2.000000/0.000000/14.000000/3.000000:e/2/14.000000/0.000000/2.000000/3.000000:d/1/14.000000/2.000000/16.000000/14.000000:R/90/270/0,box=0.000000/11.000000/2.000000:2.000000/13.000000/6.000000:s/3/0.000000/2.000000/2.000000/4.000000:w/2/2.000000/3.000000/6.000000/5.000000:e/2/6.000000/3.000000/2.000000/5.000000:R/90/270/0,box=0.000000/11.000000/10.000000:2.000000/13.000000/14.000000:w/2/10.000000/3.000000/14.000000/5.000000:e/2/14.000000/3.000000/10.000000/5.000000:n/3/14.000000/2.000000/16.000000/4.000000:R/90/270/0,box=0.000000/2.000000/2.000000:2.000000/11.000000/14.000000:u/3/0.000000/2.000000/2.000000/14.000000:s/2/0.000000/0.000000/2.000000/16.000000:w/2/2.000000/5.000000/14.000000/14.000000:e/2/14.000000/5.000000/2.000000/14.000000:n/2/14.000000/0.000000/16.000000/16.000000:R/90/270/0,box=14.000000/13.000000/2.000000:16.000000/16.000000/14.000000:u/1/14.000000/2.000000/16.000000/14.000000:w/2/14.000000/0.000000/2.000000/3.000000:e/2/2.000000/0.000000/14.000000/3.000000:d/1/0.000000/2.000000/2.000000/14.000000:R/90/270/0,box=14.000000/11.000000/10.000000:16.000000/13.000000/14.000000:w/2/6.000000/3.000000/2.000000/5.000000:e/2/2.000000/3.000000/6.000000/5.000000:n/3/0.000000/2.000000/2.000000/4.000000:R/90/270/0,box=14.000000/11.000000/2.000000:16.000000/13.000000/6.000000:s/3/14.000000/2.000000/16.000000/4.000000:w/2/14.000000/3.000000/10.000000/5.000000:e/2/10.000000/3.000000/14.000000/5.000000:R/90/270/0,box=14.000000/2.000000/2.000000:16.000000/11.000000/14.000000:u/3/14.000000/2.000000/16.000000/14.000000:w/2/14.000000/5.000000/2.000000/14.000000:e/2/2.000000/5.000000/14.000000/14.000000:R/90/270/0
|
|
||||||
modellist:id=%basket,state=facing:up,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/2.000000,box=0.000000/13.000000/0.000000:16.000000/16.000000/2.000000:u/1/0.000000/0.000000/16.000000/2.000000:s/2/16.000000/0.000000/0.000000/3.000000:w/2/0.000000/0.000000/2.000000/3.000000:e/2/14.000000/0.000000/16.000000/3.000000:d/1/0.000000/0.000000/16.000000/2.000000:n/2/0.000000/0.000000/16.000000/3.000000,box=10.000000/11.000000/0.000000:16.000000/13.000000/2.000000:s/2/6.000000/3.000000/0.000000/5.000000:w/3/0.000000/2.000000/2.000000/4.000000:e/2/14.000000/3.000000/16.000000/5.000000:n/2/0.000000/3.000000/6.000000/5.000000,box=0.000000/11.000000/0.000000:6.000000/13.000000/2.000000:s/2/16.000000/3.000000/10.000000/5.000000:w/2/0.000000/3.000000/2.000000/5.000000:e/3/14.000000/2.000000/16.000000/4.000000:n/2/10.000000/3.000000/16.000000/5.000000,box=0.000000/2.000000/0.000000:16.000000/11.000000/2.000000:u/3/0.000000/0.000000/16.000000/2.000000:s/2/16.000000/5.000000/0.000000/14.000000:w/2/0.000000/5.000000/2.000000/14.000000:e/2/14.000000/5.000000/16.000000/14.000000:n/2/0.000000/5.000000/16.000000/14.000000,box=0.000000/13.000000/14.000000:16.000000/16.000000/16.000000:u/1/0.000000/14.000000/16.000000/16.000000:s/2/0.000000/0.000000/16.000000/3.000000:w/2/14.000000/0.000000/16.000000/3.000000:e/2/0.000000/0.000000/2.000000/3.000000:d/1/0.000000/14.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/3.000000,box=0.000000/11.000000/14.000000:6.000000/13.000000/16.000000:s/2/0.000000/3.000000/6.000000/5.000000:w/2/14.000000/3.000000/16.000000/5.000000:e/3/0.000000/2.000000/2.000000/4.000000:n/2/6.000000/3.000000/0.000000/5.000000,box=10.000000/11.000000/14.000000:16.000000/13.000000/16.000000:s/2/10.000000/3.000000/16.000000/5.000000:w/3/0.000000/2.000000/2.000000/4.000000:e/2/0.000000/3.000000/2.000000/5.000000:n/2/16.000000/3.000000/10.000000/5.000000,box=0.000000/2.000000/14.000000:16.000000/11.000000/16.000000:u/3/0.000000/14.000000/16.000000/16.000000:s/2/0.000000/5.000000/16.000000/14.000000:w/2/14.000000/5.000000/16.000000/14.000000:e/2/0.000000/5.000000/2.000000/14.000000:n/2/16.000000/5.000000/0.000000/14.000000,box=0.000000/13.000000/2.000000:2.000000/16.000000/14.000000:u/1/0.000000/2.000000/2.000000/14.000000:w/2/2.000000/0.000000/14.000000/3.000000:e/2/14.000000/0.000000/2.000000/3.000000:d/1/14.000000/2.000000/16.000000/14.000000,box=0.000000/11.000000/2.000000:2.000000/13.000000/6.000000:s/3/0.000000/2.000000/2.000000/4.000000:w/2/2.000000/3.000000/6.000000/5.000000:e/2/6.000000/3.000000/2.000000/5.000000,box=0.000000/11.000000/10.000000:2.000000/13.000000/14.000000:w/2/10.000000/3.000000/14.000000/5.000000:e/2/14.000000/3.000000/10.000000/5.000000:n/3/14.000000/2.000000/16.000000/4.000000,box=0.000000/2.000000/2.000000:2.000000/11.000000/14.000000:u/3/0.000000/2.000000/2.000000/14.000000:s/2/0.000000/0.000000/2.000000/16.000000:w/2/2.000000/5.000000/14.000000/14.000000:e/2/14.000000/5.000000/2.000000/14.000000:n/2/14.000000/0.000000/16.000000/16.000000,box=14.000000/13.000000/2.000000:16.000000/16.000000/14.000000:u/1/14.000000/2.000000/16.000000/14.000000:w/2/14.000000/0.000000/2.000000/3.000000:e/2/2.000000/0.000000/14.000000/3.000000:d/1/0.000000/2.000000/2.000000/14.000000,box=14.000000/11.000000/10.000000:16.000000/13.000000/14.000000:w/2/6.000000/3.000000/2.000000/5.000000:e/2/2.000000/3.000000/6.000000/5.000000:n/3/0.000000/2.000000/2.000000/4.000000,box=14.000000/11.000000/2.000000:16.000000/13.000000/6.000000:s/3/14.000000/2.000000/16.000000/4.000000:w/2/14.000000/3.000000/10.000000/5.000000:e/2/10.000000/3.000000/14.000000/5.000000,box=14.000000/2.000000/2.000000:16.000000/11.000000/14.000000:u/3/14.000000/2.000000/16.000000/14.000000:w/2/14.000000/5.000000/2.000000/14.000000:e/2/2.000000/5.000000/14.000000/14.000000
|
|
||||||
modellist:id=%basket,state=facing:down,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/2.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/0.000000/0.000000/16.000000/2.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/2.000000:R/180/0/0,box=0.000000/13.000000/0.000000:16.000000/16.000000/2.000000:u/1/0.000000/0.000000/16.000000/2.000000:s/2/16.000000/0.000000/0.000000/3.000000:w/2/0.000000/0.000000/2.000000/3.000000:e/2/14.000000/0.000000/16.000000/3.000000:d/1/0.000000/0.000000/16.000000/2.000000:n/2/0.000000/0.000000/16.000000/3.000000:R/180/0/0,box=10.000000/11.000000/0.000000:16.000000/13.000000/2.000000:s/2/6.000000/3.000000/0.000000/5.000000:w/3/0.000000/2.000000/2.000000/4.000000:e/2/14.000000/3.000000/16.000000/5.000000:n/2/0.000000/3.000000/6.000000/5.000000:R/180/0/0,box=0.000000/11.000000/0.000000:6.000000/13.000000/2.000000:s/2/16.000000/3.000000/10.000000/5.000000:w/2/0.000000/3.000000/2.000000/5.000000:e/3/14.000000/2.000000/16.000000/4.000000:n/2/10.000000/3.000000/16.000000/5.000000:R/180/0/0,box=0.000000/2.000000/0.000000:16.000000/11.000000/2.000000:u/3/0.000000/0.000000/16.000000/2.000000:s/2/16.000000/5.000000/0.000000/14.000000:w/2/0.000000/5.000000/2.000000/14.000000:e/2/14.000000/5.000000/16.000000/14.000000:n/2/0.000000/5.000000/16.000000/14.000000:R/180/0/0,box=0.000000/13.000000/14.000000:16.000000/16.000000/16.000000:u/1/0.000000/14.000000/16.000000/16.000000:s/2/0.000000/0.000000/16.000000/3.000000:w/2/14.000000/0.000000/16.000000/3.000000:e/2/0.000000/0.000000/2.000000/3.000000:d/1/0.000000/14.000000/16.000000/16.000000:n/2/16.000000/0.000000/0.000000/3.000000:R/180/0/0,box=0.000000/11.000000/14.000000:6.000000/13.000000/16.000000:s/2/0.000000/3.000000/6.000000/5.000000:w/2/14.000000/3.000000/16.000000/5.000000:e/3/0.000000/2.000000/2.000000/4.000000:n/2/6.000000/3.000000/0.000000/5.000000:R/180/0/0,box=10.000000/11.000000/14.000000:16.000000/13.000000/16.000000:s/2/10.000000/3.000000/16.000000/5.000000:w/3/0.000000/2.000000/2.000000/4.000000:e/2/0.000000/3.000000/2.000000/5.000000:n/2/16.000000/3.000000/10.000000/5.000000:R/180/0/0,box=0.000000/2.000000/14.000000:16.000000/11.000000/16.000000:u/3/0.000000/14.000000/16.000000/16.000000:s/2/0.000000/5.000000/16.000000/14.000000:w/2/14.000000/5.000000/16.000000/14.000000:e/2/0.000000/5.000000/2.000000/14.000000:n/2/16.000000/5.000000/0.000000/14.000000:R/180/0/0,box=0.000000/13.000000/2.000000:2.000000/16.000000/14.000000:u/1/0.000000/2.000000/2.000000/14.000000:w/2/2.000000/0.000000/14.000000/3.000000:e/2/14.000000/0.000000/2.000000/3.000000:d/1/14.000000/2.000000/16.000000/14.000000:R/180/0/0,box=0.000000/11.000000/2.000000:2.000000/13.000000/6.000000:s/3/0.000000/2.000000/2.000000/4.000000:w/2/2.000000/3.000000/6.000000/5.000000:e/2/6.000000/3.000000/2.000000/5.000000:R/180/0/0,box=0.000000/11.000000/10.000000:2.000000/13.000000/14.000000:w/2/10.000000/3.000000/14.000000/5.000000:e/2/14.000000/3.000000/10.000000/5.000000:n/3/14.000000/2.000000/16.000000/4.000000:R/180/0/0,box=0.000000/2.000000/2.000000:2.000000/11.000000/14.000000:u/3/0.000000/2.000000/2.000000/14.000000:s/2/0.000000/0.000000/2.000000/16.000000:w/2/2.000000/5.000000/14.000000/14.000000:e/2/14.000000/5.000000/2.000000/14.000000:n/2/14.000000/0.000000/16.000000/16.000000:R/180/0/0,box=14.000000/13.000000/2.000000:16.000000/16.000000/14.000000:u/1/14.000000/2.000000/16.000000/14.000000:w/2/14.000000/0.000000/2.000000/3.000000:e/2/2.000000/0.000000/14.000000/3.000000:d/1/0.000000/2.000000/2.000000/14.000000:R/180/0/0,box=14.000000/11.000000/10.000000:16.000000/13.000000/14.000000:w/2/6.000000/3.000000/2.000000/5.000000:e/2/2.000000/3.000000/6.000000/5.000000:n/3/0.000000/2.000000/2.000000/4.000000:R/180/0/0,box=14.000000/11.000000/2.000000:16.000000/13.000000/6.000000:s/3/14.000000/2.000000/16.000000/4.000000:w/2/14.000000/3.000000/10.000000/5.000000:e/2/10.000000/3.000000/14.000000/5.000000:R/180/0/0,box=14.000000/2.000000/2.000000:16.000000/11.000000/14.000000:u/3/14.000000/2.000000/16.000000/14.000000:w/2/14.000000/5.000000/2.000000/14.000000:e/2/2.000000/5.000000/14.000000/14.000000:R/180/0/0
|
|
||||||
modellist:id=%cutting_board,state=facing:north,box=13.000000/0.000000/1.000000:15.000000/1.000000/15.000000:u/0/13.000000/1.000000/15.000000/15.000000:s/0/13.000000/14.000000/15.000000/15.000000:w/0/1.000000/2.000000/15.000000/3.000000:e/0/1.000000/1.000000/15.000000/2.000000:d/0/13.000000/1.000000/15.000000/15.000000:n/0/13.000000/1.000000/15.000000/2.000000,box=1.000000/0.000000/1.000000:12.000000/1.000000/15.000000:u/0/1.000000/1.000000/12.000000/15.000000:s/0/1.000000/14.000000/12.000000/15.000000:w/0/1.000000/14.000000/15.000000/15.000000:e/0/0.000000/13.000000/14.000000/14.000000:d/0/1.000000/1.000000/12.000000/15.000000:n/0/1.000000/1.000000/12.000000/2.000000,box=12.000000/0.000000/1.000000:13.000000/1.000000/6.000000:u/0/12.000000/1.000000/13.000000/6.000000:s/0/12.000000/5.000000/13.000000/6.000000:d/0/12.000000/10.000000/13.000000/15.000000:n/0/12.000000/1.000000/13.000000/2.000000,box=12.000000/0.000000/10.000000:13.000000/1.000000/15.000000:u/0/12.000000/10.000000/13.000000/15.000000:s/0/12.000000/14.000000/13.000000/15.000000:d/0/12.000000/1.000000/13.000000/6.000000:n/0/12.000000/10.000000/13.000000/11.000000
|
|
||||||
modellist:id=%cutting_board,state=facing:south,box=13.000000/0.000000/1.000000:15.000000/1.000000/15.000000:u/0/13.000000/1.000000/15.000000/15.000000:s/0/13.000000/14.000000/15.000000/15.000000:w/0/1.000000/2.000000/15.000000/3.000000:e/0/1.000000/1.000000/15.000000/2.000000:d/0/13.000000/1.000000/15.000000/15.000000:n/0/13.000000/1.000000/15.000000/2.000000:R/0/180/0,box=1.000000/0.000000/1.000000:12.000000/1.000000/15.000000:u/0/1.000000/1.000000/12.000000/15.000000:s/0/1.000000/14.000000/12.000000/15.000000:w/0/1.000000/14.000000/15.000000/15.000000:e/0/0.000000/13.000000/14.000000/14.000000:d/0/1.000000/1.000000/12.000000/15.000000:n/0/1.000000/1.000000/12.000000/2.000000:R/0/180/0,box=12.000000/0.000000/1.000000:13.000000/1.000000/6.000000:u/0/12.000000/1.000000/13.000000/6.000000:s/0/12.000000/5.000000/13.000000/6.000000:d/0/12.000000/10.000000/13.000000/15.000000:n/0/12.000000/1.000000/13.000000/2.000000:R/0/180/0,box=12.000000/0.000000/10.000000:13.000000/1.000000/15.000000:u/0/12.000000/10.000000/13.000000/15.000000:s/0/12.000000/14.000000/13.000000/15.000000:d/0/12.000000/1.000000/13.000000/6.000000:n/0/12.000000/10.000000/13.000000/11.000000:R/0/180/0
|
|
||||||
modellist:id=%cutting_board,state=facing:west,box=13.000000/0.000000/1.000000:15.000000/1.000000/15.000000:u/0/13.000000/1.000000/15.000000/15.000000:s/0/13.000000/14.000000/15.000000/15.000000:w/0/1.000000/2.000000/15.000000/3.000000:e/0/1.000000/1.000000/15.000000/2.000000:d/0/13.000000/1.000000/15.000000/15.000000:n/0/13.000000/1.000000/15.000000/2.000000:R/0/270/0,box=1.000000/0.000000/1.000000:12.000000/1.000000/15.000000:u/0/1.000000/1.000000/12.000000/15.000000:s/0/1.000000/14.000000/12.000000/15.000000:w/0/1.000000/14.000000/15.000000/15.000000:e/0/0.000000/13.000000/14.000000/14.000000:d/0/1.000000/1.000000/12.000000/15.000000:n/0/1.000000/1.000000/12.000000/2.000000:R/0/270/0,box=12.000000/0.000000/1.000000:13.000000/1.000000/6.000000:u/0/12.000000/1.000000/13.000000/6.000000:s/0/12.000000/5.000000/13.000000/6.000000:d/0/12.000000/10.000000/13.000000/15.000000:n/0/12.000000/1.000000/13.000000/2.000000:R/0/270/0,box=12.000000/0.000000/10.000000:13.000000/1.000000/15.000000:u/0/12.000000/10.000000/13.000000/15.000000:s/0/12.000000/14.000000/13.000000/15.000000:d/0/12.000000/1.000000/13.000000/6.000000:n/0/12.000000/10.000000/13.000000/11.000000:R/0/270/0
|
|
||||||
modellist:id=%cutting_board,state=facing:east,box=13.000000/0.000000/1.000000:15.000000/1.000000/15.000000:u/0/13.000000/1.000000/15.000000/15.000000:s/0/13.000000/14.000000/15.000000/15.000000:w/0/1.000000/2.000000/15.000000/3.000000:e/0/1.000000/1.000000/15.000000/2.000000:d/0/13.000000/1.000000/15.000000/15.000000:n/0/13.000000/1.000000/15.000000/2.000000:R/0/90/0,box=1.000000/0.000000/1.000000:12.000000/1.000000/15.000000:u/0/1.000000/1.000000/12.000000/15.000000:s/0/1.000000/14.000000/12.000000/15.000000:w/0/1.000000/14.000000/15.000000/15.000000:e/0/0.000000/13.000000/14.000000/14.000000:d/0/1.000000/1.000000/12.000000/15.000000:n/0/1.000000/1.000000/12.000000/2.000000:R/0/90/0,box=12.000000/0.000000/1.000000:13.000000/1.000000/6.000000:u/0/12.000000/1.000000/13.000000/6.000000:s/0/12.000000/5.000000/13.000000/6.000000:d/0/12.000000/10.000000/13.000000/15.000000:n/0/12.000000/1.000000/13.000000/2.000000:R/0/90/0,box=12.000000/0.000000/10.000000:13.000000/1.000000/15.000000:u/0/12.000000/10.000000/13.000000/15.000000:s/0/12.000000/14.000000/13.000000/15.000000:d/0/12.000000/1.000000/13.000000/6.000000:n/0/12.000000/10.000000/13.000000/11.000000:R/0/90/0
|
|
||||||
modellist:id=%rice_bale,state=facing:north,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1:R/90/0/0
|
|
||||||
modellist:id=%rice_bale,state=facing:east,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1:R/90/90/0
|
|
||||||
modellist:id=%rice_bale,state=facing:south,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1:R/90/180/0
|
|
||||||
modellist:id=%rice_bale,state=facing:west,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1:R/90/270/0
|
|
||||||
modellist:id=%rice_bale,state=facing:down,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1:R/180/0/0
|
|
||||||
modellist:id=%straw_bale,state=axis:x,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u180/0:s/1:w/1:e/1:d/0:n/1:R/90/90/0
|
|
||||||
modellist:id=%straw_bale,state=axis:z,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u180/0:s/1:w/1:e/1:d/0:n/1:R/90/0/0
|
|
||||||
modellist:id=%rope,state=west:true/east:true/tied_to_bell:true/south:true/north:true,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:s/0/9.000000/0.000000/7.000000/16.000000:w/0/7.000000/0.000000/9.000000/16.000000:e/0/7.000000/0.000000/9.000000/16.000000:d/0/7.000000/7.000000/9.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000,box=7.000000/16.000000/7.000000:9.000000/22.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:s/0/9.000000/10.000000/7.000000/16.000000:w/0/7.000000/10.000000/9.000000/16.000000:e/0/7.000000/10.000000/9.000000/16.000000:d/0/7.000000/7.000000/9.000000/9.000000:n/0/9.000000/10.000000/7.000000/16.000000,box=8.000000/0.000000/0.000000:8.000000/16.000000/7.000000:w/0/0.000000/0.000000/7.000000/16.000000:e/0/9.000000/0.000000/16.000000/16.000000,box=8.000000/0.000000/0.000000:8.000000/16.000000/7.000000:w/0/0.000000/0.000000/7.000000/16.000000:e/0/9.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/0.000000/9.000000:8.000000/16.000000/16.000000:w/0/9.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/7.000000/16.000000,box=8.000000/0.000000/9.000000:8.000000/16.000000/16.000000:w/0/9.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/7.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%rope,state=west:false/east:true/tied_to_bell:true/south:true/north:true,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:s/0/9.000000/0.000000/7.000000/16.000000:w/0/7.000000/0.000000/9.000000/16.000000:e/0/7.000000/0.000000/9.000000/16.000000:d/0/7.000000/7.000000/9.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000,box=7.000000/16.000000/7.000000:9.000000/22.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:s/0/9.000000/10.000000/7.000000/16.000000:w/0/7.000000/10.000000/9.000000/16.000000:e/0/7.000000/10.000000/9.000000/16.000000:d/0/7.000000/7.000000/9.000000/9.000000:n/0/9.000000/10.000000/7.000000/16.000000,box=8.000000/0.000000/0.000000:8.000000/16.000000/7.000000:w/0/0.000000/0.000000/7.000000/16.000000:e/0/9.000000/0.000000/16.000000/16.000000,box=8.000000/0.000000/0.000000:8.000000/16.000000/7.000000:w/0/0.000000/0.000000/7.000000/16.000000:e/0/9.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/0.000000/9.000000:8.000000/16.000000/16.000000:w/0/9.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/7.000000/16.000000
|
|
||||||
modellist:id=%rope,state=west:true/east:true/tied_to_bell:false/south:true/north:true,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:s/0/9.000000/0.000000/7.000000/16.000000:w/0/7.000000/0.000000/9.000000/16.000000:e/0/7.000000/0.000000/9.000000/16.000000:d/0/7.000000/7.000000/9.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000,box=8.000000/0.000000/0.000000:8.000000/16.000000/7.000000:w/0/0.000000/0.000000/7.000000/16.000000:e/0/9.000000/0.000000/16.000000/16.000000,box=8.000000/0.000000/0.000000:8.000000/16.000000/7.000000:w/0/0.000000/0.000000/7.000000/16.000000:e/0/9.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/0.000000/9.000000:8.000000/16.000000/16.000000:w/0/9.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/7.000000/16.000000,box=8.000000/0.000000/9.000000:8.000000/16.000000/16.000000:w/0/9.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/7.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%rope,state=west:false/east:true/tied_to_bell:false/south:true/north:true,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:s/0/9.000000/0.000000/7.000000/16.000000:w/0/7.000000/0.000000/9.000000/16.000000:e/0/7.000000/0.000000/9.000000/16.000000:d/0/7.000000/7.000000/9.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000,box=8.000000/0.000000/0.000000:8.000000/16.000000/7.000000:w/0/0.000000/0.000000/7.000000/16.000000:e/0/9.000000/0.000000/16.000000/16.000000,box=8.000000/0.000000/0.000000:8.000000/16.000000/7.000000:w/0/0.000000/0.000000/7.000000/16.000000:e/0/9.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/0.000000/9.000000:8.000000/16.000000/16.000000:w/0/9.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/7.000000/16.000000
|
|
||||||
modellist:id=%rope,state=west:true/east:true/tied_to_bell:true/south:false/north:true,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:s/0/9.000000/0.000000/7.000000/16.000000:w/0/7.000000/0.000000/9.000000/16.000000:e/0/7.000000/0.000000/9.000000/16.000000:d/0/7.000000/7.000000/9.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000,box=7.000000/16.000000/7.000000:9.000000/22.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:s/0/9.000000/10.000000/7.000000/16.000000:w/0/7.000000/10.000000/9.000000/16.000000:e/0/7.000000/10.000000/9.000000/16.000000:d/0/7.000000/7.000000/9.000000/9.000000:n/0/9.000000/10.000000/7.000000/16.000000,box=8.000000/0.000000/0.000000:8.000000/16.000000/7.000000:w/0/0.000000/0.000000/7.000000/16.000000:e/0/9.000000/0.000000/16.000000/16.000000,box=8.000000/0.000000/0.000000:8.000000/16.000000/7.000000:w/0/0.000000/0.000000/7.000000/16.000000:e/0/9.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/0.000000/9.000000:8.000000/16.000000/16.000000:w/0/9.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/7.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%rope,state=west:false/east:true/tied_to_bell:true/south:false/north:true,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:s/0/9.000000/0.000000/7.000000/16.000000:w/0/7.000000/0.000000/9.000000/16.000000:e/0/7.000000/0.000000/9.000000/16.000000:d/0/7.000000/7.000000/9.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000,box=7.000000/16.000000/7.000000:9.000000/22.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:s/0/9.000000/10.000000/7.000000/16.000000:w/0/7.000000/10.000000/9.000000/16.000000:e/0/7.000000/10.000000/9.000000/16.000000:d/0/7.000000/7.000000/9.000000/9.000000:n/0/9.000000/10.000000/7.000000/16.000000,box=8.000000/0.000000/0.000000:8.000000/16.000000/7.000000:w/0/0.000000/0.000000/7.000000/16.000000:e/0/9.000000/0.000000/16.000000/16.000000,box=8.000000/0.000000/0.000000:8.000000/16.000000/7.000000:w/0/0.000000/0.000000/7.000000/16.000000:e/0/9.000000/0.000000/16.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%rope,state=west:true/east:true/tied_to_bell:false/south:false/north:true,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:s/0/9.000000/0.000000/7.000000/16.000000:w/0/7.000000/0.000000/9.000000/16.000000:e/0/7.000000/0.000000/9.000000/16.000000:d/0/7.000000/7.000000/9.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000,box=8.000000/0.000000/0.000000:8.000000/16.000000/7.000000:w/0/0.000000/0.000000/7.000000/16.000000:e/0/9.000000/0.000000/16.000000/16.000000,box=8.000000/0.000000/0.000000:8.000000/16.000000/7.000000:w/0/0.000000/0.000000/7.000000/16.000000:e/0/9.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/0.000000/9.000000:8.000000/16.000000/16.000000:w/0/9.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/7.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%rope,state=west:false/east:true/tied_to_bell:false/south:false/north:true,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:s/0/9.000000/0.000000/7.000000/16.000000:w/0/7.000000/0.000000/9.000000/16.000000:e/0/7.000000/0.000000/9.000000/16.000000:d/0/7.000000/7.000000/9.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000,box=8.000000/0.000000/0.000000:8.000000/16.000000/7.000000:w/0/0.000000/0.000000/7.000000/16.000000:e/0/9.000000/0.000000/16.000000/16.000000,box=8.000000/0.000000/0.000000:8.000000/16.000000/7.000000:w/0/0.000000/0.000000/7.000000/16.000000:e/0/9.000000/0.000000/16.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%rope,state=west:true/east:true/tied_to_bell:true/south:true/north:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:s/0/9.000000/0.000000/7.000000/16.000000:w/0/7.000000/0.000000/9.000000/16.000000:e/0/7.000000/0.000000/9.000000/16.000000:d/0/7.000000/7.000000/9.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000,box=7.000000/16.000000/7.000000:9.000000/22.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:s/0/9.000000/10.000000/7.000000/16.000000:w/0/7.000000/10.000000/9.000000/16.000000:e/0/7.000000/10.000000/9.000000/16.000000:d/0/7.000000/7.000000/9.000000/9.000000:n/0/9.000000/10.000000/7.000000/16.000000,box=8.000000/0.000000/0.000000:8.000000/16.000000/7.000000:w/0/0.000000/0.000000/7.000000/16.000000:e/0/9.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/0.000000/9.000000:8.000000/16.000000/16.000000:w/0/9.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/7.000000/16.000000,box=8.000000/0.000000/9.000000:8.000000/16.000000/16.000000:w/0/9.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/7.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%rope,state=west:false/east:true/tied_to_bell:true/south:true/north:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:s/0/9.000000/0.000000/7.000000/16.000000:w/0/7.000000/0.000000/9.000000/16.000000:e/0/7.000000/0.000000/9.000000/16.000000:d/0/7.000000/7.000000/9.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000,box=7.000000/16.000000/7.000000:9.000000/22.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:s/0/9.000000/10.000000/7.000000/16.000000:w/0/7.000000/10.000000/9.000000/16.000000:e/0/7.000000/10.000000/9.000000/16.000000:d/0/7.000000/7.000000/9.000000/9.000000:n/0/9.000000/10.000000/7.000000/16.000000,box=8.000000/0.000000/0.000000:8.000000/16.000000/7.000000:w/0/0.000000/0.000000/7.000000/16.000000:e/0/9.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/0.000000/9.000000:8.000000/16.000000/16.000000:w/0/9.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/7.000000/16.000000
|
|
||||||
modellist:id=%rope,state=west:true/east:true/tied_to_bell:false/south:true/north:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:s/0/9.000000/0.000000/7.000000/16.000000:w/0/7.000000/0.000000/9.000000/16.000000:e/0/7.000000/0.000000/9.000000/16.000000:d/0/7.000000/7.000000/9.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000,box=8.000000/0.000000/0.000000:8.000000/16.000000/7.000000:w/0/0.000000/0.000000/7.000000/16.000000:e/0/9.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/0.000000/9.000000:8.000000/16.000000/16.000000:w/0/9.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/7.000000/16.000000,box=8.000000/0.000000/9.000000:8.000000/16.000000/16.000000:w/0/9.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/7.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%rope,state=west:false/east:true/tied_to_bell:false/south:true/north:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:s/0/9.000000/0.000000/7.000000/16.000000:w/0/7.000000/0.000000/9.000000/16.000000:e/0/7.000000/0.000000/9.000000/16.000000:d/0/7.000000/7.000000/9.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000,box=8.000000/0.000000/0.000000:8.000000/16.000000/7.000000:w/0/0.000000/0.000000/7.000000/16.000000:e/0/9.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/0.000000/9.000000:8.000000/16.000000/16.000000:w/0/9.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/7.000000/16.000000
|
|
||||||
modellist:id=%rope,state=west:true/east:true/tied_to_bell:true/south:false/north:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:s/0/9.000000/0.000000/7.000000/16.000000:w/0/7.000000/0.000000/9.000000/16.000000:e/0/7.000000/0.000000/9.000000/16.000000:d/0/7.000000/7.000000/9.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000,box=7.000000/16.000000/7.000000:9.000000/22.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:s/0/9.000000/10.000000/7.000000/16.000000:w/0/7.000000/10.000000/9.000000/16.000000:e/0/7.000000/10.000000/9.000000/16.000000:d/0/7.000000/7.000000/9.000000/9.000000:n/0/9.000000/10.000000/7.000000/16.000000,box=8.000000/0.000000/0.000000:8.000000/16.000000/7.000000:w/0/0.000000/0.000000/7.000000/16.000000:e/0/9.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/0.000000/9.000000:8.000000/16.000000/16.000000:w/0/9.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/7.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%rope,state=west:false/east:true/tied_to_bell:true/south:false/north:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:s/0/9.000000/0.000000/7.000000/16.000000:w/0/7.000000/0.000000/9.000000/16.000000:e/0/7.000000/0.000000/9.000000/16.000000:d/0/7.000000/7.000000/9.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000,box=7.000000/16.000000/7.000000:9.000000/22.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:s/0/9.000000/10.000000/7.000000/16.000000:w/0/7.000000/10.000000/9.000000/16.000000:e/0/7.000000/10.000000/9.000000/16.000000:d/0/7.000000/7.000000/9.000000/9.000000:n/0/9.000000/10.000000/7.000000/16.000000,box=8.000000/0.000000/0.000000:8.000000/16.000000/7.000000:w/0/0.000000/0.000000/7.000000/16.000000:e/0/9.000000/0.000000/16.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%rope,state=west:true/east:true/tied_to_bell:false/south:false/north:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:s/0/9.000000/0.000000/7.000000/16.000000:w/0/7.000000/0.000000/9.000000/16.000000:e/0/7.000000/0.000000/9.000000/16.000000:d/0/7.000000/7.000000/9.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000,box=8.000000/0.000000/0.000000:8.000000/16.000000/7.000000:w/0/0.000000/0.000000/7.000000/16.000000:e/0/9.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/0.000000/9.000000:8.000000/16.000000/16.000000:w/0/9.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/7.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%rope,state=west:false/east:true/tied_to_bell:false/south:false/north:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:s/0/9.000000/0.000000/7.000000/16.000000:w/0/7.000000/0.000000/9.000000/16.000000:e/0/7.000000/0.000000/9.000000/16.000000:d/0/7.000000/7.000000/9.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000,box=8.000000/0.000000/0.000000:8.000000/16.000000/7.000000:w/0/0.000000/0.000000/7.000000/16.000000:e/0/9.000000/0.000000/16.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%rope,state=west:true/east:false/tied_to_bell:true/south:true/north:true,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:s/0/9.000000/0.000000/7.000000/16.000000:w/0/7.000000/0.000000/9.000000/16.000000:e/0/7.000000/0.000000/9.000000/16.000000:d/0/7.000000/7.000000/9.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000,box=7.000000/16.000000/7.000000:9.000000/22.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:s/0/9.000000/10.000000/7.000000/16.000000:w/0/7.000000/10.000000/9.000000/16.000000:e/0/7.000000/10.000000/9.000000/16.000000:d/0/7.000000/7.000000/9.000000/9.000000:n/0/9.000000/10.000000/7.000000/16.000000,box=8.000000/0.000000/0.000000:8.000000/16.000000/7.000000:w/0/0.000000/0.000000/7.000000/16.000000:e/0/9.000000/0.000000/16.000000/16.000000,box=8.000000/0.000000/9.000000:8.000000/16.000000/16.000000:w/0/9.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/7.000000/16.000000,box=8.000000/0.000000/9.000000:8.000000/16.000000/16.000000:w/0/9.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/7.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%rope,state=west:false/east:false/tied_to_bell:true/south:true/north:true,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:s/0/9.000000/0.000000/7.000000/16.000000:w/0/7.000000/0.000000/9.000000/16.000000:e/0/7.000000/0.000000/9.000000/16.000000:d/0/7.000000/7.000000/9.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000,box=7.000000/16.000000/7.000000:9.000000/22.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:s/0/9.000000/10.000000/7.000000/16.000000:w/0/7.000000/10.000000/9.000000/16.000000:e/0/7.000000/10.000000/9.000000/16.000000:d/0/7.000000/7.000000/9.000000/9.000000:n/0/9.000000/10.000000/7.000000/16.000000,box=8.000000/0.000000/0.000000:8.000000/16.000000/7.000000:w/0/0.000000/0.000000/7.000000/16.000000:e/0/9.000000/0.000000/16.000000/16.000000,box=8.000000/0.000000/9.000000:8.000000/16.000000/16.000000:w/0/9.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/7.000000/16.000000
|
|
||||||
modellist:id=%rope,state=west:true/east:false/tied_to_bell:false/south:true/north:true,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:s/0/9.000000/0.000000/7.000000/16.000000:w/0/7.000000/0.000000/9.000000/16.000000:e/0/7.000000/0.000000/9.000000/16.000000:d/0/7.000000/7.000000/9.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000,box=8.000000/0.000000/0.000000:8.000000/16.000000/7.000000:w/0/0.000000/0.000000/7.000000/16.000000:e/0/9.000000/0.000000/16.000000/16.000000,box=8.000000/0.000000/9.000000:8.000000/16.000000/16.000000:w/0/9.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/7.000000/16.000000,box=8.000000/0.000000/9.000000:8.000000/16.000000/16.000000:w/0/9.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/7.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%rope,state=west:false/east:false/tied_to_bell:false/south:true/north:true,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:s/0/9.000000/0.000000/7.000000/16.000000:w/0/7.000000/0.000000/9.000000/16.000000:e/0/7.000000/0.000000/9.000000/16.000000:d/0/7.000000/7.000000/9.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000,box=8.000000/0.000000/0.000000:8.000000/16.000000/7.000000:w/0/0.000000/0.000000/7.000000/16.000000:e/0/9.000000/0.000000/16.000000/16.000000,box=8.000000/0.000000/9.000000:8.000000/16.000000/16.000000:w/0/9.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/7.000000/16.000000
|
|
||||||
modellist:id=%rope,state=west:true/east:false/tied_to_bell:true/south:false/north:true,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:s/0/9.000000/0.000000/7.000000/16.000000:w/0/7.000000/0.000000/9.000000/16.000000:e/0/7.000000/0.000000/9.000000/16.000000:d/0/7.000000/7.000000/9.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000,box=7.000000/16.000000/7.000000:9.000000/22.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:s/0/9.000000/10.000000/7.000000/16.000000:w/0/7.000000/10.000000/9.000000/16.000000:e/0/7.000000/10.000000/9.000000/16.000000:d/0/7.000000/7.000000/9.000000/9.000000:n/0/9.000000/10.000000/7.000000/16.000000,box=8.000000/0.000000/0.000000:8.000000/16.000000/7.000000:w/0/0.000000/0.000000/7.000000/16.000000:e/0/9.000000/0.000000/16.000000/16.000000,box=8.000000/0.000000/9.000000:8.000000/16.000000/16.000000:w/0/9.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/7.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%rope,state=west:false/east:false/tied_to_bell:true/south:false/north:true,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:s/0/9.000000/0.000000/7.000000/16.000000:w/0/7.000000/0.000000/9.000000/16.000000:e/0/7.000000/0.000000/9.000000/16.000000:d/0/7.000000/7.000000/9.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000,box=7.000000/16.000000/7.000000:9.000000/22.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:s/0/9.000000/10.000000/7.000000/16.000000:w/0/7.000000/10.000000/9.000000/16.000000:e/0/7.000000/10.000000/9.000000/16.000000:d/0/7.000000/7.000000/9.000000/9.000000:n/0/9.000000/10.000000/7.000000/16.000000,box=8.000000/0.000000/0.000000:8.000000/16.000000/7.000000:w/0/0.000000/0.000000/7.000000/16.000000:e/0/9.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%rope,state=west:true/east:false/tied_to_bell:false/south:false/north:true,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:s/0/9.000000/0.000000/7.000000/16.000000:w/0/7.000000/0.000000/9.000000/16.000000:e/0/7.000000/0.000000/9.000000/16.000000:d/0/7.000000/7.000000/9.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000,box=8.000000/0.000000/0.000000:8.000000/16.000000/7.000000:w/0/0.000000/0.000000/7.000000/16.000000:e/0/9.000000/0.000000/16.000000/16.000000,box=8.000000/0.000000/9.000000:8.000000/16.000000/16.000000:w/0/9.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/7.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%rope,state=west:false/east:false/tied_to_bell:false/south:false/north:true,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:s/0/9.000000/0.000000/7.000000/16.000000:w/0/7.000000/0.000000/9.000000/16.000000:e/0/7.000000/0.000000/9.000000/16.000000:d/0/7.000000/7.000000/9.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000,box=8.000000/0.000000/0.000000:8.000000/16.000000/7.000000:w/0/0.000000/0.000000/7.000000/16.000000:e/0/9.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%rope,state=west:true/east:false/tied_to_bell:true/south:true/north:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:s/0/9.000000/0.000000/7.000000/16.000000:w/0/7.000000/0.000000/9.000000/16.000000:e/0/7.000000/0.000000/9.000000/16.000000:d/0/7.000000/7.000000/9.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000,box=7.000000/16.000000/7.000000:9.000000/22.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:s/0/9.000000/10.000000/7.000000/16.000000:w/0/7.000000/10.000000/9.000000/16.000000:e/0/7.000000/10.000000/9.000000/16.000000:d/0/7.000000/7.000000/9.000000/9.000000:n/0/9.000000/10.000000/7.000000/16.000000,box=8.000000/0.000000/9.000000:8.000000/16.000000/16.000000:w/0/9.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/7.000000/16.000000,box=8.000000/0.000000/9.000000:8.000000/16.000000/16.000000:w/0/9.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/7.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%rope,state=west:false/east:false/tied_to_bell:true/south:true/north:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:s/0/9.000000/0.000000/7.000000/16.000000:w/0/7.000000/0.000000/9.000000/16.000000:e/0/7.000000/0.000000/9.000000/16.000000:d/0/7.000000/7.000000/9.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000,box=7.000000/16.000000/7.000000:9.000000/22.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:s/0/9.000000/10.000000/7.000000/16.000000:w/0/7.000000/10.000000/9.000000/16.000000:e/0/7.000000/10.000000/9.000000/16.000000:d/0/7.000000/7.000000/9.000000/9.000000:n/0/9.000000/10.000000/7.000000/16.000000,box=8.000000/0.000000/9.000000:8.000000/16.000000/16.000000:w/0/9.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/7.000000/16.000000
|
|
||||||
modellist:id=%rope,state=west:true/east:false/tied_to_bell:false/south:true/north:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:s/0/9.000000/0.000000/7.000000/16.000000:w/0/7.000000/0.000000/9.000000/16.000000:e/0/7.000000/0.000000/9.000000/16.000000:d/0/7.000000/7.000000/9.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000,box=8.000000/0.000000/9.000000:8.000000/16.000000/16.000000:w/0/9.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/7.000000/16.000000,box=8.000000/0.000000/9.000000:8.000000/16.000000/16.000000:w/0/9.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/7.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%rope,state=west:false/east:false/tied_to_bell:false/south:true/north:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:s/0/9.000000/0.000000/7.000000/16.000000:w/0/7.000000/0.000000/9.000000/16.000000:e/0/7.000000/0.000000/9.000000/16.000000:d/0/7.000000/7.000000/9.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000,box=8.000000/0.000000/9.000000:8.000000/16.000000/16.000000:w/0/9.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/7.000000/16.000000
|
|
||||||
modellist:id=%rope,state=west:true/east:false/tied_to_bell:true/south:false/north:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:s/0/9.000000/0.000000/7.000000/16.000000:w/0/7.000000/0.000000/9.000000/16.000000:e/0/7.000000/0.000000/9.000000/16.000000:d/0/7.000000/7.000000/9.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000,box=7.000000/16.000000/7.000000:9.000000/22.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:s/0/9.000000/10.000000/7.000000/16.000000:w/0/7.000000/10.000000/9.000000/16.000000:e/0/7.000000/10.000000/9.000000/16.000000:d/0/7.000000/7.000000/9.000000/9.000000:n/0/9.000000/10.000000/7.000000/16.000000,box=8.000000/0.000000/9.000000:8.000000/16.000000/16.000000:w/0/9.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/7.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%rope,state=west:false/east:false/tied_to_bell:true/south:false/north:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:s/0/9.000000/0.000000/7.000000/16.000000:w/0/7.000000/0.000000/9.000000/16.000000:e/0/7.000000/0.000000/9.000000/16.000000:d/0/7.000000/7.000000/9.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000,box=7.000000/16.000000/7.000000:9.000000/22.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:s/0/9.000000/10.000000/7.000000/16.000000:w/0/7.000000/10.000000/9.000000/16.000000:e/0/7.000000/10.000000/9.000000/16.000000:d/0/7.000000/7.000000/9.000000/9.000000:n/0/9.000000/10.000000/7.000000/16.000000
|
|
||||||
modellist:id=%rope,state=west:true/east:false/tied_to_bell:false/south:false/north:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:s/0/9.000000/0.000000/7.000000/16.000000:w/0/7.000000/0.000000/9.000000/16.000000:e/0/7.000000/0.000000/9.000000/16.000000:d/0/7.000000/7.000000/9.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000,box=8.000000/0.000000/9.000000:8.000000/16.000000/16.000000:w/0/9.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/7.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%rope,state=west:false/east:false/tied_to_bell:false/south:false/north:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000:s/0/9.000000/0.000000/7.000000/16.000000:w/0/7.000000/0.000000/9.000000/16.000000:e/0/7.000000/0.000000/9.000000/16.000000:d/0/7.000000/7.000000/9.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000
|
|
||||||
modellist:id=%safety_net,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%oak_cabinet,state=facing:south/open:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/0:n/2:R/0/180/0
|
|
||||||
modellist:id=%oak_cabinet,state=facing:south/open:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/0:n/2:R/0/180/0
|
|
||||||
modellist:id=%oak_cabinet,state=facing:west/open:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/0:n/2:R/0/270/0
|
|
||||||
modellist:id=%oak_cabinet,state=facing:west/open:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/0:n/2:R/0/270/0
|
|
||||||
modellist:id=%oak_cabinet,state=facing:east/open:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/0:n/2:R/0/90/0
|
|
||||||
modellist:id=%oak_cabinet,state=facing:east/open:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/0:n/2:R/0/90/0
|
|
||||||
modellist:id=%spruce_cabinet,state=facing:south/open:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/0:n/2:R/0/180/0
|
|
||||||
modellist:id=%spruce_cabinet,state=facing:south/open:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/0:n/2:R/0/180/0
|
|
||||||
modellist:id=%spruce_cabinet,state=facing:west/open:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/0:n/2:R/0/270/0
|
|
||||||
modellist:id=%spruce_cabinet,state=facing:west/open:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/0:n/2:R/0/270/0
|
|
||||||
modellist:id=%spruce_cabinet,state=facing:east/open:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/0:n/2:R/0/90/0
|
|
||||||
modellist:id=%spruce_cabinet,state=facing:east/open:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/0:n/2:R/0/90/0
|
|
||||||
modellist:id=%birch_cabinet,state=facing:south/open:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/0:n/2:R/0/180/0
|
|
||||||
modellist:id=%birch_cabinet,state=facing:south/open:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/0:n/2:R/0/180/0
|
|
||||||
modellist:id=%birch_cabinet,state=facing:west/open:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/0:n/2:R/0/270/0
|
|
||||||
modellist:id=%birch_cabinet,state=facing:west/open:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/0:n/2:R/0/270/0
|
|
||||||
modellist:id=%birch_cabinet,state=facing:east/open:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/0:n/2:R/0/90/0
|
|
||||||
modellist:id=%birch_cabinet,state=facing:east/open:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/0:n/2:R/0/90/0
|
|
||||||
modellist:id=%jungle_cabinet,state=facing:south/open:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/0:n/2:R/0/180/0
|
|
||||||
modellist:id=%jungle_cabinet,state=facing:south/open:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/0:n/2:R/0/180/0
|
|
||||||
modellist:id=%jungle_cabinet,state=facing:west/open:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/0:n/2:R/0/270/0
|
|
||||||
modellist:id=%jungle_cabinet,state=facing:west/open:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/0:n/2:R/0/270/0
|
|
||||||
modellist:id=%jungle_cabinet,state=facing:east/open:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/0:n/2:R/0/90/0
|
|
||||||
modellist:id=%jungle_cabinet,state=facing:east/open:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/0:n/2:R/0/90/0
|
|
||||||
modellist:id=%acacia_cabinet,state=facing:south/open:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/0:n/2:R/0/180/0
|
|
||||||
modellist:id=%acacia_cabinet,state=facing:south/open:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/0:n/2:R/0/180/0
|
|
||||||
modellist:id=%acacia_cabinet,state=facing:west/open:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/0:n/2:R/0/270/0
|
|
||||||
modellist:id=%acacia_cabinet,state=facing:west/open:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/0:n/2:R/0/270/0
|
|
||||||
modellist:id=%acacia_cabinet,state=facing:east/open:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/0:n/2:R/0/90/0
|
|
||||||
modellist:id=%acacia_cabinet,state=facing:east/open:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/0:n/2:R/0/90/0
|
|
||||||
modellist:id=%dark_oak_cabinet,state=facing:south/open:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/0:n/2:R/0/180/0
|
|
||||||
modellist:id=%dark_oak_cabinet,state=facing:south/open:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/0:n/2:R/0/180/0
|
|
||||||
modellist:id=%dark_oak_cabinet,state=facing:west/open:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/0:n/2:R/0/270/0
|
|
||||||
modellist:id=%dark_oak_cabinet,state=facing:west/open:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/0:n/2:R/0/270/0
|
|
||||||
modellist:id=%dark_oak_cabinet,state=facing:east/open:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/0:n/2:R/0/90/0
|
|
||||||
modellist:id=%dark_oak_cabinet,state=facing:east/open:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/0:n/2:R/0/90/0
|
|
||||||
modellist:id=%crimson_cabinet,state=facing:south/open:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/0:n/2:R/0/180/0
|
|
||||||
modellist:id=%crimson_cabinet,state=facing:south/open:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/0:n/2:R/0/180/0
|
|
||||||
modellist:id=%crimson_cabinet,state=facing:west/open:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/0:n/2:R/0/270/0
|
|
||||||
modellist:id=%crimson_cabinet,state=facing:west/open:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/0:n/2:R/0/270/0
|
|
||||||
modellist:id=%crimson_cabinet,state=facing:east/open:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/0:n/2:R/0/90/0
|
|
||||||
modellist:id=%crimson_cabinet,state=facing:east/open:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/0:n/2:R/0/90/0
|
|
||||||
modellist:id=%warped_cabinet,state=facing:south/open:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/0:n/2:R/0/180/0
|
|
||||||
modellist:id=%warped_cabinet,state=facing:south/open:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/0:n/2:R/0/180/0
|
|
||||||
modellist:id=%warped_cabinet,state=facing:west/open:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/0:n/2:R/0/270/0
|
|
||||||
modellist:id=%warped_cabinet,state=facing:west/open:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/0:n/2:R/0/270/0
|
|
||||||
modellist:id=%warped_cabinet,state=facing:east/open:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/0:n/2:R/0/90/0
|
|
||||||
modellist:id=%warped_cabinet,state=facing:east/open:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/0:n/2:R/0/90/0
|
|
||||||
modellist:id=%canvas_rug,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/1.000000/16.000000/2.000000:w/0/0.000000/1.000000/16.000000/2.000000:e/0/0.000000/1.000000/16.000000/2.000000:d/0/0.000000/16.000000/16.000000/0.000000:n/0/0.000000/1.000000/16.000000/2.000000,box=0.000000/0.999000/-8.000000:16.000000/0.999000/0.000000:u180/1/0.000000/0.000000/16.000000/8.000000:d180/1/0.000000/8.000000/16.000000/0.000000,box=16.000000/0.999000/0.000000:24.000000/0.999000/16.000000:u270/1/0.000000/8.000000/16.000000/16.000000:d270/1/0.000000/0.000000/16.000000/8.000000,box=0.000000/0.999000/16.000000:16.000000/0.999000/24.000000:u/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/8.000000,box=-8.000000/0.999000/0.000000:0.000000/0.999000/16.000000:u90/1/0.000000/0.000000/16.000000/8.000000:d90/1/0.000000/8.000000/16.000000/16.000000
|
|
||||||
modellist:id=%tatami,state=facing:north/paired:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s270/2/0.000000/0.000000/16.000000/16.000000:w270/1/0.000000/0.000000/16.000000/16.000000:e270/1/0.000000/0.000000/16.000000/16.000000:d90/0/0.000000/0.000000/16.000000/16.000000:n270/2/0.000000/0.000000/16.000000/16.000000:R/90/0/0
|
|
||||||
modellist:id=%tatami,state=facing:north/paired:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/0:w/0:e/0:d/0:n/0:R/90/0/0
|
|
||||||
modellist:id=%tatami,state=facing:east/paired:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s270/2/0.000000/0.000000/16.000000/16.000000:w270/1/0.000000/0.000000/16.000000/16.000000:e270/1/0.000000/0.000000/16.000000/16.000000:d90/0/0.000000/0.000000/16.000000/16.000000:n270/2/0.000000/0.000000/16.000000/16.000000:R/90/90/0
|
|
||||||
modellist:id=%tatami,state=facing:east/paired:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/0:w/0:e/0:d/0:n/0:R/90/90/0
|
|
||||||
modellist:id=%tatami,state=facing:south/paired:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s270/2/0.000000/0.000000/16.000000/16.000000:w270/1/0.000000/0.000000/16.000000/16.000000:e270/1/0.000000/0.000000/16.000000/16.000000:d90/0/0.000000/0.000000/16.000000/16.000000:n270/2/0.000000/0.000000/16.000000/16.000000:R/90/180/0
|
|
||||||
modellist:id=%tatami,state=facing:south/paired:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/0:w/0:e/0:d/0:n/0:R/90/180/0
|
|
||||||
modellist:id=%tatami,state=facing:west/paired:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s270/2/0.000000/0.000000/16.000000/16.000000:w270/1/0.000000/0.000000/16.000000/16.000000:e270/1/0.000000/0.000000/16.000000/16.000000:d90/0/0.000000/0.000000/16.000000/16.000000:n270/2/0.000000/0.000000/16.000000/16.000000:R/90/270/0
|
|
||||||
modellist:id=%tatami,state=facing:west/paired:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/0:w/0:e/0:d/0:n/0:R/90/270/0
|
|
||||||
modellist:id=%tatami,state=facing:up/paired:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s270/2/0.000000/0.000000/16.000000/16.000000:w270/1/0.000000/0.000000/16.000000/16.000000:e270/1/0.000000/0.000000/16.000000/16.000000:d90/0/0.000000/0.000000/16.000000/16.000000:n270/2/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%tatami,state=facing:down/paired:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s270/2/0.000000/0.000000/16.000000/16.000000:w270/1/0.000000/0.000000/16.000000/16.000000:e270/1/0.000000/0.000000/16.000000/16.000000:d90/0/0.000000/0.000000/16.000000/16.000000:n270/2/0.000000/0.000000/16.000000/16.000000:R/180/0/0
|
|
||||||
modellist:id=%tatami,state=facing:down/paired:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/0:w/0:e/0:d/0:n/0:R/180/0/0
|
|
||||||
modellist:id=%full_tatami_mat,state=facing:north/part:head,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u270/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/14.000000/16.000000/16.000000:w/1/0.000000/14.000000/16.000000/16.000000:e/1/0.000000/14.000000/16.000000/16.000000:d90/2/0.000000/0.000000/16.000000/16.000000:n/3/0.000000/12.000000/16.000000/14.000000:R/0/180/0
|
|
||||||
modellist:id=%full_tatami_mat,state=facing:north/part:foot,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u90/0/0.000000/0.000000/16.000000/16.000000:s180/3/0.000000/12.000000/16.000000/14.000000:w180/1/0.000000/14.000000/16.000000/16.000000:e180/1/0.000000/14.000000/16.000000/16.000000:d270/2/0.000000/0.000000/16.000000/16.000000:n180/1/0.000000/14.000000/16.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%full_tatami_mat,state=facing:south/part:head,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u270/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/14.000000/16.000000/16.000000:w/1/0.000000/14.000000/16.000000/16.000000:e/1/0.000000/14.000000/16.000000/16.000000:d90/2/0.000000/0.000000/16.000000/16.000000:n/3/0.000000/12.000000/16.000000/14.000000
|
|
||||||
modellist:id=%full_tatami_mat,state=facing:south/part:foot,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u90/0/0.000000/0.000000/16.000000/16.000000:s180/3/0.000000/12.000000/16.000000/14.000000:w180/1/0.000000/14.000000/16.000000/16.000000:e180/1/0.000000/14.000000/16.000000/16.000000:d270/2/0.000000/0.000000/16.000000/16.000000:n180/1/0.000000/14.000000/16.000000/16.000000
|
|
||||||
modellist:id=%full_tatami_mat,state=facing:west/part:head,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u270/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/14.000000/16.000000/16.000000:w/1/0.000000/14.000000/16.000000/16.000000:e/1/0.000000/14.000000/16.000000/16.000000:d90/2/0.000000/0.000000/16.000000/16.000000:n/3/0.000000/12.000000/16.000000/14.000000:R/0/90/0
|
|
||||||
modellist:id=%full_tatami_mat,state=facing:west/part:foot,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u90/0/0.000000/0.000000/16.000000/16.000000:s180/3/0.000000/12.000000/16.000000/14.000000:w180/1/0.000000/14.000000/16.000000/16.000000:e180/1/0.000000/14.000000/16.000000/16.000000:d270/2/0.000000/0.000000/16.000000/16.000000:n180/1/0.000000/14.000000/16.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%full_tatami_mat,state=facing:east/part:head,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u270/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/14.000000/16.000000/16.000000:w/1/0.000000/14.000000/16.000000/16.000000:e/1/0.000000/14.000000/16.000000/16.000000:d90/2/0.000000/0.000000/16.000000/16.000000:n/3/0.000000/12.000000/16.000000/14.000000:R/0/270/0
|
|
||||||
modellist:id=%full_tatami_mat,state=facing:east/part:foot,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u90/0/0.000000/0.000000/16.000000/16.000000:s180/3/0.000000/12.000000/16.000000/14.000000:w180/1/0.000000/14.000000/16.000000/16.000000:e180/1/0.000000/14.000000/16.000000/16.000000:d270/2/0.000000/0.000000/16.000000/16.000000:n180/1/0.000000/14.000000/16.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%half_tatami_mat,state=facing:north,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/14.000000/16.000000/16.000000:w/1/0.000000/14.000000/16.000000/16.000000:e/1/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/14.000000/16.000000/16.000000
|
|
||||||
modellist:id=%half_tatami_mat,state=facing:south,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/14.000000/16.000000/16.000000:w/1/0.000000/14.000000/16.000000/16.000000:e/1/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/14.000000/16.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%half_tatami_mat,state=facing:west,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/14.000000/16.000000/16.000000:w/1/0.000000/14.000000/16.000000/16.000000:e/1/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/14.000000/16.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%half_tatami_mat,state=facing:east,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/14.000000/16.000000/16.000000:w/1/0.000000/14.000000/16.000000/16.000000:e/1/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/14.000000/16.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%brown_mushroom_colony,state=age:0,box=0.800000/0.000000/8.000000/false:15.200000/16.000000/8.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/0.000000/0.800000/false:8.000000/16.000000/15.200000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%brown_mushroom_colony,state=age:1,box=0.800000/0.000000/8.000000/false:15.200000/16.000000/8.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/0.000000/0.800000/false:8.000000/16.000000/15.200000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%brown_mushroom_colony,state=age:2,box=0.800000/0.000000/8.000000/false:15.200000/16.000000/8.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/0.000000/0.800000/false:8.000000/16.000000/15.200000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%brown_mushroom_colony,state=age:3,box=0.800000/0.000000/8.000000/false:15.200000/16.000000/8.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/0.000000/0.800000/false:8.000000/16.000000/15.200000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%red_mushroom_colony,state=age:0,box=0.800000/0.000000/8.000000/false:15.200000/16.000000/8.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/0.000000/0.800000/false:8.000000/16.000000/15.200000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%red_mushroom_colony,state=age:1,box=0.800000/0.000000/8.000000/false:15.200000/16.000000/8.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/0.000000/0.800000/false:8.000000/16.000000/15.200000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%red_mushroom_colony,state=age:2,box=0.800000/0.000000/8.000000/false:15.200000/16.000000/8.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/0.000000/0.800000/false:8.000000/16.000000/15.200000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%red_mushroom_colony,state=age:3,box=0.800000/0.000000/8.000000/false:15.200000/16.000000/8.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/0.000000/0.800000/false:8.000000/16.000000/15.200000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%rich_soil_farmland,state=moisture:0,box=0.000000/0.000000/0.000000:16.000000/15.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/1.000000/16.000000/16.000000:w/1/0.000000/1.000000/16.000000/16.000000:e/1/0.000000/1.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/1.000000/16.000000/16.000000
|
|
||||||
modellist:id=%rich_soil_farmland,state=moisture:1,box=0.000000/0.000000/0.000000:16.000000/15.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/1.000000/16.000000/16.000000:w/1/0.000000/1.000000/16.000000/16.000000:e/1/0.000000/1.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/1.000000/16.000000/16.000000
|
|
||||||
modellist:id=%rich_soil_farmland,state=moisture:2,box=0.000000/0.000000/0.000000:16.000000/15.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/1.000000/16.000000/16.000000:w/1/0.000000/1.000000/16.000000/16.000000:e/1/0.000000/1.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/1.000000/16.000000/16.000000
|
|
||||||
modellist:id=%rich_soil_farmland,state=moisture:3,box=0.000000/0.000000/0.000000:16.000000/15.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/1.000000/16.000000/16.000000:w/1/0.000000/1.000000/16.000000/16.000000:e/1/0.000000/1.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/1.000000/16.000000/16.000000
|
|
||||||
modellist:id=%rich_soil_farmland,state=moisture:4,box=0.000000/0.000000/0.000000:16.000000/15.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/1.000000/16.000000/16.000000:w/1/0.000000/1.000000/16.000000/16.000000:e/1/0.000000/1.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/1.000000/16.000000/16.000000
|
|
||||||
modellist:id=%rich_soil_farmland,state=moisture:5,box=0.000000/0.000000/0.000000:16.000000/15.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/1.000000/16.000000/16.000000:w/1/0.000000/1.000000/16.000000/16.000000:e/1/0.000000/1.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/1.000000/16.000000/16.000000
|
|
||||||
modellist:id=%rich_soil_farmland,state=moisture:6,box=0.000000/0.000000/0.000000:16.000000/15.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/1.000000/16.000000/16.000000:w/1/0.000000/1.000000/16.000000/16.000000:e/1/0.000000/1.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/1.000000/16.000000/16.000000
|
|
||||||
modellist:id=%rich_soil_farmland,state=moisture:7,box=0.000000/0.000000/0.000000:16.000000/15.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/1.000000/16.000000/16.000000:w/1/0.000000/1.000000/16.000000/16.000000:e/1/0.000000/1.000000/16.000000/16.000000:d/2/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/1.000000/16.000000/16.000000
|
|
||||||
modellist:id=%apple_pie,state=bites:0/facing:north,box=2.000000/0.000000/2.000000:14.000000/4.000000/14.000000:u/0/2.000000/2.000000/14.000000/14.000000:s/1/2.000000/12.000000/14.000000/16.000000:w/1/2.000000/12.000000/14.000000/16.000000:e/1/2.000000/12.000000/14.000000/16.000000:d/2/2.000000/2.000000/14.000000/14.000000:n/1/2.000000/12.000000/14.000000/16.000000
|
|
||||||
modellist:id=%apple_pie,state=bites:0/facing:south,box=2.000000/0.000000/2.000000:14.000000/4.000000/14.000000:u/0/2.000000/2.000000/14.000000/14.000000:s/1/2.000000/12.000000/14.000000/16.000000:w/1/2.000000/12.000000/14.000000/16.000000:e/1/2.000000/12.000000/14.000000/16.000000:d/2/2.000000/2.000000/14.000000/14.000000:n/1/2.000000/12.000000/14.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%apple_pie,state=bites:0/facing:west,box=2.000000/0.000000/2.000000:14.000000/4.000000/14.000000:u/0/2.000000/2.000000/14.000000/14.000000:s/1/2.000000/12.000000/14.000000/16.000000:w/1/2.000000/12.000000/14.000000/16.000000:e/1/2.000000/12.000000/14.000000/16.000000:d/2/2.000000/2.000000/14.000000/14.000000:n/1/2.000000/12.000000/14.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%apple_pie,state=bites:0/facing:east,box=2.000000/0.000000/2.000000:14.000000/4.000000/14.000000:u/0/2.000000/2.000000/14.000000/14.000000:s/1/2.000000/12.000000/14.000000/16.000000:w/1/2.000000/12.000000/14.000000/16.000000:e/1/2.000000/12.000000/14.000000/16.000000:d/2/2.000000/2.000000/14.000000/14.000000:n/1/2.000000/12.000000/14.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%apple_pie,state=bites:1/facing:north,box=2.000000/0.000000/8.000000:8.000000/4.000000/14.000000:u/0/2.000000/8.000000/8.000000/14.000000:s/3/2.000000/12.000000/8.000000/16.000000:w/3/8.000000/12.000000/14.000000/16.000000:e/1/2.000000/12.000000/8.000000/16.000000:d/2/2.000000/2.000000/8.000000/8.000000,box=2.000000/0.000000/2.000000:14.000000/4.000000/8.000000:u/0/2.000000/2.000000/14.000000/8.000000:s/1/2.000000/12.000000/14.000000/16.000000:w/3/2.000000/12.000000/8.000000/16.000000:e/3/8.000000/12.000000/14.000000/16.000000:d/2/2.000000/8.000000/14.000000/14.000000:n/3/2.000000/12.000000/14.000000/16.000000
|
|
||||||
modellist:id=%apple_pie,state=bites:1/facing:south,box=2.000000/0.000000/8.000000:8.000000/4.000000/14.000000:u/0/2.000000/8.000000/8.000000/14.000000:s/3/2.000000/12.000000/8.000000/16.000000:w/3/8.000000/12.000000/14.000000/16.000000:e/1/2.000000/12.000000/8.000000/16.000000:d/2/2.000000/2.000000/8.000000/8.000000:R/0/180/0,box=2.000000/0.000000/2.000000:14.000000/4.000000/8.000000:u/0/2.000000/2.000000/14.000000/8.000000:s/1/2.000000/12.000000/14.000000/16.000000:w/3/2.000000/12.000000/8.000000/16.000000:e/3/8.000000/12.000000/14.000000/16.000000:d/2/2.000000/8.000000/14.000000/14.000000:n/3/2.000000/12.000000/14.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%apple_pie,state=bites:1/facing:west,box=2.000000/0.000000/8.000000:8.000000/4.000000/14.000000:u/0/2.000000/8.000000/8.000000/14.000000:s/3/2.000000/12.000000/8.000000/16.000000:w/3/8.000000/12.000000/14.000000/16.000000:e/1/2.000000/12.000000/8.000000/16.000000:d/2/2.000000/2.000000/8.000000/8.000000:R/0/270/0,box=2.000000/0.000000/2.000000:14.000000/4.000000/8.000000:u/0/2.000000/2.000000/14.000000/8.000000:s/1/2.000000/12.000000/14.000000/16.000000:w/3/2.000000/12.000000/8.000000/16.000000:e/3/8.000000/12.000000/14.000000/16.000000:d/2/2.000000/8.000000/14.000000/14.000000:n/3/2.000000/12.000000/14.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%apple_pie,state=bites:1/facing:east,box=2.000000/0.000000/8.000000:8.000000/4.000000/14.000000:u/0/2.000000/8.000000/8.000000/14.000000:s/3/2.000000/12.000000/8.000000/16.000000:w/3/8.000000/12.000000/14.000000/16.000000:e/1/2.000000/12.000000/8.000000/16.000000:d/2/2.000000/2.000000/8.000000/8.000000:R/0/90/0,box=2.000000/0.000000/2.000000:14.000000/4.000000/8.000000:u/0/2.000000/2.000000/14.000000/8.000000:s/1/2.000000/12.000000/14.000000/16.000000:w/3/2.000000/12.000000/8.000000/16.000000:e/3/8.000000/12.000000/14.000000/16.000000:d/2/2.000000/8.000000/14.000000/14.000000:n/3/2.000000/12.000000/14.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%apple_pie,state=bites:2/facing:north,box=2.000000/0.000000/2.000000:14.000000/4.000000/8.000000:u/0/2.000000/2.000000/14.000000/8.000000:s/3/2.000000/12.000000/14.000000/16.000000:w/1/2.000000/12.000000/8.000000/16.000000:e/1/8.000000/12.000000/14.000000/16.000000:d/2/2.000000/8.000000/14.000000/14.000000:n/1/2.000000/12.000000/14.000000/16.000000
|
|
||||||
modellist:id=%apple_pie,state=bites:2/facing:south,box=2.000000/0.000000/2.000000:14.000000/4.000000/8.000000:u/0/2.000000/2.000000/14.000000/8.000000:s/3/2.000000/12.000000/14.000000/16.000000:w/1/2.000000/12.000000/8.000000/16.000000:e/1/8.000000/12.000000/14.000000/16.000000:d/2/2.000000/8.000000/14.000000/14.000000:n/1/2.000000/12.000000/14.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%apple_pie,state=bites:2/facing:west,box=2.000000/0.000000/2.000000:14.000000/4.000000/8.000000:u/0/2.000000/2.000000/14.000000/8.000000:s/3/2.000000/12.000000/14.000000/16.000000:w/1/2.000000/12.000000/8.000000/16.000000:e/1/8.000000/12.000000/14.000000/16.000000:d/2/2.000000/8.000000/14.000000/14.000000:n/1/2.000000/12.000000/14.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%apple_pie,state=bites:2/facing:east,box=2.000000/0.000000/2.000000:14.000000/4.000000/8.000000:u/0/2.000000/2.000000/14.000000/8.000000:s/3/2.000000/12.000000/14.000000/16.000000:w/1/2.000000/12.000000/8.000000/16.000000:e/1/8.000000/12.000000/14.000000/16.000000:d/2/2.000000/8.000000/14.000000/14.000000:n/1/2.000000/12.000000/14.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%apple_pie,state=bites:3/facing:north,box=8.000000/0.000000/2.000000:14.000000/4.000000/8.000000:u/0/8.000000/2.000000/14.000000/8.000000:s/3/8.000000/12.000000/14.000000/16.000000:w/3/2.000000/12.000000/8.000000/16.000000:e/1/8.000000/12.000000/14.000000/16.000000:d/2/2.000000/8.000000/14.000000/14.000000:n/1/2.000000/12.000000/8.000000/16.000000
|
|
||||||
modellist:id=%apple_pie,state=bites:3/facing:south,box=8.000000/0.000000/2.000000:14.000000/4.000000/8.000000:u/0/8.000000/2.000000/14.000000/8.000000:s/3/8.000000/12.000000/14.000000/16.000000:w/3/2.000000/12.000000/8.000000/16.000000:e/1/8.000000/12.000000/14.000000/16.000000:d/2/2.000000/8.000000/14.000000/14.000000:n/1/2.000000/12.000000/8.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%apple_pie,state=bites:3/facing:west,box=8.000000/0.000000/2.000000:14.000000/4.000000/8.000000:u/0/8.000000/2.000000/14.000000/8.000000:s/3/8.000000/12.000000/14.000000/16.000000:w/3/2.000000/12.000000/8.000000/16.000000:e/1/8.000000/12.000000/14.000000/16.000000:d/2/2.000000/8.000000/14.000000/14.000000:n/1/2.000000/12.000000/8.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%apple_pie,state=bites:3/facing:east,box=8.000000/0.000000/2.000000:14.000000/4.000000/8.000000:u/0/8.000000/2.000000/14.000000/8.000000:s/3/8.000000/12.000000/14.000000/16.000000:w/3/2.000000/12.000000/8.000000/16.000000:e/1/8.000000/12.000000/14.000000/16.000000:d/2/2.000000/8.000000/14.000000/14.000000:n/1/2.000000/12.000000/8.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%sweet_berry_cheesecake,state=bites:0/facing:north,box=2.000000/0.000000/2.000000:14.000000/4.000000/14.000000:u/0/2.000000/2.000000/14.000000/14.000000:s/1/2.000000/12.000000/14.000000/16.000000:w/1/2.000000/12.000000/14.000000/16.000000:e/1/2.000000/12.000000/14.000000/16.000000:d/2/2.000000/2.000000/14.000000/14.000000:n/1/2.000000/12.000000/14.000000/16.000000
|
|
||||||
modellist:id=%sweet_berry_cheesecake,state=bites:0/facing:south,box=2.000000/0.000000/2.000000:14.000000/4.000000/14.000000:u/0/2.000000/2.000000/14.000000/14.000000:s/1/2.000000/12.000000/14.000000/16.000000:w/1/2.000000/12.000000/14.000000/16.000000:e/1/2.000000/12.000000/14.000000/16.000000:d/2/2.000000/2.000000/14.000000/14.000000:n/1/2.000000/12.000000/14.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%sweet_berry_cheesecake,state=bites:0/facing:west,box=2.000000/0.000000/2.000000:14.000000/4.000000/14.000000:u/0/2.000000/2.000000/14.000000/14.000000:s/1/2.000000/12.000000/14.000000/16.000000:w/1/2.000000/12.000000/14.000000/16.000000:e/1/2.000000/12.000000/14.000000/16.000000:d/2/2.000000/2.000000/14.000000/14.000000:n/1/2.000000/12.000000/14.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%sweet_berry_cheesecake,state=bites:0/facing:east,box=2.000000/0.000000/2.000000:14.000000/4.000000/14.000000:u/0/2.000000/2.000000/14.000000/14.000000:s/1/2.000000/12.000000/14.000000/16.000000:w/1/2.000000/12.000000/14.000000/16.000000:e/1/2.000000/12.000000/14.000000/16.000000:d/2/2.000000/2.000000/14.000000/14.000000:n/1/2.000000/12.000000/14.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%sweet_berry_cheesecake,state=bites:1/facing:north,box=2.000000/0.000000/8.000000:8.000000/4.000000/14.000000:u/0/2.000000/8.000000/8.000000/14.000000:s/3/2.000000/12.000000/8.000000/16.000000:w/3/8.000000/12.000000/14.000000/16.000000:e/1/2.000000/12.000000/8.000000/16.000000:d/2/2.000000/2.000000/8.000000/8.000000,box=2.000000/0.000000/2.000000:14.000000/4.000000/8.000000:u/0/2.000000/2.000000/14.000000/8.000000:s/1/2.000000/12.000000/14.000000/16.000000:w/3/2.000000/12.000000/8.000000/16.000000:e/3/8.000000/12.000000/14.000000/16.000000:d/2/2.000000/8.000000/14.000000/14.000000:n/3/2.000000/12.000000/14.000000/16.000000
|
|
||||||
modellist:id=%sweet_berry_cheesecake,state=bites:1/facing:south,box=2.000000/0.000000/8.000000:8.000000/4.000000/14.000000:u/0/2.000000/8.000000/8.000000/14.000000:s/3/2.000000/12.000000/8.000000/16.000000:w/3/8.000000/12.000000/14.000000/16.000000:e/1/2.000000/12.000000/8.000000/16.000000:d/2/2.000000/2.000000/8.000000/8.000000:R/0/180/0,box=2.000000/0.000000/2.000000:14.000000/4.000000/8.000000:u/0/2.000000/2.000000/14.000000/8.000000:s/1/2.000000/12.000000/14.000000/16.000000:w/3/2.000000/12.000000/8.000000/16.000000:e/3/8.000000/12.000000/14.000000/16.000000:d/2/2.000000/8.000000/14.000000/14.000000:n/3/2.000000/12.000000/14.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%sweet_berry_cheesecake,state=bites:1/facing:west,box=2.000000/0.000000/8.000000:8.000000/4.000000/14.000000:u/0/2.000000/8.000000/8.000000/14.000000:s/3/2.000000/12.000000/8.000000/16.000000:w/3/8.000000/12.000000/14.000000/16.000000:e/1/2.000000/12.000000/8.000000/16.000000:d/2/2.000000/2.000000/8.000000/8.000000:R/0/270/0,box=2.000000/0.000000/2.000000:14.000000/4.000000/8.000000:u/0/2.000000/2.000000/14.000000/8.000000:s/1/2.000000/12.000000/14.000000/16.000000:w/3/2.000000/12.000000/8.000000/16.000000:e/3/8.000000/12.000000/14.000000/16.000000:d/2/2.000000/8.000000/14.000000/14.000000:n/3/2.000000/12.000000/14.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%sweet_berry_cheesecake,state=bites:1/facing:east,box=2.000000/0.000000/8.000000:8.000000/4.000000/14.000000:u/0/2.000000/8.000000/8.000000/14.000000:s/3/2.000000/12.000000/8.000000/16.000000:w/3/8.000000/12.000000/14.000000/16.000000:e/1/2.000000/12.000000/8.000000/16.000000:d/2/2.000000/2.000000/8.000000/8.000000:R/0/90/0,box=2.000000/0.000000/2.000000:14.000000/4.000000/8.000000:u/0/2.000000/2.000000/14.000000/8.000000:s/1/2.000000/12.000000/14.000000/16.000000:w/3/2.000000/12.000000/8.000000/16.000000:e/3/8.000000/12.000000/14.000000/16.000000:d/2/2.000000/8.000000/14.000000/14.000000:n/3/2.000000/12.000000/14.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%sweet_berry_cheesecake,state=bites:2/facing:north,box=2.000000/0.000000/2.000000:14.000000/4.000000/8.000000:u/0/2.000000/2.000000/14.000000/8.000000:s/3/2.000000/12.000000/14.000000/16.000000:w/1/2.000000/12.000000/8.000000/16.000000:e/1/8.000000/12.000000/14.000000/16.000000:d/2/2.000000/8.000000/14.000000/14.000000:n/1/2.000000/12.000000/14.000000/16.000000
|
|
||||||
modellist:id=%sweet_berry_cheesecake,state=bites:2/facing:south,box=2.000000/0.000000/2.000000:14.000000/4.000000/8.000000:u/0/2.000000/2.000000/14.000000/8.000000:s/3/2.000000/12.000000/14.000000/16.000000:w/1/2.000000/12.000000/8.000000/16.000000:e/1/8.000000/12.000000/14.000000/16.000000:d/2/2.000000/8.000000/14.000000/14.000000:n/1/2.000000/12.000000/14.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%sweet_berry_cheesecake,state=bites:2/facing:west,box=2.000000/0.000000/2.000000:14.000000/4.000000/8.000000:u/0/2.000000/2.000000/14.000000/8.000000:s/3/2.000000/12.000000/14.000000/16.000000:w/1/2.000000/12.000000/8.000000/16.000000:e/1/8.000000/12.000000/14.000000/16.000000:d/2/2.000000/8.000000/14.000000/14.000000:n/1/2.000000/12.000000/14.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%sweet_berry_cheesecake,state=bites:2/facing:east,box=2.000000/0.000000/2.000000:14.000000/4.000000/8.000000:u/0/2.000000/2.000000/14.000000/8.000000:s/3/2.000000/12.000000/14.000000/16.000000:w/1/2.000000/12.000000/8.000000/16.000000:e/1/8.000000/12.000000/14.000000/16.000000:d/2/2.000000/8.000000/14.000000/14.000000:n/1/2.000000/12.000000/14.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%sweet_berry_cheesecake,state=bites:3/facing:north,box=8.000000/0.000000/2.000000:14.000000/4.000000/8.000000:u/0/8.000000/2.000000/14.000000/8.000000:s/3/8.000000/12.000000/14.000000/16.000000:w/3/2.000000/12.000000/8.000000/16.000000:e/1/8.000000/12.000000/14.000000/16.000000:d/2/2.000000/8.000000/14.000000/14.000000:n/1/2.000000/12.000000/8.000000/16.000000
|
|
||||||
modellist:id=%sweet_berry_cheesecake,state=bites:3/facing:south,box=8.000000/0.000000/2.000000:14.000000/4.000000/8.000000:u/0/8.000000/2.000000/14.000000/8.000000:s/3/8.000000/12.000000/14.000000/16.000000:w/3/2.000000/12.000000/8.000000/16.000000:e/1/8.000000/12.000000/14.000000/16.000000:d/2/2.000000/8.000000/14.000000/14.000000:n/1/2.000000/12.000000/8.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%sweet_berry_cheesecake,state=bites:3/facing:west,box=8.000000/0.000000/2.000000:14.000000/4.000000/8.000000:u/0/8.000000/2.000000/14.000000/8.000000:s/3/8.000000/12.000000/14.000000/16.000000:w/3/2.000000/12.000000/8.000000/16.000000:e/1/8.000000/12.000000/14.000000/16.000000:d/2/2.000000/8.000000/14.000000/14.000000:n/1/2.000000/12.000000/8.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%sweet_berry_cheesecake,state=bites:3/facing:east,box=8.000000/0.000000/2.000000:14.000000/4.000000/8.000000:u/0/8.000000/2.000000/14.000000/8.000000:s/3/8.000000/12.000000/14.000000/16.000000:w/3/2.000000/12.000000/8.000000/16.000000:e/1/8.000000/12.000000/14.000000/16.000000:d/2/2.000000/8.000000/14.000000/14.000000:n/1/2.000000/12.000000/8.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%chocolate_pie,state=bites:0/facing:north,box=2.000000/0.000000/2.000000:14.000000/4.000000/14.000000:u/0/2.000000/2.000000/14.000000/14.000000:s/1/2.000000/12.000000/14.000000/16.000000:w/1/2.000000/12.000000/14.000000/16.000000:e/1/2.000000/12.000000/14.000000/16.000000:d/2/2.000000/2.000000/14.000000/14.000000:n/1/2.000000/12.000000/14.000000/16.000000,box=6.000000/4.000000/6.000000:10.000000/5.000000/10.000000:u/3/6.000000/7.000000/10.000000/11.000000:s/3/6.000000/11.000000/10.000000/12.000000:w/3/6.000000/11.000000/10.000000/12.000000:e/3/6.000000/11.000000/10.000000/12.000000:n/3/6.000000/11.000000/10.000000/12.000000
|
|
||||||
modellist:id=%chocolate_pie,state=bites:0/facing:south,box=2.000000/0.000000/2.000000:14.000000/4.000000/14.000000:u/0/2.000000/2.000000/14.000000/14.000000:s/1/2.000000/12.000000/14.000000/16.000000:w/1/2.000000/12.000000/14.000000/16.000000:e/1/2.000000/12.000000/14.000000/16.000000:d/2/2.000000/2.000000/14.000000/14.000000:n/1/2.000000/12.000000/14.000000/16.000000:R/0/180/0,box=6.000000/4.000000/6.000000:10.000000/5.000000/10.000000:u/3/6.000000/7.000000/10.000000/11.000000:s/3/6.000000/11.000000/10.000000/12.000000:w/3/6.000000/11.000000/10.000000/12.000000:e/3/6.000000/11.000000/10.000000/12.000000:n/3/6.000000/11.000000/10.000000/12.000000:R/0/180/0
|
|
||||||
modellist:id=%chocolate_pie,state=bites:0/facing:west,box=2.000000/0.000000/2.000000:14.000000/4.000000/14.000000:u/0/2.000000/2.000000/14.000000/14.000000:s/1/2.000000/12.000000/14.000000/16.000000:w/1/2.000000/12.000000/14.000000/16.000000:e/1/2.000000/12.000000/14.000000/16.000000:d/2/2.000000/2.000000/14.000000/14.000000:n/1/2.000000/12.000000/14.000000/16.000000:R/0/270/0,box=6.000000/4.000000/6.000000:10.000000/5.000000/10.000000:u/3/6.000000/7.000000/10.000000/11.000000:s/3/6.000000/11.000000/10.000000/12.000000:w/3/6.000000/11.000000/10.000000/12.000000:e/3/6.000000/11.000000/10.000000/12.000000:n/3/6.000000/11.000000/10.000000/12.000000:R/0/270/0
|
|
||||||
modellist:id=%chocolate_pie,state=bites:0/facing:east,box=2.000000/0.000000/2.000000:14.000000/4.000000/14.000000:u/0/2.000000/2.000000/14.000000/14.000000:s/1/2.000000/12.000000/14.000000/16.000000:w/1/2.000000/12.000000/14.000000/16.000000:e/1/2.000000/12.000000/14.000000/16.000000:d/2/2.000000/2.000000/14.000000/14.000000:n/1/2.000000/12.000000/14.000000/16.000000:R/0/90/0,box=6.000000/4.000000/6.000000:10.000000/5.000000/10.000000:u/3/6.000000/7.000000/10.000000/11.000000:s/3/6.000000/11.000000/10.000000/12.000000:w/3/6.000000/11.000000/10.000000/12.000000:e/3/6.000000/11.000000/10.000000/12.000000:n/3/6.000000/11.000000/10.000000/12.000000:R/0/90/0
|
|
||||||
modellist:id=%chocolate_pie,state=bites:1/facing:north,box=2.000000/0.000000/2.000000:14.000000/4.000000/8.000000:u/0/2.000000/2.000000/14.000000/8.000000:s/3/2.000000/12.000000/14.000000/16.000000:w/1/2.000000/12.000000/8.000000/16.000000:e/1/8.000000/12.000000/14.000000/16.000000:d/2/2.000000/8.000000/14.000000/14.000000:n/1/2.000000/12.000000/14.000000/16.000000,box=6.000000/4.000000/6.000000:10.000000/5.000000/8.000000:u/3/6.000000/7.000000/10.000000/9.000000:s/3/6.000000/11.000000/10.000000/12.000000:w/3/6.000000/11.000000/8.000000/12.000000:e/3/8.000000/11.000000/10.000000/12.000000:n/3/6.000000/11.000000/10.000000/12.000000,box=2.000000/0.000000/8.000000:8.000000/4.000000/14.000000:u/0/2.000000/8.000000/8.000000/14.000000:s/1/2.000000/12.000000/8.000000/16.000000:w/1/8.000000/12.000000/14.000000/16.000000:e/3/2.000000/12.000000/8.000000/16.000000:d/2/2.000000/2.000000/8.000000/8.000000,box=6.000000/4.000000/8.000000:8.000000/5.000000/10.000000:u/3/6.000000/9.000000/8.000000/11.000000:s/3/6.000000/11.000000/8.000000/12.000000:w/3/8.000000/11.000000/10.000000/12.000000:e/3/6.000000/11.000000/8.000000/12.000000
|
|
||||||
modellist:id=%chocolate_pie,state=bites:1/facing:south,box=2.000000/0.000000/2.000000:14.000000/4.000000/8.000000:u/0/2.000000/2.000000/14.000000/8.000000:s/3/2.000000/12.000000/14.000000/16.000000:w/1/2.000000/12.000000/8.000000/16.000000:e/1/8.000000/12.000000/14.000000/16.000000:d/2/2.000000/8.000000/14.000000/14.000000:n/1/2.000000/12.000000/14.000000/16.000000:R/0/180/0,box=6.000000/4.000000/6.000000:10.000000/5.000000/8.000000:u/3/6.000000/7.000000/10.000000/9.000000:s/3/6.000000/11.000000/10.000000/12.000000:w/3/6.000000/11.000000/8.000000/12.000000:e/3/8.000000/11.000000/10.000000/12.000000:n/3/6.000000/11.000000/10.000000/12.000000:R/0/180/0,box=2.000000/0.000000/8.000000:8.000000/4.000000/14.000000:u/0/2.000000/8.000000/8.000000/14.000000:s/1/2.000000/12.000000/8.000000/16.000000:w/1/8.000000/12.000000/14.000000/16.000000:e/3/2.000000/12.000000/8.000000/16.000000:d/2/2.000000/2.000000/8.000000/8.000000:R/0/180/0,box=6.000000/4.000000/8.000000:8.000000/5.000000/10.000000:u/3/6.000000/9.000000/8.000000/11.000000:s/3/6.000000/11.000000/8.000000/12.000000:w/3/8.000000/11.000000/10.000000/12.000000:e/3/6.000000/11.000000/8.000000/12.000000:R/0/180/0
|
|
||||||
modellist:id=%chocolate_pie,state=bites:1/facing:west,box=2.000000/0.000000/2.000000:14.000000/4.000000/8.000000:u/0/2.000000/2.000000/14.000000/8.000000:s/3/2.000000/12.000000/14.000000/16.000000:w/1/2.000000/12.000000/8.000000/16.000000:e/1/8.000000/12.000000/14.000000/16.000000:d/2/2.000000/8.000000/14.000000/14.000000:n/1/2.000000/12.000000/14.000000/16.000000:R/0/270/0,box=6.000000/4.000000/6.000000:10.000000/5.000000/8.000000:u/3/6.000000/7.000000/10.000000/9.000000:s/3/6.000000/11.000000/10.000000/12.000000:w/3/6.000000/11.000000/8.000000/12.000000:e/3/8.000000/11.000000/10.000000/12.000000:n/3/6.000000/11.000000/10.000000/12.000000:R/0/270/0,box=2.000000/0.000000/8.000000:8.000000/4.000000/14.000000:u/0/2.000000/8.000000/8.000000/14.000000:s/1/2.000000/12.000000/8.000000/16.000000:w/1/8.000000/12.000000/14.000000/16.000000:e/3/2.000000/12.000000/8.000000/16.000000:d/2/2.000000/2.000000/8.000000/8.000000:R/0/270/0,box=6.000000/4.000000/8.000000:8.000000/5.000000/10.000000:u/3/6.000000/9.000000/8.000000/11.000000:s/3/6.000000/11.000000/8.000000/12.000000:w/3/8.000000/11.000000/10.000000/12.000000:e/3/6.000000/11.000000/8.000000/12.000000:R/0/270/0
|
|
||||||
modellist:id=%chocolate_pie,state=bites:1/facing:east,box=2.000000/0.000000/2.000000:14.000000/4.000000/8.000000:u/0/2.000000/2.000000/14.000000/8.000000:s/3/2.000000/12.000000/14.000000/16.000000:w/1/2.000000/12.000000/8.000000/16.000000:e/1/8.000000/12.000000/14.000000/16.000000:d/2/2.000000/8.000000/14.000000/14.000000:n/1/2.000000/12.000000/14.000000/16.000000:R/0/90/0,box=6.000000/4.000000/6.000000:10.000000/5.000000/8.000000:u/3/6.000000/7.000000/10.000000/9.000000:s/3/6.000000/11.000000/10.000000/12.000000:w/3/6.000000/11.000000/8.000000/12.000000:e/3/8.000000/11.000000/10.000000/12.000000:n/3/6.000000/11.000000/10.000000/12.000000:R/0/90/0,box=2.000000/0.000000/8.000000:8.000000/4.000000/14.000000:u/0/2.000000/8.000000/8.000000/14.000000:s/1/2.000000/12.000000/8.000000/16.000000:w/1/8.000000/12.000000/14.000000/16.000000:e/3/2.000000/12.000000/8.000000/16.000000:d/2/2.000000/2.000000/8.000000/8.000000:R/0/90/0,box=6.000000/4.000000/8.000000:8.000000/5.000000/10.000000:u/3/6.000000/9.000000/8.000000/11.000000:s/3/6.000000/11.000000/8.000000/12.000000:w/3/8.000000/11.000000/10.000000/12.000000:e/3/6.000000/11.000000/8.000000/12.000000:R/0/90/0
|
|
||||||
modellist:id=%chocolate_pie,state=bites:2/facing:north,box=2.000000/0.000000/2.000000:14.000000/4.000000/8.000000:u/0/2.000000/2.000000/14.000000/8.000000:s/3/2.000000/12.000000/14.000000/16.000000:w/1/2.000000/12.000000/8.000000/16.000000:e/1/8.000000/12.000000/14.000000/16.000000:d/2/2.000000/8.000000/14.000000/14.000000:n/1/2.000000/12.000000/14.000000/16.000000,box=6.000000/4.000000/6.000000:10.000000/5.000000/8.000000:u/3/6.000000/7.000000/10.000000/9.000000:s/3/6.000000/11.000000/10.000000/12.000000:w/3/6.000000/11.000000/8.000000/12.000000:e/3/8.000000/11.000000/10.000000/12.000000:n/3/6.000000/11.000000/10.000000/12.000000
|
|
||||||
modellist:id=%chocolate_pie,state=bites:2/facing:south,box=2.000000/0.000000/2.000000:14.000000/4.000000/8.000000:u/0/2.000000/2.000000/14.000000/8.000000:s/3/2.000000/12.000000/14.000000/16.000000:w/1/2.000000/12.000000/8.000000/16.000000:e/1/8.000000/12.000000/14.000000/16.000000:d/2/2.000000/8.000000/14.000000/14.000000:n/1/2.000000/12.000000/14.000000/16.000000:R/0/180/0,box=6.000000/4.000000/6.000000:10.000000/5.000000/8.000000:u/3/6.000000/7.000000/10.000000/9.000000:s/3/6.000000/11.000000/10.000000/12.000000:w/3/6.000000/11.000000/8.000000/12.000000:e/3/8.000000/11.000000/10.000000/12.000000:n/3/6.000000/11.000000/10.000000/12.000000:R/0/180/0
|
|
||||||
modellist:id=%chocolate_pie,state=bites:2/facing:west,box=2.000000/0.000000/2.000000:14.000000/4.000000/8.000000:u/0/2.000000/2.000000/14.000000/8.000000:s/3/2.000000/12.000000/14.000000/16.000000:w/1/2.000000/12.000000/8.000000/16.000000:e/1/8.000000/12.000000/14.000000/16.000000:d/2/2.000000/8.000000/14.000000/14.000000:n/1/2.000000/12.000000/14.000000/16.000000:R/0/270/0,box=6.000000/4.000000/6.000000:10.000000/5.000000/8.000000:u/3/6.000000/7.000000/10.000000/9.000000:s/3/6.000000/11.000000/10.000000/12.000000:w/3/6.000000/11.000000/8.000000/12.000000:e/3/8.000000/11.000000/10.000000/12.000000:n/3/6.000000/11.000000/10.000000/12.000000:R/0/270/0
|
|
||||||
modellist:id=%chocolate_pie,state=bites:2/facing:east,box=2.000000/0.000000/2.000000:14.000000/4.000000/8.000000:u/0/2.000000/2.000000/14.000000/8.000000:s/3/2.000000/12.000000/14.000000/16.000000:w/1/2.000000/12.000000/8.000000/16.000000:e/1/8.000000/12.000000/14.000000/16.000000:d/2/2.000000/8.000000/14.000000/14.000000:n/1/2.000000/12.000000/14.000000/16.000000:R/0/90/0,box=6.000000/4.000000/6.000000:10.000000/5.000000/8.000000:u/3/6.000000/7.000000/10.000000/9.000000:s/3/6.000000/11.000000/10.000000/12.000000:w/3/6.000000/11.000000/8.000000/12.000000:e/3/8.000000/11.000000/10.000000/12.000000:n/3/6.000000/11.000000/10.000000/12.000000:R/0/90/0
|
|
||||||
modellist:id=%chocolate_pie,state=bites:3/facing:north,box=8.000000/0.000000/2.000000:14.000000/4.000000/8.000000:u/0/8.000000/2.000000/14.000000/8.000000:s/3/8.000000/12.000000/14.000000/16.000000:w/3/2.000000/12.000000/8.000000/16.000000:e/1/8.000000/12.000000/14.000000/16.000000:d/2/2.000000/8.000000/14.000000/14.000000:n/1/2.000000/12.000000/8.000000/16.000000,box=8.000000/4.000000/6.000000:10.000000/5.000000/8.000000:u/3/8.000000/7.000000/10.000000/9.000000:s/3/8.000000/11.000000/10.000000/12.000000:w/3/6.000000/11.000000/8.000000/12.000000:e/3/8.000000/11.000000/10.000000/12.000000:n/3/6.000000/11.000000/8.000000/12.000000
|
|
||||||
modellist:id=%chocolate_pie,state=bites:3/facing:south,box=8.000000/0.000000/2.000000:14.000000/4.000000/8.000000:u/0/8.000000/2.000000/14.000000/8.000000:s/3/8.000000/12.000000/14.000000/16.000000:w/3/2.000000/12.000000/8.000000/16.000000:e/1/8.000000/12.000000/14.000000/16.000000:d/2/2.000000/8.000000/14.000000/14.000000:n/1/2.000000/12.000000/8.000000/16.000000:R/0/180/0,box=8.000000/4.000000/6.000000:10.000000/5.000000/8.000000:u/3/8.000000/7.000000/10.000000/9.000000:s/3/8.000000/11.000000/10.000000/12.000000:w/3/6.000000/11.000000/8.000000/12.000000:e/3/8.000000/11.000000/10.000000/12.000000:n/3/6.000000/11.000000/8.000000/12.000000:R/0/180/0
|
|
||||||
modellist:id=%chocolate_pie,state=bites:3/facing:west,box=8.000000/0.000000/2.000000:14.000000/4.000000/8.000000:u/0/8.000000/2.000000/14.000000/8.000000:s/3/8.000000/12.000000/14.000000/16.000000:w/3/2.000000/12.000000/8.000000/16.000000:e/1/8.000000/12.000000/14.000000/16.000000:d/2/2.000000/8.000000/14.000000/14.000000:n/1/2.000000/12.000000/8.000000/16.000000:R/0/270/0,box=8.000000/4.000000/6.000000:10.000000/5.000000/8.000000:u/3/8.000000/7.000000/10.000000/9.000000:s/3/8.000000/11.000000/10.000000/12.000000:w/3/6.000000/11.000000/8.000000/12.000000:e/3/8.000000/11.000000/10.000000/12.000000:n/3/6.000000/11.000000/8.000000/12.000000:R/0/270/0
|
|
||||||
modellist:id=%chocolate_pie,state=bites:3/facing:east,box=8.000000/0.000000/2.000000:14.000000/4.000000/8.000000:u/0/8.000000/2.000000/14.000000/8.000000:s/3/8.000000/12.000000/14.000000/16.000000:w/3/2.000000/12.000000/8.000000/16.000000:e/1/8.000000/12.000000/14.000000/16.000000:d/2/2.000000/8.000000/14.000000/14.000000:n/1/2.000000/12.000000/8.000000/16.000000:R/0/90/0,box=8.000000/4.000000/6.000000:10.000000/5.000000/8.000000:u/3/8.000000/7.000000/10.000000/9.000000:s/3/8.000000/11.000000/10.000000/12.000000:w/3/6.000000/11.000000/8.000000/12.000000:e/3/8.000000/11.000000/10.000000/12.000000:n/3/6.000000/11.000000/8.000000/12.000000:R/0/90/0
|
|
||||||
modellist:id=%wild_cabbages,box=0.800000/0.000000/8.000000/false:15.200000/16.000000/8.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/0.000000/0.800000/false:8.000000/16.000000/15.200000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%wild_onions,box=4.000000/0.000000/0.000000/false:4.000000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000,box=12.000000/0.000000/0.000000/false:12.000000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/4.000000/false:16.000000/15.000000/4.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/12.000000/false:16.000000/15.000000/12.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%wild_tomatoes,box=0.800000/0.000000/8.000000/false:15.200000/16.000000/8.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/0.000000/0.800000/false:8.000000/16.000000/15.200000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%wild_carrots,box=4.000000/0.000000/0.000000/false:4.000000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000,box=12.000000/0.000000/0.000000/false:12.000000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/4.000000/false:16.000000/15.000000/4.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/12.000000/false:16.000000/15.000000/12.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%wild_potatoes,box=0.800000/0.000000/8.000000/false:15.200000/16.000000/8.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/0.000000/0.800000/false:8.000000/16.000000/15.200000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%wild_beetroots,box=0.800000/0.000000/8.000000/false:15.200000/16.000000/8.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/0.000000/0.800000/false:8.000000/16.000000/15.200000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%wild_rice,state=half:upper,box=0.800000/0.000000/8.000000/false:15.200000/16.000000/8.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/0.000000/0.800000/false:8.000000/16.000000/15.200000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%wild_rice,state=half:lower,box=0.800000/0.000000/8.000000/false:15.200000/16.000000/8.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/0.000000/0.800000/false:8.000000/16.000000/15.200000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%cabbages,state=age:0,box=0.800000/-1.000000/8.000000/false:15.200000/16.000000/8.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/-1.000000/0.800000/false:8.000000/16.000000/15.200000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%cabbages,state=age:1,box=0.800000/-1.000000/8.000000/false:15.200000/16.000000/8.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/-1.000000/0.800000/false:8.000000/16.000000/15.200000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%cabbages,state=age:2,box=0.800000/-1.000000/8.000000/false:15.200000/16.000000/8.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/-1.000000/0.800000/false:8.000000/16.000000/15.200000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%cabbages,state=age:3,box=0.800000/-1.000000/8.000000/false:15.200000/16.000000/8.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/-1.000000/0.800000/false:8.000000/16.000000/15.200000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%cabbages,state=age:4,box=0.800000/-1.000000/8.000000/false:15.200000/16.000000/8.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/-1.000000/0.800000/false:8.000000/16.000000/15.200000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%cabbages,state=age:5,box=0.800000/-1.000000/8.000000/false:15.200000/16.000000/8.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/-1.000000/0.800000/false:8.000000/16.000000/15.200000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%cabbages,state=age:6,box=0.800000/-1.000000/8.000000/false:15.200000/16.000000/8.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/-1.000000/0.800000/false:8.000000/16.000000/15.200000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%cabbages,state=age:7,box=0.800000/-1.000000/8.000000/false:15.200000/16.000000/8.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/-1.000000/0.800000/false:8.000000/16.000000/15.200000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%onions,state=age:0,box=4.000000/-1.000000/0.000000/false:4.000000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000,box=12.000000/-1.000000/0.000000/false:12.000000/15.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/-1.000000/4.000000/false:16.000000/15.000000/4.000000:s/0/16.000000/0.000000/0.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/-1.000000/12.000000/false:16.000000/15.000000/12.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/16.000000/0.000000/0.000000/16.000000
|
|
||||||
modellist:id=%onions,state=age:1,box=4.000000/-1.000000/0.000000/false:4.000000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000,box=12.000000/-1.000000/0.000000/false:12.000000/15.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/-1.000000/4.000000/false:16.000000/15.000000/4.000000:s/0/16.000000/0.000000/0.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/-1.000000/12.000000/false:16.000000/15.000000/12.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/16.000000/0.000000/0.000000/16.000000
|
|
||||||
modellist:id=%onions,state=age:2,box=4.000000/-1.000000/0.000000/false:4.000000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000,box=12.000000/-1.000000/0.000000/false:12.000000/15.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/-1.000000/4.000000/false:16.000000/15.000000/4.000000:s/0/16.000000/0.000000/0.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/-1.000000/12.000000/false:16.000000/15.000000/12.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/16.000000/0.000000/0.000000/16.000000
|
|
||||||
modellist:id=%onions,state=age:3,box=4.000000/-1.000000/0.000000/false:4.000000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000,box=12.000000/-1.000000/0.000000/false:12.000000/15.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/-1.000000/4.000000/false:16.000000/15.000000/4.000000:s/0/16.000000/0.000000/0.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/-1.000000/12.000000/false:16.000000/15.000000/12.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/16.000000/0.000000/0.000000/16.000000
|
|
||||||
modellist:id=%onions,state=age:4,box=4.000000/-1.000000/0.000000/false:4.000000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000,box=12.000000/-1.000000/0.000000/false:12.000000/15.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/-1.000000/4.000000/false:16.000000/15.000000/4.000000:s/0/16.000000/0.000000/0.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/-1.000000/12.000000/false:16.000000/15.000000/12.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/16.000000/0.000000/0.000000/16.000000
|
|
||||||
modellist:id=%onions,state=age:5,box=4.000000/-1.000000/0.000000/false:4.000000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000,box=12.000000/-1.000000/0.000000/false:12.000000/15.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/-1.000000/4.000000/false:16.000000/15.000000/4.000000:s/0/16.000000/0.000000/0.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/-1.000000/12.000000/false:16.000000/15.000000/12.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/16.000000/0.000000/0.000000/16.000000
|
|
||||||
modellist:id=%onions,state=age:6,box=4.000000/-1.000000/0.000000/false:4.000000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000,box=12.000000/-1.000000/0.000000/false:12.000000/15.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/-1.000000/4.000000/false:16.000000/15.000000/4.000000:s/0/16.000000/0.000000/0.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/-1.000000/12.000000/false:16.000000/15.000000/12.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/16.000000/0.000000/0.000000/16.000000
|
|
||||||
modellist:id=%onions,state=age:7,box=4.000000/-1.000000/0.000000/false:4.000000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000,box=12.000000/-1.000000/0.000000/false:12.000000/15.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/-1.000000/4.000000/false:16.000000/15.000000/4.000000:s/0/16.000000/0.000000/0.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/-1.000000/12.000000/false:16.000000/15.000000/12.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/16.000000/0.000000/0.000000/16.000000
|
|
||||||
modellist:id=%tomatoes,state=age:0,box=0.800000/-1.000000/8.000000/false:15.200000/16.000000/8.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/-1.000000/0.800000/false:8.000000/16.000000/15.200000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%tomatoes,state=age:1,box=0.800000/-1.000000/8.000000/false:15.200000/16.000000/8.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/-1.000000/0.800000/false:8.000000/16.000000/15.200000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%tomatoes,state=age:2,box=0.800000/-1.000000/8.000000/false:15.200000/16.000000/8.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/-1.000000/0.800000/false:8.000000/16.000000/15.200000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%tomatoes,state=age:3,box=0.800000/-1.000000/8.000000/false:15.200000/16.000000/8.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/-1.000000/0.800000/false:8.000000/16.000000/15.200000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%tomatoes,state=age:4,box=0.800000/-1.000000/8.000000/false:15.200000/16.000000/8.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/-1.000000/0.800000/false:8.000000/16.000000/15.200000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%tomatoes,state=age:5,box=0.800000/-1.000000/8.000000/false:15.200000/16.000000/8.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/-1.000000/0.800000/false:8.000000/16.000000/15.200000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%tomatoes,state=age:6,box=0.800000/-1.000000/8.000000/false:15.200000/16.000000/8.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/-1.000000/0.800000/false:8.000000/16.000000/15.200000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%tomatoes,state=age:7,box=0.800000/-1.000000/8.000000/false:15.200000/16.000000/8.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/-1.000000/0.800000/false:8.000000/16.000000/15.200000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%rice,state=age:0/supporting:true,box=0.800000/0.000000/8.000000/false:15.200000/16.000000/8.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/0.000000/0.800000/false:8.000000/16.000000/15.200000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%rice,state=age:0/supporting:false,box=0.800000/0.000000/8.000000/false:15.200000/16.000000/8.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/0.000000/0.800000/false:8.000000/16.000000/15.200000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%rice,state=age:1/supporting:true,box=0.800000/0.000000/8.000000/false:15.200000/16.000000/8.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/0.000000/0.800000/false:8.000000/16.000000/15.200000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%rice,state=age:1/supporting:false,box=0.800000/0.000000/8.000000/false:15.200000/16.000000/8.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/0.000000/0.800000/false:8.000000/16.000000/15.200000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%rice,state=age:2/supporting:true,box=0.800000/0.000000/8.000000/false:15.200000/16.000000/8.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/0.000000/0.800000/false:8.000000/16.000000/15.200000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%rice,state=age:2/supporting:false,box=0.800000/0.000000/8.000000/false:15.200000/16.000000/8.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/0.000000/0.800000/false:8.000000/16.000000/15.200000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%rice,state=age:3/supporting:true,box=0.800000/0.000000/8.000000/false:15.200000/16.000000/8.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/0.000000/0.800000/false:8.000000/16.000000/15.200000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%rice,state=age:3/supporting:false,box=0.800000/0.000000/8.000000/false:15.200000/16.000000/8.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/0.000000/0.800000/false:8.000000/16.000000/15.200000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%rice_panicles,state=age:0,box=0.800000/0.000000/8.000000/false:15.200000/16.000000/8.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/0.000000/0.800000/false:8.000000/16.000000/15.200000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%rice_panicles,state=age:1,box=0.800000/0.000000/8.000000/false:15.200000/16.000000/8.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/0.000000/0.800000/false:8.000000/16.000000/15.200000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%rice_panicles,state=age:2,box=0.800000/0.000000/8.000000/false:15.200000/16.000000/8.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/0.000000/0.800000/false:8.000000/16.000000/15.200000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%rice_panicles,state=age:3,box=0.800000/0.000000/8.000000/false:15.200000/16.000000/8.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/0.000000/0.800000/false:8.000000/16.000000/15.200000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%roast_chicken_block,state=facing:north/servings:0,box=5.000000/7.100000/5.000000:11.000000/7.100000/11.000000:u/0/1.000000/9.000000/7.000000/15.000000:d180/0/1.000000/9.000000/7.000000/15.000000,box=5.000000/2.100000/5.000000:11.000000/2.100000/11.000000:u/0/1.000000/1.000000/7.000000/7.000000:d180/0/1.000000/1.000000/7.000000/7.000000,box=5.000000/2.100000/5.000000:5.000000/7.100000/11.000000:w/0/9.000000/2.000000/15.000000/7.000000:e/0/15.000000/2.000000/9.000000/7.000000,box=11.000000/2.100000/5.000000:11.000000/7.100000/11.000000:w/0/9.000000/2.000000/15.000000/7.000000:e/0/15.000000/2.000000/9.000000/7.000000,box=1.000000/0.000000/1.000000:15.000000/2.000000/15.000000:u/1/1.000000/1.000000/15.000000/15.000000:s/2/1.000000/11.000000/15.000000/13.000000:w/2/1.000000/11.000000/15.000000/13.000000:e/2/1.000000/11.000000/15.000000/13.000000:d/2/1.000000/1.000000/15.000000/15.000000:n/2/1.000000/11.000000/15.000000/13.000000
|
|
||||||
modellist:id=%roast_chicken_block,state=facing:north/servings:1,box=4.000000/2.000000/10.000000:12.000000/9.000000/12.000000:u/0/0.000000/6.000000/8.000000/8.000000:s/0/8.000000/9.000000/16.000000/16.000000:w/0/2.000000/9.000000/0.000000/16.000000:e/0/0.000000/9.000000/2.000000/16.000000:n/0/8.000000/1.000000/16.000000/8.000000,box=12.000000/5.000000/9.000000:14.000000/8.000000/13.000000:u/1/12.000000/9.000000/14.000000/13.000000:s/1/14.000000/13.000000/16.000000/16.000000:w/1/12.000000/13.000000/8.000000/16.000000:e/1/8.000000/13.000000/12.000000/16.000000:d/1/14.000000/9.000000/16.000000/13.000000:n/1/12.000000/13.000000/14.000000/16.000000,box=5.000000/8.000000/5.000000:11.000000/8.000000/11.000000:u/1/1.000000/9.000000/7.000000/15.000000:d180/1/1.000000/9.000000/7.000000/15.000000,box=5.000000/3.000000/5.000000:11.000000/3.000000/11.000000:u/1/1.000000/1.000000/7.000000/7.000000:d180/1/1.000000/1.000000/7.000000/7.000000,box=5.000000/3.000000/5.000000:5.000000/8.000000/11.000000:w/1/9.000000/2.000000/15.000000/7.000000:e/1/15.000000/2.000000/9.000000/7.000000,box=11.000000/3.000000/5.000000:11.000000/8.000000/11.000000:w/1/9.000000/2.000000/15.000000/7.000000:e/1/15.000000/2.000000/9.000000/7.000000,box=1.000000/0.000000/1.000000:15.000000/2.000000/15.000000:u/2/1.000000/1.000000/15.000000/15.000000:s/3/1.000000/11.000000/15.000000/13.000000:w/3/1.000000/11.000000/15.000000/13.000000:e/3/1.000000/11.000000/15.000000/13.000000:d/3/1.000000/1.000000/15.000000/15.000000:n/3/1.000000/11.000000/15.000000/13.000000
|
|
||||||
modellist:id=%roast_chicken_block,state=facing:north/servings:2,box=4.000000/2.000000/8.000000:12.000000/9.000000/12.000000:u/0/0.000000/4.000000/8.000000/8.000000:s/0/8.000000/9.000000/16.000000/16.000000:w/0/4.000000/9.000000/0.000000/16.000000:e/0/0.000000/9.000000/4.000000/16.000000:n/0/8.000000/1.000000/16.000000/8.000000,box=2.000000/5.000000/9.000000:4.000000/8.000000/13.000000:u/1/12.000000/9.000000/14.000000/13.000000:s/1/14.000000/13.000000/16.000000/16.000000:w/1/12.000000/13.000000/8.000000/16.000000:e/1/8.000000/13.000000/12.000000/16.000000:d/1/14.000000/9.000000/16.000000/13.000000:n/1/12.000000/13.000000/14.000000/16.000000,box=12.000000/5.000000/9.000000:14.000000/8.000000/13.000000:u/1/12.000000/9.000000/14.000000/13.000000:s/1/14.000000/13.000000/16.000000/16.000000:w/1/12.000000/13.000000/8.000000/16.000000:e/1/8.000000/13.000000/12.000000/16.000000:d/1/14.000000/9.000000/16.000000/13.000000:n/1/12.000000/13.000000/14.000000/16.000000,box=5.000000/8.000000/5.000000:11.000000/8.000000/11.000000:u/1/1.000000/9.000000/7.000000/15.000000:d180/1/1.000000/9.000000/7.000000/15.000000,box=5.000000/3.000000/5.000000:11.000000/3.000000/11.000000:u/1/1.000000/1.000000/7.000000/7.000000:d180/1/1.000000/1.000000/7.000000/7.000000,box=5.000000/3.000000/5.000000:5.000000/8.000000/11.000000:w/1/9.000000/2.000000/15.000000/7.000000:e/1/15.000000/2.000000/9.000000/7.000000,box=11.000000/3.000000/5.000000:11.000000/8.000000/11.000000:w/1/9.000000/2.000000/15.000000/7.000000:e/1/15.000000/2.000000/9.000000/7.000000,box=1.000000/0.000000/1.000000:15.000000/2.000000/15.000000:u/2/1.000000/1.000000/15.000000/15.000000:s/3/1.000000/11.000000/15.000000/13.000000:w/3/1.000000/11.000000/15.000000/13.000000:e/3/1.000000/11.000000/15.000000/13.000000:d/3/1.000000/1.000000/15.000000/15.000000:n/3/1.000000/11.000000/15.000000/13.000000
|
|
||||||
modellist:id=%roast_chicken_block,state=facing:north/servings:3,box=4.000000/2.000000/6.000000:12.000000/9.000000/12.000000:u/0/0.000000/2.000000/8.000000/8.000000:s/0/8.000000/9.000000/16.000000/16.000000:w/0/6.000000/9.000000/0.000000/16.000000:e/0/0.000000/9.000000/6.000000/16.000000:n/0/8.000000/1.000000/16.000000/8.000000,box=12.000000/2.000000/3.000000:14.000000/5.000000/7.000000:u/1/12.000000/9.000000/14.000000/13.000000:s/1/12.000000/13.000000/14.000000/16.000000:w/1/12.000000/13.000000/8.000000/16.000000:e/1/8.000000/13.000000/12.000000/16.000000:n/1/12.000000/13.000000/14.000000/16.000000,box=2.000000/5.000000/9.000000:4.000000/8.000000/13.000000:u/1/12.000000/9.000000/14.000000/13.000000:s/1/14.000000/13.000000/16.000000/16.000000:w/1/12.000000/13.000000/8.000000/16.000000:e/1/8.000000/13.000000/12.000000/16.000000:d/1/14.000000/9.000000/16.000000/13.000000:n/1/12.000000/13.000000/14.000000/16.000000,box=12.000000/5.000000/9.000000:14.000000/8.000000/13.000000:u/1/12.000000/9.000000/14.000000/13.000000:s/1/14.000000/13.000000/16.000000/16.000000:w/1/12.000000/13.000000/8.000000/16.000000:e/1/8.000000/13.000000/12.000000/16.000000:d/1/14.000000/9.000000/16.000000/13.000000:n/1/12.000000/13.000000/14.000000/16.000000,box=5.000000/8.000000/5.000000:11.000000/8.000000/11.000000:u/1/1.000000/9.000000/7.000000/15.000000:d180/1/1.000000/9.000000/7.000000/15.000000,box=5.000000/3.000000/5.000000:11.000000/3.000000/11.000000:u/1/1.000000/1.000000/7.000000/7.000000:d180/1/1.000000/1.000000/7.000000/7.000000,box=5.000000/3.000000/5.000000:5.000000/8.000000/11.000000:w/1/9.000000/2.000000/15.000000/7.000000:e/1/15.000000/2.000000/9.000000/7.000000,box=11.000000/3.000000/5.000000:11.000000/8.000000/11.000000:w/1/9.000000/2.000000/15.000000/7.000000:e/1/15.000000/2.000000/9.000000/7.000000,box=1.000000/0.000000/1.000000:15.000000/2.000000/15.000000:u/2/1.000000/1.000000/15.000000/15.000000:s/3/1.000000/11.000000/15.000000/13.000000:w/3/1.000000/11.000000/15.000000/13.000000:e/3/1.000000/11.000000/15.000000/13.000000:d/3/1.000000/1.000000/15.000000/15.000000:n/3/1.000000/11.000000/15.000000/13.000000
|
|
||||||
modellist:id=%roast_chicken_block,state=facing:north/servings:4,box=4.000000/2.000000/4.000000:12.000000/9.000000/12.000000:u/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/9.000000/16.000000/16.000000:w/0/8.000000/9.000000/0.000000/16.000000:e/0/0.000000/9.000000/8.000000/16.000000:n/0/8.000000/1.000000/16.000000/8.000000,box=2.000000/2.000000/3.000000:4.000000/5.000000/7.000000:u/1/12.000000/9.000000/14.000000/13.000000:s/1/12.000000/13.000000/14.000000/16.000000:w/1/12.000000/13.000000/8.000000/16.000000:e/1/8.000000/13.000000/12.000000/16.000000:n/1/12.000000/13.000000/14.000000/16.000000,box=2.000000/5.000000/9.000000:4.000000/8.000000/13.000000:u/1/12.000000/9.000000/14.000000/13.000000:s/1/14.000000/13.000000/16.000000/16.000000:w/1/12.000000/13.000000/8.000000/16.000000:e/1/8.000000/13.000000/12.000000/16.000000:d/1/12.000000/9.000000/14.000000/13.000000:n/1/12.000000/13.000000/14.000000/16.000000,box=12.000000/2.000000/3.000000:14.000000/5.000000/7.000000:u/1/12.000000/9.000000/14.000000/13.000000:s/1/12.000000/13.000000/14.000000/16.000000:w/1/12.000000/13.000000/8.000000/16.000000:e/1/8.000000/13.000000/12.000000/16.000000:n/1/12.000000/13.000000/14.000000/16.000000,box=12.000000/5.000000/9.000000:14.000000/8.000000/13.000000:u/1/12.000000/9.000000/14.000000/13.000000:s/1/14.000000/13.000000/16.000000/16.000000:w/1/12.000000/13.000000/8.000000/16.000000:e/1/8.000000/13.000000/12.000000/16.000000:d/1/12.000000/9.000000/14.000000/13.000000:n/1/12.000000/13.000000/14.000000/16.000000,box=1.000000/0.000000/1.000000:15.000000/2.000000/15.000000:u/2/1.000000/1.000000/15.000000/15.000000:s/3/1.000000/11.000000/15.000000/13.000000:w/3/1.000000/11.000000/15.000000/13.000000:e/3/1.000000/11.000000/15.000000/13.000000:d/3/1.000000/1.000000/15.000000/15.000000:n/3/1.000000/11.000000/15.000000/13.000000
|
|
||||||
modellist:id=%roast_chicken_block,state=facing:south/servings:0,box=5.000000/7.100000/5.000000:11.000000/7.100000/11.000000:u/0/1.000000/9.000000/7.000000/15.000000:d180/0/1.000000/9.000000/7.000000/15.000000:R/0/180/0,box=5.000000/2.100000/5.000000:11.000000/2.100000/11.000000:u/0/1.000000/1.000000/7.000000/7.000000:d180/0/1.000000/1.000000/7.000000/7.000000:R/0/180/0,box=5.000000/2.100000/5.000000:5.000000/7.100000/11.000000:w/0/9.000000/2.000000/15.000000/7.000000:e/0/15.000000/2.000000/9.000000/7.000000:R/0/180/0,box=11.000000/2.100000/5.000000:11.000000/7.100000/11.000000:w/0/9.000000/2.000000/15.000000/7.000000:e/0/15.000000/2.000000/9.000000/7.000000:R/0/180/0,box=1.000000/0.000000/1.000000:15.000000/2.000000/15.000000:u/1/1.000000/1.000000/15.000000/15.000000:s/2/1.000000/11.000000/15.000000/13.000000:w/2/1.000000/11.000000/15.000000/13.000000:e/2/1.000000/11.000000/15.000000/13.000000:d/2/1.000000/1.000000/15.000000/15.000000:n/2/1.000000/11.000000/15.000000/13.000000:R/0/180/0
|
|
||||||
modellist:id=%roast_chicken_block,state=facing:south/servings:1,box=4.000000/2.000000/10.000000:12.000000/9.000000/12.000000:u/0/0.000000/6.000000/8.000000/8.000000:s/0/8.000000/9.000000/16.000000/16.000000:w/0/2.000000/9.000000/0.000000/16.000000:e/0/0.000000/9.000000/2.000000/16.000000:n/0/8.000000/1.000000/16.000000/8.000000:R/0/180/0,box=12.000000/5.000000/9.000000:14.000000/8.000000/13.000000:u/1/12.000000/9.000000/14.000000/13.000000:s/1/14.000000/13.000000/16.000000/16.000000:w/1/12.000000/13.000000/8.000000/16.000000:e/1/8.000000/13.000000/12.000000/16.000000:d/1/14.000000/9.000000/16.000000/13.000000:n/1/12.000000/13.000000/14.000000/16.000000:R/0/180/0,box=5.000000/8.000000/5.000000:11.000000/8.000000/11.000000:u/1/1.000000/9.000000/7.000000/15.000000:d180/1/1.000000/9.000000/7.000000/15.000000:R/0/180/0,box=5.000000/3.000000/5.000000:11.000000/3.000000/11.000000:u/1/1.000000/1.000000/7.000000/7.000000:d180/1/1.000000/1.000000/7.000000/7.000000:R/0/180/0,box=5.000000/3.000000/5.000000:5.000000/8.000000/11.000000:w/1/9.000000/2.000000/15.000000/7.000000:e/1/15.000000/2.000000/9.000000/7.000000:R/0/180/0,box=11.000000/3.000000/5.000000:11.000000/8.000000/11.000000:w/1/9.000000/2.000000/15.000000/7.000000:e/1/15.000000/2.000000/9.000000/7.000000:R/0/180/0,box=1.000000/0.000000/1.000000:15.000000/2.000000/15.000000:u/2/1.000000/1.000000/15.000000/15.000000:s/3/1.000000/11.000000/15.000000/13.000000:w/3/1.000000/11.000000/15.000000/13.000000:e/3/1.000000/11.000000/15.000000/13.000000:d/3/1.000000/1.000000/15.000000/15.000000:n/3/1.000000/11.000000/15.000000/13.000000:R/0/180/0
|
|
||||||
modellist:id=%roast_chicken_block,state=facing:south/servings:2,box=4.000000/2.000000/8.000000:12.000000/9.000000/12.000000:u/0/0.000000/4.000000/8.000000/8.000000:s/0/8.000000/9.000000/16.000000/16.000000:w/0/4.000000/9.000000/0.000000/16.000000:e/0/0.000000/9.000000/4.000000/16.000000:n/0/8.000000/1.000000/16.000000/8.000000:R/0/180/0,box=2.000000/5.000000/9.000000:4.000000/8.000000/13.000000:u/1/12.000000/9.000000/14.000000/13.000000:s/1/14.000000/13.000000/16.000000/16.000000:w/1/12.000000/13.000000/8.000000/16.000000:e/1/8.000000/13.000000/12.000000/16.000000:d/1/14.000000/9.000000/16.000000/13.000000:n/1/12.000000/13.000000/14.000000/16.000000:R/0/180/0,box=12.000000/5.000000/9.000000:14.000000/8.000000/13.000000:u/1/12.000000/9.000000/14.000000/13.000000:s/1/14.000000/13.000000/16.000000/16.000000:w/1/12.000000/13.000000/8.000000/16.000000:e/1/8.000000/13.000000/12.000000/16.000000:d/1/14.000000/9.000000/16.000000/13.000000:n/1/12.000000/13.000000/14.000000/16.000000:R/0/180/0,box=5.000000/8.000000/5.000000:11.000000/8.000000/11.000000:u/1/1.000000/9.000000/7.000000/15.000000:d180/1/1.000000/9.000000/7.000000/15.000000:R/0/180/0,box=5.000000/3.000000/5.000000:11.000000/3.000000/11.000000:u/1/1.000000/1.000000/7.000000/7.000000:d180/1/1.000000/1.000000/7.000000/7.000000:R/0/180/0,box=5.000000/3.000000/5.000000:5.000000/8.000000/11.000000:w/1/9.000000/2.000000/15.000000/7.000000:e/1/15.000000/2.000000/9.000000/7.000000:R/0/180/0,box=11.000000/3.000000/5.000000:11.000000/8.000000/11.000000:w/1/9.000000/2.000000/15.000000/7.000000:e/1/15.000000/2.000000/9.000000/7.000000:R/0/180/0,box=1.000000/0.000000/1.000000:15.000000/2.000000/15.000000:u/2/1.000000/1.000000/15.000000/15.000000:s/3/1.000000/11.000000/15.000000/13.000000:w/3/1.000000/11.000000/15.000000/13.000000:e/3/1.000000/11.000000/15.000000/13.000000:d/3/1.000000/1.000000/15.000000/15.000000:n/3/1.000000/11.000000/15.000000/13.000000:R/0/180/0
|
|
||||||
modellist:id=%roast_chicken_block,state=facing:south/servings:3,box=4.000000/2.000000/6.000000:12.000000/9.000000/12.000000:u/0/0.000000/2.000000/8.000000/8.000000:s/0/8.000000/9.000000/16.000000/16.000000:w/0/6.000000/9.000000/0.000000/16.000000:e/0/0.000000/9.000000/6.000000/16.000000:n/0/8.000000/1.000000/16.000000/8.000000:R/0/180/0,box=12.000000/2.000000/3.000000:14.000000/5.000000/7.000000:u/1/12.000000/9.000000/14.000000/13.000000:s/1/12.000000/13.000000/14.000000/16.000000:w/1/12.000000/13.000000/8.000000/16.000000:e/1/8.000000/13.000000/12.000000/16.000000:n/1/12.000000/13.000000/14.000000/16.000000:R/0/180/0,box=2.000000/5.000000/9.000000:4.000000/8.000000/13.000000:u/1/12.000000/9.000000/14.000000/13.000000:s/1/14.000000/13.000000/16.000000/16.000000:w/1/12.000000/13.000000/8.000000/16.000000:e/1/8.000000/13.000000/12.000000/16.000000:d/1/14.000000/9.000000/16.000000/13.000000:n/1/12.000000/13.000000/14.000000/16.000000:R/0/180/0,box=12.000000/5.000000/9.000000:14.000000/8.000000/13.000000:u/1/12.000000/9.000000/14.000000/13.000000:s/1/14.000000/13.000000/16.000000/16.000000:w/1/12.000000/13.000000/8.000000/16.000000:e/1/8.000000/13.000000/12.000000/16.000000:d/1/14.000000/9.000000/16.000000/13.000000:n/1/12.000000/13.000000/14.000000/16.000000:R/0/180/0,box=5.000000/8.000000/5.000000:11.000000/8.000000/11.000000:u/1/1.000000/9.000000/7.000000/15.000000:d180/1/1.000000/9.000000/7.000000/15.000000:R/0/180/0,box=5.000000/3.000000/5.000000:11.000000/3.000000/11.000000:u/1/1.000000/1.000000/7.000000/7.000000:d180/1/1.000000/1.000000/7.000000/7.000000:R/0/180/0,box=5.000000/3.000000/5.000000:5.000000/8.000000/11.000000:w/1/9.000000/2.000000/15.000000/7.000000:e/1/15.000000/2.000000/9.000000/7.000000:R/0/180/0,box=11.000000/3.000000/5.000000:11.000000/8.000000/11.000000:w/1/9.000000/2.000000/15.000000/7.000000:e/1/15.000000/2.000000/9.000000/7.000000:R/0/180/0,box=1.000000/0.000000/1.000000:15.000000/2.000000/15.000000:u/2/1.000000/1.000000/15.000000/15.000000:s/3/1.000000/11.000000/15.000000/13.000000:w/3/1.000000/11.000000/15.000000/13.000000:e/3/1.000000/11.000000/15.000000/13.000000:d/3/1.000000/1.000000/15.000000/15.000000:n/3/1.000000/11.000000/15.000000/13.000000:R/0/180/0
|
|
||||||
modellist:id=%roast_chicken_block,state=facing:south/servings:4,box=4.000000/2.000000/4.000000:12.000000/9.000000/12.000000:u/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/9.000000/16.000000/16.000000:w/0/8.000000/9.000000/0.000000/16.000000:e/0/0.000000/9.000000/8.000000/16.000000:n/0/8.000000/1.000000/16.000000/8.000000:R/0/180/0,box=2.000000/2.000000/3.000000:4.000000/5.000000/7.000000:u/1/12.000000/9.000000/14.000000/13.000000:s/1/12.000000/13.000000/14.000000/16.000000:w/1/12.000000/13.000000/8.000000/16.000000:e/1/8.000000/13.000000/12.000000/16.000000:n/1/12.000000/13.000000/14.000000/16.000000:R/0/180/0,box=2.000000/5.000000/9.000000:4.000000/8.000000/13.000000:u/1/12.000000/9.000000/14.000000/13.000000:s/1/14.000000/13.000000/16.000000/16.000000:w/1/12.000000/13.000000/8.000000/16.000000:e/1/8.000000/13.000000/12.000000/16.000000:d/1/12.000000/9.000000/14.000000/13.000000:n/1/12.000000/13.000000/14.000000/16.000000:R/0/180/0,box=12.000000/2.000000/3.000000:14.000000/5.000000/7.000000:u/1/12.000000/9.000000/14.000000/13.000000:s/1/12.000000/13.000000/14.000000/16.000000:w/1/12.000000/13.000000/8.000000/16.000000:e/1/8.000000/13.000000/12.000000/16.000000:n/1/12.000000/13.000000/14.000000/16.000000:R/0/180/0,box=12.000000/5.000000/9.000000:14.000000/8.000000/13.000000:u/1/12.000000/9.000000/14.000000/13.000000:s/1/14.000000/13.000000/16.000000/16.000000:w/1/12.000000/13.000000/8.000000/16.000000:e/1/8.000000/13.000000/12.000000/16.000000:d/1/12.000000/9.000000/14.000000/13.000000:n/1/12.000000/13.000000/14.000000/16.000000:R/0/180/0,box=1.000000/0.000000/1.000000:15.000000/2.000000/15.000000:u/2/1.000000/1.000000/15.000000/15.000000:s/3/1.000000/11.000000/15.000000/13.000000:w/3/1.000000/11.000000/15.000000/13.000000:e/3/1.000000/11.000000/15.000000/13.000000:d/3/1.000000/1.000000/15.000000/15.000000:n/3/1.000000/11.000000/15.000000/13.000000:R/0/180/0
|
|
||||||
modellist:id=%roast_chicken_block,state=facing:west/servings:0,box=5.000000/7.100000/5.000000:11.000000/7.100000/11.000000:u/0/1.000000/9.000000/7.000000/15.000000:d180/0/1.000000/9.000000/7.000000/15.000000:R/0/270/0,box=5.000000/2.100000/5.000000:11.000000/2.100000/11.000000:u/0/1.000000/1.000000/7.000000/7.000000:d180/0/1.000000/1.000000/7.000000/7.000000:R/0/270/0,box=5.000000/2.100000/5.000000:5.000000/7.100000/11.000000:w/0/9.000000/2.000000/15.000000/7.000000:e/0/15.000000/2.000000/9.000000/7.000000:R/0/270/0,box=11.000000/2.100000/5.000000:11.000000/7.100000/11.000000:w/0/9.000000/2.000000/15.000000/7.000000:e/0/15.000000/2.000000/9.000000/7.000000:R/0/270/0,box=1.000000/0.000000/1.000000:15.000000/2.000000/15.000000:u/1/1.000000/1.000000/15.000000/15.000000:s/2/1.000000/11.000000/15.000000/13.000000:w/2/1.000000/11.000000/15.000000/13.000000:e/2/1.000000/11.000000/15.000000/13.000000:d/2/1.000000/1.000000/15.000000/15.000000:n/2/1.000000/11.000000/15.000000/13.000000:R/0/270/0
|
|
||||||
modellist:id=%roast_chicken_block,state=facing:west/servings:1,box=4.000000/2.000000/10.000000:12.000000/9.000000/12.000000:u/0/0.000000/6.000000/8.000000/8.000000:s/0/8.000000/9.000000/16.000000/16.000000:w/0/2.000000/9.000000/0.000000/16.000000:e/0/0.000000/9.000000/2.000000/16.000000:n/0/8.000000/1.000000/16.000000/8.000000:R/0/270/0,box=12.000000/5.000000/9.000000:14.000000/8.000000/13.000000:u/1/12.000000/9.000000/14.000000/13.000000:s/1/14.000000/13.000000/16.000000/16.000000:w/1/12.000000/13.000000/8.000000/16.000000:e/1/8.000000/13.000000/12.000000/16.000000:d/1/14.000000/9.000000/16.000000/13.000000:n/1/12.000000/13.000000/14.000000/16.000000:R/0/270/0,box=5.000000/8.000000/5.000000:11.000000/8.000000/11.000000:u/1/1.000000/9.000000/7.000000/15.000000:d180/1/1.000000/9.000000/7.000000/15.000000:R/0/270/0,box=5.000000/3.000000/5.000000:11.000000/3.000000/11.000000:u/1/1.000000/1.000000/7.000000/7.000000:d180/1/1.000000/1.000000/7.000000/7.000000:R/0/270/0,box=5.000000/3.000000/5.000000:5.000000/8.000000/11.000000:w/1/9.000000/2.000000/15.000000/7.000000:e/1/15.000000/2.000000/9.000000/7.000000:R/0/270/0,box=11.000000/3.000000/5.000000:11.000000/8.000000/11.000000:w/1/9.000000/2.000000/15.000000/7.000000:e/1/15.000000/2.000000/9.000000/7.000000:R/0/270/0,box=1.000000/0.000000/1.000000:15.000000/2.000000/15.000000:u/2/1.000000/1.000000/15.000000/15.000000:s/3/1.000000/11.000000/15.000000/13.000000:w/3/1.000000/11.000000/15.000000/13.000000:e/3/1.000000/11.000000/15.000000/13.000000:d/3/1.000000/1.000000/15.000000/15.000000:n/3/1.000000/11.000000/15.000000/13.000000:R/0/270/0
|
|
||||||
modellist:id=%roast_chicken_block,state=facing:west/servings:2,box=4.000000/2.000000/8.000000:12.000000/9.000000/12.000000:u/0/0.000000/4.000000/8.000000/8.000000:s/0/8.000000/9.000000/16.000000/16.000000:w/0/4.000000/9.000000/0.000000/16.000000:e/0/0.000000/9.000000/4.000000/16.000000:n/0/8.000000/1.000000/16.000000/8.000000:R/0/270/0,box=2.000000/5.000000/9.000000:4.000000/8.000000/13.000000:u/1/12.000000/9.000000/14.000000/13.000000:s/1/14.000000/13.000000/16.000000/16.000000:w/1/12.000000/13.000000/8.000000/16.000000:e/1/8.000000/13.000000/12.000000/16.000000:d/1/14.000000/9.000000/16.000000/13.000000:n/1/12.000000/13.000000/14.000000/16.000000:R/0/270/0,box=12.000000/5.000000/9.000000:14.000000/8.000000/13.000000:u/1/12.000000/9.000000/14.000000/13.000000:s/1/14.000000/13.000000/16.000000/16.000000:w/1/12.000000/13.000000/8.000000/16.000000:e/1/8.000000/13.000000/12.000000/16.000000:d/1/14.000000/9.000000/16.000000/13.000000:n/1/12.000000/13.000000/14.000000/16.000000:R/0/270/0,box=5.000000/8.000000/5.000000:11.000000/8.000000/11.000000:u/1/1.000000/9.000000/7.000000/15.000000:d180/1/1.000000/9.000000/7.000000/15.000000:R/0/270/0,box=5.000000/3.000000/5.000000:11.000000/3.000000/11.000000:u/1/1.000000/1.000000/7.000000/7.000000:d180/1/1.000000/1.000000/7.000000/7.000000:R/0/270/0,box=5.000000/3.000000/5.000000:5.000000/8.000000/11.000000:w/1/9.000000/2.000000/15.000000/7.000000:e/1/15.000000/2.000000/9.000000/7.000000:R/0/270/0,box=11.000000/3.000000/5.000000:11.000000/8.000000/11.000000:w/1/9.000000/2.000000/15.000000/7.000000:e/1/15.000000/2.000000/9.000000/7.000000:R/0/270/0,box=1.000000/0.000000/1.000000:15.000000/2.000000/15.000000:u/2/1.000000/1.000000/15.000000/15.000000:s/3/1.000000/11.000000/15.000000/13.000000:w/3/1.000000/11.000000/15.000000/13.000000:e/3/1.000000/11.000000/15.000000/13.000000:d/3/1.000000/1.000000/15.000000/15.000000:n/3/1.000000/11.000000/15.000000/13.000000:R/0/270/0
|
|
||||||
modellist:id=%roast_chicken_block,state=facing:west/servings:3,box=4.000000/2.000000/6.000000:12.000000/9.000000/12.000000:u/0/0.000000/2.000000/8.000000/8.000000:s/0/8.000000/9.000000/16.000000/16.000000:w/0/6.000000/9.000000/0.000000/16.000000:e/0/0.000000/9.000000/6.000000/16.000000:n/0/8.000000/1.000000/16.000000/8.000000:R/0/270/0,box=12.000000/2.000000/3.000000:14.000000/5.000000/7.000000:u/1/12.000000/9.000000/14.000000/13.000000:s/1/12.000000/13.000000/14.000000/16.000000:w/1/12.000000/13.000000/8.000000/16.000000:e/1/8.000000/13.000000/12.000000/16.000000:n/1/12.000000/13.000000/14.000000/16.000000:R/0/270/0,box=2.000000/5.000000/9.000000:4.000000/8.000000/13.000000:u/1/12.000000/9.000000/14.000000/13.000000:s/1/14.000000/13.000000/16.000000/16.000000:w/1/12.000000/13.000000/8.000000/16.000000:e/1/8.000000/13.000000/12.000000/16.000000:d/1/14.000000/9.000000/16.000000/13.000000:n/1/12.000000/13.000000/14.000000/16.000000:R/0/270/0,box=12.000000/5.000000/9.000000:14.000000/8.000000/13.000000:u/1/12.000000/9.000000/14.000000/13.000000:s/1/14.000000/13.000000/16.000000/16.000000:w/1/12.000000/13.000000/8.000000/16.000000:e/1/8.000000/13.000000/12.000000/16.000000:d/1/14.000000/9.000000/16.000000/13.000000:n/1/12.000000/13.000000/14.000000/16.000000:R/0/270/0,box=5.000000/8.000000/5.000000:11.000000/8.000000/11.000000:u/1/1.000000/9.000000/7.000000/15.000000:d180/1/1.000000/9.000000/7.000000/15.000000:R/0/270/0,box=5.000000/3.000000/5.000000:11.000000/3.000000/11.000000:u/1/1.000000/1.000000/7.000000/7.000000:d180/1/1.000000/1.000000/7.000000/7.000000:R/0/270/0,box=5.000000/3.000000/5.000000:5.000000/8.000000/11.000000:w/1/9.000000/2.000000/15.000000/7.000000:e/1/15.000000/2.000000/9.000000/7.000000:R/0/270/0,box=11.000000/3.000000/5.000000:11.000000/8.000000/11.000000:w/1/9.000000/2.000000/15.000000/7.000000:e/1/15.000000/2.000000/9.000000/7.000000:R/0/270/0,box=1.000000/0.000000/1.000000:15.000000/2.000000/15.000000:u/2/1.000000/1.000000/15.000000/15.000000:s/3/1.000000/11.000000/15.000000/13.000000:w/3/1.000000/11.000000/15.000000/13.000000:e/3/1.000000/11.000000/15.000000/13.000000:d/3/1.000000/1.000000/15.000000/15.000000:n/3/1.000000/11.000000/15.000000/13.000000:R/0/270/0
|
|
||||||
modellist:id=%roast_chicken_block,state=facing:west/servings:4,box=4.000000/2.000000/4.000000:12.000000/9.000000/12.000000:u/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/9.000000/16.000000/16.000000:w/0/8.000000/9.000000/0.000000/16.000000:e/0/0.000000/9.000000/8.000000/16.000000:n/0/8.000000/1.000000/16.000000/8.000000:R/0/270/0,box=2.000000/2.000000/3.000000:4.000000/5.000000/7.000000:u/1/12.000000/9.000000/14.000000/13.000000:s/1/12.000000/13.000000/14.000000/16.000000:w/1/12.000000/13.000000/8.000000/16.000000:e/1/8.000000/13.000000/12.000000/16.000000:n/1/12.000000/13.000000/14.000000/16.000000:R/0/270/0,box=2.000000/5.000000/9.000000:4.000000/8.000000/13.000000:u/1/12.000000/9.000000/14.000000/13.000000:s/1/14.000000/13.000000/16.000000/16.000000:w/1/12.000000/13.000000/8.000000/16.000000:e/1/8.000000/13.000000/12.000000/16.000000:d/1/12.000000/9.000000/14.000000/13.000000:n/1/12.000000/13.000000/14.000000/16.000000:R/0/270/0,box=12.000000/2.000000/3.000000:14.000000/5.000000/7.000000:u/1/12.000000/9.000000/14.000000/13.000000:s/1/12.000000/13.000000/14.000000/16.000000:w/1/12.000000/13.000000/8.000000/16.000000:e/1/8.000000/13.000000/12.000000/16.000000:n/1/12.000000/13.000000/14.000000/16.000000:R/0/270/0,box=12.000000/5.000000/9.000000:14.000000/8.000000/13.000000:u/1/12.000000/9.000000/14.000000/13.000000:s/1/14.000000/13.000000/16.000000/16.000000:w/1/12.000000/13.000000/8.000000/16.000000:e/1/8.000000/13.000000/12.000000/16.000000:d/1/12.000000/9.000000/14.000000/13.000000:n/1/12.000000/13.000000/14.000000/16.000000:R/0/270/0,box=1.000000/0.000000/1.000000:15.000000/2.000000/15.000000:u/2/1.000000/1.000000/15.000000/15.000000:s/3/1.000000/11.000000/15.000000/13.000000:w/3/1.000000/11.000000/15.000000/13.000000:e/3/1.000000/11.000000/15.000000/13.000000:d/3/1.000000/1.000000/15.000000/15.000000:n/3/1.000000/11.000000/15.000000/13.000000:R/0/270/0
|
|
||||||
modellist:id=%roast_chicken_block,state=facing:east/servings:0,box=5.000000/7.100000/5.000000:11.000000/7.100000/11.000000:u/0/1.000000/9.000000/7.000000/15.000000:d180/0/1.000000/9.000000/7.000000/15.000000:R/0/90/0,box=5.000000/2.100000/5.000000:11.000000/2.100000/11.000000:u/0/1.000000/1.000000/7.000000/7.000000:d180/0/1.000000/1.000000/7.000000/7.000000:R/0/90/0,box=5.000000/2.100000/5.000000:5.000000/7.100000/11.000000:w/0/9.000000/2.000000/15.000000/7.000000:e/0/15.000000/2.000000/9.000000/7.000000:R/0/90/0,box=11.000000/2.100000/5.000000:11.000000/7.100000/11.000000:w/0/9.000000/2.000000/15.000000/7.000000:e/0/15.000000/2.000000/9.000000/7.000000:R/0/90/0,box=1.000000/0.000000/1.000000:15.000000/2.000000/15.000000:u/1/1.000000/1.000000/15.000000/15.000000:s/2/1.000000/11.000000/15.000000/13.000000:w/2/1.000000/11.000000/15.000000/13.000000:e/2/1.000000/11.000000/15.000000/13.000000:d/2/1.000000/1.000000/15.000000/15.000000:n/2/1.000000/11.000000/15.000000/13.000000:R/0/90/0
|
|
||||||
modellist:id=%roast_chicken_block,state=facing:east/servings:1,box=4.000000/2.000000/10.000000:12.000000/9.000000/12.000000:u/0/0.000000/6.000000/8.000000/8.000000:s/0/8.000000/9.000000/16.000000/16.000000:w/0/2.000000/9.000000/0.000000/16.000000:e/0/0.000000/9.000000/2.000000/16.000000:n/0/8.000000/1.000000/16.000000/8.000000:R/0/90/0,box=12.000000/5.000000/9.000000:14.000000/8.000000/13.000000:u/1/12.000000/9.000000/14.000000/13.000000:s/1/14.000000/13.000000/16.000000/16.000000:w/1/12.000000/13.000000/8.000000/16.000000:e/1/8.000000/13.000000/12.000000/16.000000:d/1/14.000000/9.000000/16.000000/13.000000:n/1/12.000000/13.000000/14.000000/16.000000:R/0/90/0,box=5.000000/8.000000/5.000000:11.000000/8.000000/11.000000:u/1/1.000000/9.000000/7.000000/15.000000:d180/1/1.000000/9.000000/7.000000/15.000000:R/0/90/0,box=5.000000/3.000000/5.000000:11.000000/3.000000/11.000000:u/1/1.000000/1.000000/7.000000/7.000000:d180/1/1.000000/1.000000/7.000000/7.000000:R/0/90/0,box=5.000000/3.000000/5.000000:5.000000/8.000000/11.000000:w/1/9.000000/2.000000/15.000000/7.000000:e/1/15.000000/2.000000/9.000000/7.000000:R/0/90/0,box=11.000000/3.000000/5.000000:11.000000/8.000000/11.000000:w/1/9.000000/2.000000/15.000000/7.000000:e/1/15.000000/2.000000/9.000000/7.000000:R/0/90/0,box=1.000000/0.000000/1.000000:15.000000/2.000000/15.000000:u/2/1.000000/1.000000/15.000000/15.000000:s/3/1.000000/11.000000/15.000000/13.000000:w/3/1.000000/11.000000/15.000000/13.000000:e/3/1.000000/11.000000/15.000000/13.000000:d/3/1.000000/1.000000/15.000000/15.000000:n/3/1.000000/11.000000/15.000000/13.000000:R/0/90/0
|
|
||||||
modellist:id=%roast_chicken_block,state=facing:east/servings:2,box=4.000000/2.000000/8.000000:12.000000/9.000000/12.000000:u/0/0.000000/4.000000/8.000000/8.000000:s/0/8.000000/9.000000/16.000000/16.000000:w/0/4.000000/9.000000/0.000000/16.000000:e/0/0.000000/9.000000/4.000000/16.000000:n/0/8.000000/1.000000/16.000000/8.000000:R/0/90/0,box=2.000000/5.000000/9.000000:4.000000/8.000000/13.000000:u/1/12.000000/9.000000/14.000000/13.000000:s/1/14.000000/13.000000/16.000000/16.000000:w/1/12.000000/13.000000/8.000000/16.000000:e/1/8.000000/13.000000/12.000000/16.000000:d/1/14.000000/9.000000/16.000000/13.000000:n/1/12.000000/13.000000/14.000000/16.000000:R/0/90/0,box=12.000000/5.000000/9.000000:14.000000/8.000000/13.000000:u/1/12.000000/9.000000/14.000000/13.000000:s/1/14.000000/13.000000/16.000000/16.000000:w/1/12.000000/13.000000/8.000000/16.000000:e/1/8.000000/13.000000/12.000000/16.000000:d/1/14.000000/9.000000/16.000000/13.000000:n/1/12.000000/13.000000/14.000000/16.000000:R/0/90/0,box=5.000000/8.000000/5.000000:11.000000/8.000000/11.000000:u/1/1.000000/9.000000/7.000000/15.000000:d180/1/1.000000/9.000000/7.000000/15.000000:R/0/90/0,box=5.000000/3.000000/5.000000:11.000000/3.000000/11.000000:u/1/1.000000/1.000000/7.000000/7.000000:d180/1/1.000000/1.000000/7.000000/7.000000:R/0/90/0,box=5.000000/3.000000/5.000000:5.000000/8.000000/11.000000:w/1/9.000000/2.000000/15.000000/7.000000:e/1/15.000000/2.000000/9.000000/7.000000:R/0/90/0,box=11.000000/3.000000/5.000000:11.000000/8.000000/11.000000:w/1/9.000000/2.000000/15.000000/7.000000:e/1/15.000000/2.000000/9.000000/7.000000:R/0/90/0,box=1.000000/0.000000/1.000000:15.000000/2.000000/15.000000:u/2/1.000000/1.000000/15.000000/15.000000:s/3/1.000000/11.000000/15.000000/13.000000:w/3/1.000000/11.000000/15.000000/13.000000:e/3/1.000000/11.000000/15.000000/13.000000:d/3/1.000000/1.000000/15.000000/15.000000:n/3/1.000000/11.000000/15.000000/13.000000:R/0/90/0
|
|
||||||
modellist:id=%roast_chicken_block,state=facing:east/servings:3,box=4.000000/2.000000/6.000000:12.000000/9.000000/12.000000:u/0/0.000000/2.000000/8.000000/8.000000:s/0/8.000000/9.000000/16.000000/16.000000:w/0/6.000000/9.000000/0.000000/16.000000:e/0/0.000000/9.000000/6.000000/16.000000:n/0/8.000000/1.000000/16.000000/8.000000:R/0/90/0,box=12.000000/2.000000/3.000000:14.000000/5.000000/7.000000:u/1/12.000000/9.000000/14.000000/13.000000:s/1/12.000000/13.000000/14.000000/16.000000:w/1/12.000000/13.000000/8.000000/16.000000:e/1/8.000000/13.000000/12.000000/16.000000:n/1/12.000000/13.000000/14.000000/16.000000:R/0/90/0,box=2.000000/5.000000/9.000000:4.000000/8.000000/13.000000:u/1/12.000000/9.000000/14.000000/13.000000:s/1/14.000000/13.000000/16.000000/16.000000:w/1/12.000000/13.000000/8.000000/16.000000:e/1/8.000000/13.000000/12.000000/16.000000:d/1/14.000000/9.000000/16.000000/13.000000:n/1/12.000000/13.000000/14.000000/16.000000:R/0/90/0,box=12.000000/5.000000/9.000000:14.000000/8.000000/13.000000:u/1/12.000000/9.000000/14.000000/13.000000:s/1/14.000000/13.000000/16.000000/16.000000:w/1/12.000000/13.000000/8.000000/16.000000:e/1/8.000000/13.000000/12.000000/16.000000:d/1/14.000000/9.000000/16.000000/13.000000:n/1/12.000000/13.000000/14.000000/16.000000:R/0/90/0,box=5.000000/8.000000/5.000000:11.000000/8.000000/11.000000:u/1/1.000000/9.000000/7.000000/15.000000:d180/1/1.000000/9.000000/7.000000/15.000000:R/0/90/0,box=5.000000/3.000000/5.000000:11.000000/3.000000/11.000000:u/1/1.000000/1.000000/7.000000/7.000000:d180/1/1.000000/1.000000/7.000000/7.000000:R/0/90/0,box=5.000000/3.000000/5.000000:5.000000/8.000000/11.000000:w/1/9.000000/2.000000/15.000000/7.000000:e/1/15.000000/2.000000/9.000000/7.000000:R/0/90/0,box=11.000000/3.000000/5.000000:11.000000/8.000000/11.000000:w/1/9.000000/2.000000/15.000000/7.000000:e/1/15.000000/2.000000/9.000000/7.000000:R/0/90/0,box=1.000000/0.000000/1.000000:15.000000/2.000000/15.000000:u/2/1.000000/1.000000/15.000000/15.000000:s/3/1.000000/11.000000/15.000000/13.000000:w/3/1.000000/11.000000/15.000000/13.000000:e/3/1.000000/11.000000/15.000000/13.000000:d/3/1.000000/1.000000/15.000000/15.000000:n/3/1.000000/11.000000/15.000000/13.000000:R/0/90/0
|
|
||||||
modellist:id=%roast_chicken_block,state=facing:east/servings:4,box=4.000000/2.000000/4.000000:12.000000/9.000000/12.000000:u/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/9.000000/16.000000/16.000000:w/0/8.000000/9.000000/0.000000/16.000000:e/0/0.000000/9.000000/8.000000/16.000000:n/0/8.000000/1.000000/16.000000/8.000000:R/0/90/0,box=2.000000/2.000000/3.000000:4.000000/5.000000/7.000000:u/1/12.000000/9.000000/14.000000/13.000000:s/1/12.000000/13.000000/14.000000/16.000000:w/1/12.000000/13.000000/8.000000/16.000000:e/1/8.000000/13.000000/12.000000/16.000000:n/1/12.000000/13.000000/14.000000/16.000000:R/0/90/0,box=2.000000/5.000000/9.000000:4.000000/8.000000/13.000000:u/1/12.000000/9.000000/14.000000/13.000000:s/1/14.000000/13.000000/16.000000/16.000000:w/1/12.000000/13.000000/8.000000/16.000000:e/1/8.000000/13.000000/12.000000/16.000000:d/1/12.000000/9.000000/14.000000/13.000000:n/1/12.000000/13.000000/14.000000/16.000000:R/0/90/0,box=12.000000/2.000000/3.000000:14.000000/5.000000/7.000000:u/1/12.000000/9.000000/14.000000/13.000000:s/1/12.000000/13.000000/14.000000/16.000000:w/1/12.000000/13.000000/8.000000/16.000000:e/1/8.000000/13.000000/12.000000/16.000000:n/1/12.000000/13.000000/14.000000/16.000000:R/0/90/0,box=12.000000/5.000000/9.000000:14.000000/8.000000/13.000000:u/1/12.000000/9.000000/14.000000/13.000000:s/1/14.000000/13.000000/16.000000/16.000000:w/1/12.000000/13.000000/8.000000/16.000000:e/1/8.000000/13.000000/12.000000/16.000000:d/1/12.000000/9.000000/14.000000/13.000000:n/1/12.000000/13.000000/14.000000/16.000000:R/0/90/0,box=1.000000/0.000000/1.000000:15.000000/2.000000/15.000000:u/2/1.000000/1.000000/15.000000/15.000000:s/3/1.000000/11.000000/15.000000/13.000000:w/3/1.000000/11.000000/15.000000/13.000000:e/3/1.000000/11.000000/15.000000/13.000000:d/3/1.000000/1.000000/15.000000/15.000000:n/3/1.000000/11.000000/15.000000/13.000000:R/0/90/0
|
|
||||||
modellist:id=%stuffed_pumpkin_block,state=facing:north/servings:0,box=5.000000/1.000000/7.000000:15.000000/3.000000/9.000000/0.000000/0.000000/22.500000/6.000000/2.000000/8.000000:u270/0/2.000000/3.000000/4.000000/13.000000:s90/0/2.000000/3.000000/4.000000/13.000000:w90/0/2.000000/1.000000/4.000000/3.000000:e90/0/2.000000/1.000000/4.000000/3.000000:d270/0/2.000000/3.000000/4.000000/13.000000:n270/0/2.000000/3.000000/4.000000/13.000000,box=4.000000/2.000000/4.000000:12.000000/4.000000/12.000000:u/0/6.000000/4.000000/14.000000/12.000000:s/0/6.000000/10.000000/14.000000/12.000000:w270/0/6.000000/4.000000/8.000000/12.000000:e90/0/12.000000/4.000000/14.000000/12.000000:d/0/6.000000/4.000000/14.000000/12.000000:n180/0/6.000000/4.000000/14.000000/6.000000,box=2.000000/0.000000/2.000000:14.000000/3.000000/14.000000:u/1/2.000000/2.000000/14.000000/14.000000:s/2/2.000000/13.000000/14.000000/16.000000:w/2/2.000000/13.000000/14.000000/16.000000:e/2/2.000000/13.000000/14.000000/16.000000:d/3/2.000000/2.000000/14.000000/14.000000:n/2/2.000000/13.000000/14.000000/16.000000
|
|
||||||
modellist:id=%stuffed_pumpkin_block,state=facing:north/servings:1,box=5.000000/1.000000/7.000000:15.000000/3.000000/9.000000/0.000000/0.000000/22.500000/6.000000/2.000000/8.000000:u270/0/2.000000/3.000000/4.000000/13.000000:s90/0/2.000000/3.000000/4.000000/13.000000:w90/0/2.000000/1.000000/4.000000/3.000000:e90/0/2.000000/1.000000/4.000000/3.000000:d270/0/2.000000/3.000000/4.000000/13.000000:n270/0/2.000000/3.000000/4.000000/13.000000,box=4.000000/2.000000/4.000000:12.000000/4.000000/12.000000:u/0/6.000000/4.000000/14.000000/12.000000:s/0/6.000000/10.000000/14.000000/12.000000:w270/0/6.000000/4.000000/8.000000/12.000000:e90/0/12.000000/4.000000/14.000000/12.000000:d/0/6.000000/4.000000/14.000000/12.000000:n180/0/6.000000/4.000000/14.000000/6.000000,box=2.000000/0.000000/2.000000:14.000000/3.000000/14.000000:u/1/2.000000/2.000000/14.000000/14.000000:s/2/2.000000/13.000000/14.000000/16.000000:w/2/2.000000/13.000000/14.000000/16.000000:e/2/2.000000/13.000000/14.000000/16.000000:d/3/2.000000/2.000000/14.000000/14.000000:n/2/2.000000/13.000000/14.000000/16.000000
|
|
||||||
modellist:id=%stuffed_pumpkin_block,state=facing:north/servings:2,box=7.000000/3.000000/7.000000:9.000000/13.000000/9.000000/0.000000/0.000000/-45.000000/8.000000/4.000000/8.000000:u/0/2.000000/1.000000/4.000000/3.000000:s/0/2.000000/3.000000/4.000000/13.000000:w180/0/2.000000/3.000000/4.000000/13.000000:e180/0/2.000000/3.000000/4.000000/13.000000:d/0/2.000000/1.000000/4.000000/3.000000:n/0/2.000000/3.000000/4.000000/13.000000,box=4.000000/5.000000/4.000000:12.000000/7.000000/12.000000:u/0/6.000000/4.000000/14.000000/12.000000:s/0/6.000000/10.000000/14.000000/12.000000:w270/0/6.000000/4.000000/8.000000/12.000000:e90/0/12.000000/4.000000/14.000000/12.000000:d/0/6.000000/4.000000/14.000000/12.000000:n180/0/6.000000/4.000000/14.000000/6.000000,box=2.000000/0.000000/2.000000:14.000000/6.000000/14.000000:u/1/2.000000/2.000000/14.000000/14.000000:s/2/2.000000/10.000000/14.000000/16.000000:w/2/2.000000/10.000000/14.000000/16.000000:e/2/2.000000/10.000000/14.000000/16.000000:d/3/2.000000/2.000000/14.000000/14.000000:n/2/2.000000/10.000000/14.000000/16.000000
|
|
||||||
modellist:id=%stuffed_pumpkin_block,state=facing:north/servings:3,box=8.000000/5.000000/7.000000:10.000000/15.000000/9.000000/0.000000/0.000000/-22.500000/9.000000/6.000000/8.000000:u/0/2.000000/1.000000/4.000000/3.000000:s/0/2.000000/3.000000/4.000000/13.000000:w180/0/2.000000/3.000000/4.000000/13.000000:e180/0/2.000000/3.000000/4.000000/13.000000:d/0/2.000000/1.000000/4.000000/3.000000:n/0/2.000000/3.000000/4.000000/13.000000,box=4.000000/7.000000/4.000000:12.000000/9.000000/12.000000:u/0/6.000000/4.000000/14.000000/12.000000:s/0/6.000000/10.000000/14.000000/12.000000:w270/0/6.000000/4.000000/8.000000/12.000000:e90/0/12.000000/4.000000/14.000000/12.000000:d/0/6.000000/4.000000/14.000000/12.000000:n180/0/6.000000/4.000000/14.000000/6.000000,box=2.000000/0.000000/2.000000:14.000000/8.000000/14.000000:u/1/2.000000/2.000000/14.000000/14.000000:s/2/2.000000/8.000000/14.000000/16.000000:w/2/2.000000/8.000000/14.000000/16.000000:e/2/2.000000/8.000000/14.000000/16.000000:d/3/2.000000/2.000000/14.000000/14.000000:n/2/2.000000/8.000000/14.000000/16.000000
|
|
||||||
modellist:id=%stuffed_pumpkin_block,state=facing:north/servings:4,box=8.000000/8.000000/7.000000:10.000000/18.000000/9.000000/0.000000/0.000000/-22.500000/9.000000/9.000000/8.000000:u/0/2.000000/1.000000/4.000000/3.000000:s/0/2.000000/3.000000/4.000000/13.000000:w180/0/2.000000/3.000000/4.000000/13.000000:e180/0/2.000000/3.000000/4.000000/13.000000:d/0/2.000000/1.000000/4.000000/3.000000:n/0/2.000000/3.000000/4.000000/13.000000,box=4.000000/10.000000/4.000000:12.000000/12.000000/12.000000:u/0/6.000000/4.000000/14.000000/12.000000:s/0/6.000000/10.000000/14.000000/12.000000:w270/0/6.000000/4.000000/8.000000/12.000000:e90/0/12.000000/4.000000/14.000000/12.000000:d/0/6.000000/4.000000/14.000000/12.000000:n180/0/6.000000/4.000000/14.000000/6.000000,box=2.000000/0.000000/2.000000:14.000000/10.000000/14.000000:u/1/2.000000/2.000000/14.000000/14.000000:s/2/2.000000/6.000000/14.000000/16.000000:w/2/2.000000/6.000000/14.000000/16.000000:e/2/2.000000/6.000000/14.000000/16.000000:d/3/2.000000/2.000000/14.000000/14.000000:n/2/2.000000/6.000000/14.000000/16.000000
|
|
||||||
modellist:id=%stuffed_pumpkin_block,state=facing:south/servings:0,box=5.000000/1.000000/7.000000:15.000000/3.000000/9.000000/0.000000/0.000000/22.500000/6.000000/2.000000/8.000000:u270/0/2.000000/3.000000/4.000000/13.000000:s90/0/2.000000/3.000000/4.000000/13.000000:w90/0/2.000000/1.000000/4.000000/3.000000:e90/0/2.000000/1.000000/4.000000/3.000000:d270/0/2.000000/3.000000/4.000000/13.000000:n270/0/2.000000/3.000000/4.000000/13.000000:R/0/180/0,box=4.000000/2.000000/4.000000:12.000000/4.000000/12.000000:u/0/6.000000/4.000000/14.000000/12.000000:s/0/6.000000/10.000000/14.000000/12.000000:w270/0/6.000000/4.000000/8.000000/12.000000:e90/0/12.000000/4.000000/14.000000/12.000000:d/0/6.000000/4.000000/14.000000/12.000000:n180/0/6.000000/4.000000/14.000000/6.000000:R/0/180/0,box=2.000000/0.000000/2.000000:14.000000/3.000000/14.000000:u/1/2.000000/2.000000/14.000000/14.000000:s/2/2.000000/13.000000/14.000000/16.000000:w/2/2.000000/13.000000/14.000000/16.000000:e/2/2.000000/13.000000/14.000000/16.000000:d/3/2.000000/2.000000/14.000000/14.000000:n/2/2.000000/13.000000/14.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%stuffed_pumpkin_block,state=facing:south/servings:1,box=5.000000/1.000000/7.000000:15.000000/3.000000/9.000000/0.000000/0.000000/22.500000/6.000000/2.000000/8.000000:u270/0/2.000000/3.000000/4.000000/13.000000:s90/0/2.000000/3.000000/4.000000/13.000000:w90/0/2.000000/1.000000/4.000000/3.000000:e90/0/2.000000/1.000000/4.000000/3.000000:d270/0/2.000000/3.000000/4.000000/13.000000:n270/0/2.000000/3.000000/4.000000/13.000000:R/0/180/0,box=4.000000/2.000000/4.000000:12.000000/4.000000/12.000000:u/0/6.000000/4.000000/14.000000/12.000000:s/0/6.000000/10.000000/14.000000/12.000000:w270/0/6.000000/4.000000/8.000000/12.000000:e90/0/12.000000/4.000000/14.000000/12.000000:d/0/6.000000/4.000000/14.000000/12.000000:n180/0/6.000000/4.000000/14.000000/6.000000:R/0/180/0,box=2.000000/0.000000/2.000000:14.000000/3.000000/14.000000:u/1/2.000000/2.000000/14.000000/14.000000:s/2/2.000000/13.000000/14.000000/16.000000:w/2/2.000000/13.000000/14.000000/16.000000:e/2/2.000000/13.000000/14.000000/16.000000:d/3/2.000000/2.000000/14.000000/14.000000:n/2/2.000000/13.000000/14.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%stuffed_pumpkin_block,state=facing:south/servings:2,box=7.000000/3.000000/7.000000:9.000000/13.000000/9.000000/0.000000/0.000000/-45.000000/8.000000/4.000000/8.000000:u/0/2.000000/1.000000/4.000000/3.000000:s/0/2.000000/3.000000/4.000000/13.000000:w180/0/2.000000/3.000000/4.000000/13.000000:e180/0/2.000000/3.000000/4.000000/13.000000:d/0/2.000000/1.000000/4.000000/3.000000:n/0/2.000000/3.000000/4.000000/13.000000:R/0/180/0,box=4.000000/5.000000/4.000000:12.000000/7.000000/12.000000:u/0/6.000000/4.000000/14.000000/12.000000:s/0/6.000000/10.000000/14.000000/12.000000:w270/0/6.000000/4.000000/8.000000/12.000000:e90/0/12.000000/4.000000/14.000000/12.000000:d/0/6.000000/4.000000/14.000000/12.000000:n180/0/6.000000/4.000000/14.000000/6.000000:R/0/180/0,box=2.000000/0.000000/2.000000:14.000000/6.000000/14.000000:u/1/2.000000/2.000000/14.000000/14.000000:s/2/2.000000/10.000000/14.000000/16.000000:w/2/2.000000/10.000000/14.000000/16.000000:e/2/2.000000/10.000000/14.000000/16.000000:d/3/2.000000/2.000000/14.000000/14.000000:n/2/2.000000/10.000000/14.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%stuffed_pumpkin_block,state=facing:south/servings:3,box=8.000000/5.000000/7.000000:10.000000/15.000000/9.000000/0.000000/0.000000/-22.500000/9.000000/6.000000/8.000000:u/0/2.000000/1.000000/4.000000/3.000000:s/0/2.000000/3.000000/4.000000/13.000000:w180/0/2.000000/3.000000/4.000000/13.000000:e180/0/2.000000/3.000000/4.000000/13.000000:d/0/2.000000/1.000000/4.000000/3.000000:n/0/2.000000/3.000000/4.000000/13.000000:R/0/180/0,box=4.000000/7.000000/4.000000:12.000000/9.000000/12.000000:u/0/6.000000/4.000000/14.000000/12.000000:s/0/6.000000/10.000000/14.000000/12.000000:w270/0/6.000000/4.000000/8.000000/12.000000:e90/0/12.000000/4.000000/14.000000/12.000000:d/0/6.000000/4.000000/14.000000/12.000000:n180/0/6.000000/4.000000/14.000000/6.000000:R/0/180/0,box=2.000000/0.000000/2.000000:14.000000/8.000000/14.000000:u/1/2.000000/2.000000/14.000000/14.000000:s/2/2.000000/8.000000/14.000000/16.000000:w/2/2.000000/8.000000/14.000000/16.000000:e/2/2.000000/8.000000/14.000000/16.000000:d/3/2.000000/2.000000/14.000000/14.000000:n/2/2.000000/8.000000/14.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%stuffed_pumpkin_block,state=facing:south/servings:4,box=8.000000/8.000000/7.000000:10.000000/18.000000/9.000000/0.000000/0.000000/-22.500000/9.000000/9.000000/8.000000:u/0/2.000000/1.000000/4.000000/3.000000:s/0/2.000000/3.000000/4.000000/13.000000:w180/0/2.000000/3.000000/4.000000/13.000000:e180/0/2.000000/3.000000/4.000000/13.000000:d/0/2.000000/1.000000/4.000000/3.000000:n/0/2.000000/3.000000/4.000000/13.000000:R/0/180/0,box=4.000000/10.000000/4.000000:12.000000/12.000000/12.000000:u/0/6.000000/4.000000/14.000000/12.000000:s/0/6.000000/10.000000/14.000000/12.000000:w270/0/6.000000/4.000000/8.000000/12.000000:e90/0/12.000000/4.000000/14.000000/12.000000:d/0/6.000000/4.000000/14.000000/12.000000:n180/0/6.000000/4.000000/14.000000/6.000000:R/0/180/0,box=2.000000/0.000000/2.000000:14.000000/10.000000/14.000000:u/1/2.000000/2.000000/14.000000/14.000000:s/2/2.000000/6.000000/14.000000/16.000000:w/2/2.000000/6.000000/14.000000/16.000000:e/2/2.000000/6.000000/14.000000/16.000000:d/3/2.000000/2.000000/14.000000/14.000000:n/2/2.000000/6.000000/14.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%stuffed_pumpkin_block,state=facing:west/servings:0,box=5.000000/1.000000/7.000000:15.000000/3.000000/9.000000/0.000000/0.000000/22.500000/6.000000/2.000000/8.000000:u270/0/2.000000/3.000000/4.000000/13.000000:s90/0/2.000000/3.000000/4.000000/13.000000:w90/0/2.000000/1.000000/4.000000/3.000000:e90/0/2.000000/1.000000/4.000000/3.000000:d270/0/2.000000/3.000000/4.000000/13.000000:n270/0/2.000000/3.000000/4.000000/13.000000:R/0/270/0,box=4.000000/2.000000/4.000000:12.000000/4.000000/12.000000:u/0/6.000000/4.000000/14.000000/12.000000:s/0/6.000000/10.000000/14.000000/12.000000:w270/0/6.000000/4.000000/8.000000/12.000000:e90/0/12.000000/4.000000/14.000000/12.000000:d/0/6.000000/4.000000/14.000000/12.000000:n180/0/6.000000/4.000000/14.000000/6.000000:R/0/270/0,box=2.000000/0.000000/2.000000:14.000000/3.000000/14.000000:u/1/2.000000/2.000000/14.000000/14.000000:s/2/2.000000/13.000000/14.000000/16.000000:w/2/2.000000/13.000000/14.000000/16.000000:e/2/2.000000/13.000000/14.000000/16.000000:d/3/2.000000/2.000000/14.000000/14.000000:n/2/2.000000/13.000000/14.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%stuffed_pumpkin_block,state=facing:west/servings:1,box=5.000000/1.000000/7.000000:15.000000/3.000000/9.000000/0.000000/0.000000/22.500000/6.000000/2.000000/8.000000:u270/0/2.000000/3.000000/4.000000/13.000000:s90/0/2.000000/3.000000/4.000000/13.000000:w90/0/2.000000/1.000000/4.000000/3.000000:e90/0/2.000000/1.000000/4.000000/3.000000:d270/0/2.000000/3.000000/4.000000/13.000000:n270/0/2.000000/3.000000/4.000000/13.000000:R/0/270/0,box=4.000000/2.000000/4.000000:12.000000/4.000000/12.000000:u/0/6.000000/4.000000/14.000000/12.000000:s/0/6.000000/10.000000/14.000000/12.000000:w270/0/6.000000/4.000000/8.000000/12.000000:e90/0/12.000000/4.000000/14.000000/12.000000:d/0/6.000000/4.000000/14.000000/12.000000:n180/0/6.000000/4.000000/14.000000/6.000000:R/0/270/0,box=2.000000/0.000000/2.000000:14.000000/3.000000/14.000000:u/1/2.000000/2.000000/14.000000/14.000000:s/2/2.000000/13.000000/14.000000/16.000000:w/2/2.000000/13.000000/14.000000/16.000000:e/2/2.000000/13.000000/14.000000/16.000000:d/3/2.000000/2.000000/14.000000/14.000000:n/2/2.000000/13.000000/14.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%stuffed_pumpkin_block,state=facing:west/servings:2,box=7.000000/3.000000/7.000000:9.000000/13.000000/9.000000/0.000000/0.000000/-45.000000/8.000000/4.000000/8.000000:u/0/2.000000/1.000000/4.000000/3.000000:s/0/2.000000/3.000000/4.000000/13.000000:w180/0/2.000000/3.000000/4.000000/13.000000:e180/0/2.000000/3.000000/4.000000/13.000000:d/0/2.000000/1.000000/4.000000/3.000000:n/0/2.000000/3.000000/4.000000/13.000000:R/0/270/0,box=4.000000/5.000000/4.000000:12.000000/7.000000/12.000000:u/0/6.000000/4.000000/14.000000/12.000000:s/0/6.000000/10.000000/14.000000/12.000000:w270/0/6.000000/4.000000/8.000000/12.000000:e90/0/12.000000/4.000000/14.000000/12.000000:d/0/6.000000/4.000000/14.000000/12.000000:n180/0/6.000000/4.000000/14.000000/6.000000:R/0/270/0,box=2.000000/0.000000/2.000000:14.000000/6.000000/14.000000:u/1/2.000000/2.000000/14.000000/14.000000:s/2/2.000000/10.000000/14.000000/16.000000:w/2/2.000000/10.000000/14.000000/16.000000:e/2/2.000000/10.000000/14.000000/16.000000:d/3/2.000000/2.000000/14.000000/14.000000:n/2/2.000000/10.000000/14.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%stuffed_pumpkin_block,state=facing:west/servings:3,box=8.000000/5.000000/7.000000:10.000000/15.000000/9.000000/0.000000/0.000000/-22.500000/9.000000/6.000000/8.000000:u/0/2.000000/1.000000/4.000000/3.000000:s/0/2.000000/3.000000/4.000000/13.000000:w180/0/2.000000/3.000000/4.000000/13.000000:e180/0/2.000000/3.000000/4.000000/13.000000:d/0/2.000000/1.000000/4.000000/3.000000:n/0/2.000000/3.000000/4.000000/13.000000:R/0/270/0,box=4.000000/7.000000/4.000000:12.000000/9.000000/12.000000:u/0/6.000000/4.000000/14.000000/12.000000:s/0/6.000000/10.000000/14.000000/12.000000:w270/0/6.000000/4.000000/8.000000/12.000000:e90/0/12.000000/4.000000/14.000000/12.000000:d/0/6.000000/4.000000/14.000000/12.000000:n180/0/6.000000/4.000000/14.000000/6.000000:R/0/270/0,box=2.000000/0.000000/2.000000:14.000000/8.000000/14.000000:u/1/2.000000/2.000000/14.000000/14.000000:s/2/2.000000/8.000000/14.000000/16.000000:w/2/2.000000/8.000000/14.000000/16.000000:e/2/2.000000/8.000000/14.000000/16.000000:d/3/2.000000/2.000000/14.000000/14.000000:n/2/2.000000/8.000000/14.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%stuffed_pumpkin_block,state=facing:west/servings:4,box=8.000000/8.000000/7.000000:10.000000/18.000000/9.000000/0.000000/0.000000/-22.500000/9.000000/9.000000/8.000000:u/0/2.000000/1.000000/4.000000/3.000000:s/0/2.000000/3.000000/4.000000/13.000000:w180/0/2.000000/3.000000/4.000000/13.000000:e180/0/2.000000/3.000000/4.000000/13.000000:d/0/2.000000/1.000000/4.000000/3.000000:n/0/2.000000/3.000000/4.000000/13.000000:R/0/270/0,box=4.000000/10.000000/4.000000:12.000000/12.000000/12.000000:u/0/6.000000/4.000000/14.000000/12.000000:s/0/6.000000/10.000000/14.000000/12.000000:w270/0/6.000000/4.000000/8.000000/12.000000:e90/0/12.000000/4.000000/14.000000/12.000000:d/0/6.000000/4.000000/14.000000/12.000000:n180/0/6.000000/4.000000/14.000000/6.000000:R/0/270/0,box=2.000000/0.000000/2.000000:14.000000/10.000000/14.000000:u/1/2.000000/2.000000/14.000000/14.000000:s/2/2.000000/6.000000/14.000000/16.000000:w/2/2.000000/6.000000/14.000000/16.000000:e/2/2.000000/6.000000/14.000000/16.000000:d/3/2.000000/2.000000/14.000000/14.000000:n/2/2.000000/6.000000/14.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%stuffed_pumpkin_block,state=facing:east/servings:0,box=5.000000/1.000000/7.000000:15.000000/3.000000/9.000000/0.000000/0.000000/22.500000/6.000000/2.000000/8.000000:u270/0/2.000000/3.000000/4.000000/13.000000:s90/0/2.000000/3.000000/4.000000/13.000000:w90/0/2.000000/1.000000/4.000000/3.000000:e90/0/2.000000/1.000000/4.000000/3.000000:d270/0/2.000000/3.000000/4.000000/13.000000:n270/0/2.000000/3.000000/4.000000/13.000000:R/0/90/0,box=4.000000/2.000000/4.000000:12.000000/4.000000/12.000000:u/0/6.000000/4.000000/14.000000/12.000000:s/0/6.000000/10.000000/14.000000/12.000000:w270/0/6.000000/4.000000/8.000000/12.000000:e90/0/12.000000/4.000000/14.000000/12.000000:d/0/6.000000/4.000000/14.000000/12.000000:n180/0/6.000000/4.000000/14.000000/6.000000:R/0/90/0,box=2.000000/0.000000/2.000000:14.000000/3.000000/14.000000:u/1/2.000000/2.000000/14.000000/14.000000:s/2/2.000000/13.000000/14.000000/16.000000:w/2/2.000000/13.000000/14.000000/16.000000:e/2/2.000000/13.000000/14.000000/16.000000:d/3/2.000000/2.000000/14.000000/14.000000:n/2/2.000000/13.000000/14.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%stuffed_pumpkin_block,state=facing:east/servings:1,box=5.000000/1.000000/7.000000:15.000000/3.000000/9.000000/0.000000/0.000000/22.500000/6.000000/2.000000/8.000000:u270/0/2.000000/3.000000/4.000000/13.000000:s90/0/2.000000/3.000000/4.000000/13.000000:w90/0/2.000000/1.000000/4.000000/3.000000:e90/0/2.000000/1.000000/4.000000/3.000000:d270/0/2.000000/3.000000/4.000000/13.000000:n270/0/2.000000/3.000000/4.000000/13.000000:R/0/90/0,box=4.000000/2.000000/4.000000:12.000000/4.000000/12.000000:u/0/6.000000/4.000000/14.000000/12.000000:s/0/6.000000/10.000000/14.000000/12.000000:w270/0/6.000000/4.000000/8.000000/12.000000:e90/0/12.000000/4.000000/14.000000/12.000000:d/0/6.000000/4.000000/14.000000/12.000000:n180/0/6.000000/4.000000/14.000000/6.000000:R/0/90/0,box=2.000000/0.000000/2.000000:14.000000/3.000000/14.000000:u/1/2.000000/2.000000/14.000000/14.000000:s/2/2.000000/13.000000/14.000000/16.000000:w/2/2.000000/13.000000/14.000000/16.000000:e/2/2.000000/13.000000/14.000000/16.000000:d/3/2.000000/2.000000/14.000000/14.000000:n/2/2.000000/13.000000/14.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%stuffed_pumpkin_block,state=facing:east/servings:2,box=7.000000/3.000000/7.000000:9.000000/13.000000/9.000000/0.000000/0.000000/-45.000000/8.000000/4.000000/8.000000:u/0/2.000000/1.000000/4.000000/3.000000:s/0/2.000000/3.000000/4.000000/13.000000:w180/0/2.000000/3.000000/4.000000/13.000000:e180/0/2.000000/3.000000/4.000000/13.000000:d/0/2.000000/1.000000/4.000000/3.000000:n/0/2.000000/3.000000/4.000000/13.000000:R/0/90/0,box=4.000000/5.000000/4.000000:12.000000/7.000000/12.000000:u/0/6.000000/4.000000/14.000000/12.000000:s/0/6.000000/10.000000/14.000000/12.000000:w270/0/6.000000/4.000000/8.000000/12.000000:e90/0/12.000000/4.000000/14.000000/12.000000:d/0/6.000000/4.000000/14.000000/12.000000:n180/0/6.000000/4.000000/14.000000/6.000000:R/0/90/0,box=2.000000/0.000000/2.000000:14.000000/6.000000/14.000000:u/1/2.000000/2.000000/14.000000/14.000000:s/2/2.000000/10.000000/14.000000/16.000000:w/2/2.000000/10.000000/14.000000/16.000000:e/2/2.000000/10.000000/14.000000/16.000000:d/3/2.000000/2.000000/14.000000/14.000000:n/2/2.000000/10.000000/14.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%stuffed_pumpkin_block,state=facing:east/servings:3,box=8.000000/5.000000/7.000000:10.000000/15.000000/9.000000/0.000000/0.000000/-22.500000/9.000000/6.000000/8.000000:u/0/2.000000/1.000000/4.000000/3.000000:s/0/2.000000/3.000000/4.000000/13.000000:w180/0/2.000000/3.000000/4.000000/13.000000:e180/0/2.000000/3.000000/4.000000/13.000000:d/0/2.000000/1.000000/4.000000/3.000000:n/0/2.000000/3.000000/4.000000/13.000000:R/0/90/0,box=4.000000/7.000000/4.000000:12.000000/9.000000/12.000000:u/0/6.000000/4.000000/14.000000/12.000000:s/0/6.000000/10.000000/14.000000/12.000000:w270/0/6.000000/4.000000/8.000000/12.000000:e90/0/12.000000/4.000000/14.000000/12.000000:d/0/6.000000/4.000000/14.000000/12.000000:n180/0/6.000000/4.000000/14.000000/6.000000:R/0/90/0,box=2.000000/0.000000/2.000000:14.000000/8.000000/14.000000:u/1/2.000000/2.000000/14.000000/14.000000:s/2/2.000000/8.000000/14.000000/16.000000:w/2/2.000000/8.000000/14.000000/16.000000:e/2/2.000000/8.000000/14.000000/16.000000:d/3/2.000000/2.000000/14.000000/14.000000:n/2/2.000000/8.000000/14.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%stuffed_pumpkin_block,state=facing:east/servings:4,box=8.000000/8.000000/7.000000:10.000000/18.000000/9.000000/0.000000/0.000000/-22.500000/9.000000/9.000000/8.000000:u/0/2.000000/1.000000/4.000000/3.000000:s/0/2.000000/3.000000/4.000000/13.000000:w180/0/2.000000/3.000000/4.000000/13.000000:e180/0/2.000000/3.000000/4.000000/13.000000:d/0/2.000000/1.000000/4.000000/3.000000:n/0/2.000000/3.000000/4.000000/13.000000:R/0/90/0,box=4.000000/10.000000/4.000000:12.000000/12.000000/12.000000:u/0/6.000000/4.000000/14.000000/12.000000:s/0/6.000000/10.000000/14.000000/12.000000:w270/0/6.000000/4.000000/8.000000/12.000000:e90/0/12.000000/4.000000/14.000000/12.000000:d/0/6.000000/4.000000/14.000000/12.000000:n180/0/6.000000/4.000000/14.000000/6.000000:R/0/90/0,box=2.000000/0.000000/2.000000:14.000000/10.000000/14.000000:u/1/2.000000/2.000000/14.000000/14.000000:s/2/2.000000/6.000000/14.000000/16.000000:w/2/2.000000/6.000000/14.000000/16.000000:e/2/2.000000/6.000000/14.000000/16.000000:d/3/2.000000/2.000000/14.000000/14.000000:n/2/2.000000/6.000000/14.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%honey_glazed_ham_block,state=facing:north/servings:0,box=1.000000/0.000000/1.000000:15.000000/2.000000/15.000000:u/0/1.000000/1.000000/15.000000/15.000000:s/1/1.000000/11.000000/15.000000/13.000000:w/1/1.000000/11.000000/15.000000/13.000000:e/1/1.000000/11.000000/15.000000/13.000000:d/1/1.000000/1.000000/15.000000/15.000000:n/1/1.000000/11.000000/15.000000/13.000000,box=7.000000/2.000000/6.000000:9.000000/4.000000/12.000000:u/2/7.000000/2.000000/9.000000/8.000000:s/2/0.000000/0.000000/2.000000/2.000000:w/2/9.000000/0.000000/15.000000/2.000000:e/2/15.000000/0.000000/9.000000/2.000000:d/2/7.000000/8.000000/9.000000/2.000000:n/2/0.000000/0.000000/2.000000/2.000000
|
|
||||||
modellist:id=%honey_glazed_ham_block,state=facing:north/servings:1,box=1.000000/0.000000/1.000000:15.000000/2.000000/15.000000:u/0/1.000000/1.000000/15.000000/15.000000:s/1/1.000000/11.000000/15.000000/13.000000:w/1/1.000000/11.000000/15.000000/13.000000:e/1/1.000000/11.000000/15.000000/13.000000:d/1/1.000000/1.000000/15.000000/15.000000:n/1/1.000000/11.000000/15.000000/13.000000,box=4.000000/2.000000/4.000000:12.000000/4.000000/12.000000:u/2/8.000000/8.000000/16.000000/16.000000:s/2/8.000000/13.000000/16.000000/15.000000:w270/2/6.000000/8.000000/8.000000/16.000000:e90/2/8.000000/8.000000/6.000000/16.000000:n180/2/8.000000/6.000000/16.000000/8.000000,box=7.000000/4.000000/7.000000:9.000000/8.000000/9.000000:u/3/0.000000/0.000000/2.000000/2.000000:s/3/0.000000/6.000000/2.000000/2.000000:w270/3/2.000000/0.000000/6.000000/2.000000:e90/3/6.000000/0.000000/2.000000/2.000000:d180/3/0.000000/0.000000/2.000000/2.000000:n180/3/0.000000/2.000000/2.000000/6.000000
|
|
||||||
modellist:id=%honey_glazed_ham_block,state=facing:north/servings:2,box=1.000000/0.000000/1.000000:15.000000/2.000000/15.000000:u/0/1.000000/1.000000/15.000000/15.000000:s/1/1.000000/11.000000/15.000000/13.000000:w/1/1.000000/11.000000/15.000000/13.000000:e/1/1.000000/11.000000/15.000000/13.000000:d/1/1.000000/1.000000/15.000000/15.000000:n/1/1.000000/11.000000/15.000000/13.000000,box=4.000000/2.000000/8.000000:12.000000/10.000000/12.000000:u/2/8.000000/4.000000/16.000000/8.000000:s/2/8.000000/8.000000/16.000000/16.000000:w/2/4.000000/8.000000/8.000000/16.000000:e/2/8.000000/8.000000/4.000000/16.000000:n/2/0.000000/0.000000/8.000000/8.000000,box=7.000000/5.000000/12.000000:9.000000/7.000000/16.000000:u/3/0.000000/2.000000/2.000000/6.000000:s/3/0.000000/0.000000/2.000000/2.000000:w/3/2.000000/0.000000/6.000000/2.000000:e/3/6.000000/0.000000/2.000000/2.000000:d/3/0.000000/6.000000/2.000000/2.000000:n/3/0.000000/0.000000/2.000000/2.000000
|
|
||||||
modellist:id=%honey_glazed_ham_block,state=facing:north/servings:3,box=1.000000/0.000000/1.000000:15.000000/2.000000/15.000000:u/0/1.000000/1.000000/15.000000/15.000000:s/1/1.000000/11.000000/15.000000/13.000000:w/1/1.000000/11.000000/15.000000/13.000000:e/1/1.000000/11.000000/15.000000/13.000000:d/1/1.000000/1.000000/15.000000/15.000000:n/1/1.000000/11.000000/15.000000/13.000000,box=4.000000/2.000000/6.000000:12.000000/10.000000/12.000000:u/2/8.000000/2.000000/16.000000/8.000000:s/2/8.000000/8.000000/16.000000/16.000000:w/2/2.000000/8.000000/8.000000/16.000000:e/2/8.000000/8.000000/2.000000/16.000000:n/2/0.000000/0.000000/8.000000/8.000000,box=7.000000/5.000000/12.000000:9.000000/7.000000/16.000000:u/3/0.000000/2.000000/2.000000/6.000000:s/3/0.000000/0.000000/2.000000/2.000000:w/3/2.000000/0.000000/6.000000/2.000000:e/3/6.000000/0.000000/2.000000/2.000000:d/3/0.000000/6.000000/2.000000/2.000000:n/3/0.000000/0.000000/2.000000/2.000000
|
|
||||||
modellist:id=%honey_glazed_ham_block,state=facing:north/servings:4,box=1.000000/0.000000/1.000000:15.000000/2.000000/15.000000:u/0/1.000000/1.000000/15.000000/15.000000:s/1/1.000000/11.000000/15.000000/13.000000:w/1/1.000000/11.000000/15.000000/13.000000:e/1/1.000000/11.000000/15.000000/13.000000:d/1/1.000000/1.000000/15.000000/15.000000:n/1/1.000000/11.000000/15.000000/13.000000,box=4.000000/2.000000/4.000000:12.000000/10.000000/12.000000:u/2/8.000000/0.000000/16.000000/8.000000:s/2/8.000000/8.000000/16.000000/16.000000:w/2/0.000000/8.000000/8.000000/16.000000:e/2/8.000000/8.000000/0.000000/16.000000:n/2/0.000000/0.000000/8.000000/8.000000,box=7.000000/5.000000/12.000000:9.000000/7.000000/16.000000:u/3/0.000000/2.000000/2.000000/6.000000:s/3/0.000000/0.000000/2.000000/2.000000:w/3/2.000000/0.000000/6.000000/2.000000:e/3/6.000000/0.000000/2.000000/2.000000:d/3/0.000000/6.000000/2.000000/2.000000:n/3/0.000000/0.000000/2.000000/2.000000
|
|
||||||
modellist:id=%honey_glazed_ham_block,state=facing:south/servings:0,box=1.000000/0.000000/1.000000:15.000000/2.000000/15.000000:u/0/1.000000/1.000000/15.000000/15.000000:s/1/1.000000/11.000000/15.000000/13.000000:w/1/1.000000/11.000000/15.000000/13.000000:e/1/1.000000/11.000000/15.000000/13.000000:d/1/1.000000/1.000000/15.000000/15.000000:n/1/1.000000/11.000000/15.000000/13.000000:R/0/180/0,box=7.000000/2.000000/6.000000:9.000000/4.000000/12.000000:u/2/7.000000/2.000000/9.000000/8.000000:s/2/0.000000/0.000000/2.000000/2.000000:w/2/9.000000/0.000000/15.000000/2.000000:e/2/15.000000/0.000000/9.000000/2.000000:d/2/7.000000/8.000000/9.000000/2.000000:n/2/0.000000/0.000000/2.000000/2.000000:R/0/180/0
|
|
||||||
modellist:id=%honey_glazed_ham_block,state=facing:south/servings:1,box=1.000000/0.000000/1.000000:15.000000/2.000000/15.000000:u/0/1.000000/1.000000/15.000000/15.000000:s/1/1.000000/11.000000/15.000000/13.000000:w/1/1.000000/11.000000/15.000000/13.000000:e/1/1.000000/11.000000/15.000000/13.000000:d/1/1.000000/1.000000/15.000000/15.000000:n/1/1.000000/11.000000/15.000000/13.000000:R/0/180/0,box=4.000000/2.000000/4.000000:12.000000/4.000000/12.000000:u/2/8.000000/8.000000/16.000000/16.000000:s/2/8.000000/13.000000/16.000000/15.000000:w270/2/6.000000/8.000000/8.000000/16.000000:e90/2/8.000000/8.000000/6.000000/16.000000:n180/2/8.000000/6.000000/16.000000/8.000000:R/0/180/0,box=7.000000/4.000000/7.000000:9.000000/8.000000/9.000000:u/3/0.000000/0.000000/2.000000/2.000000:s/3/0.000000/6.000000/2.000000/2.000000:w270/3/2.000000/0.000000/6.000000/2.000000:e90/3/6.000000/0.000000/2.000000/2.000000:d180/3/0.000000/0.000000/2.000000/2.000000:n180/3/0.000000/2.000000/2.000000/6.000000:R/0/180/0
|
|
||||||
modellist:id=%honey_glazed_ham_block,state=facing:south/servings:2,box=1.000000/0.000000/1.000000:15.000000/2.000000/15.000000:u/0/1.000000/1.000000/15.000000/15.000000:s/1/1.000000/11.000000/15.000000/13.000000:w/1/1.000000/11.000000/15.000000/13.000000:e/1/1.000000/11.000000/15.000000/13.000000:d/1/1.000000/1.000000/15.000000/15.000000:n/1/1.000000/11.000000/15.000000/13.000000:R/0/180/0,box=4.000000/2.000000/8.000000:12.000000/10.000000/12.000000:u/2/8.000000/4.000000/16.000000/8.000000:s/2/8.000000/8.000000/16.000000/16.000000:w/2/4.000000/8.000000/8.000000/16.000000:e/2/8.000000/8.000000/4.000000/16.000000:n/2/0.000000/0.000000/8.000000/8.000000:R/0/180/0,box=7.000000/5.000000/12.000000:9.000000/7.000000/16.000000:u/3/0.000000/2.000000/2.000000/6.000000:s/3/0.000000/0.000000/2.000000/2.000000:w/3/2.000000/0.000000/6.000000/2.000000:e/3/6.000000/0.000000/2.000000/2.000000:d/3/0.000000/6.000000/2.000000/2.000000:n/3/0.000000/0.000000/2.000000/2.000000:R/0/180/0
|
|
||||||
modellist:id=%honey_glazed_ham_block,state=facing:south/servings:3,box=1.000000/0.000000/1.000000:15.000000/2.000000/15.000000:u/0/1.000000/1.000000/15.000000/15.000000:s/1/1.000000/11.000000/15.000000/13.000000:w/1/1.000000/11.000000/15.000000/13.000000:e/1/1.000000/11.000000/15.000000/13.000000:d/1/1.000000/1.000000/15.000000/15.000000:n/1/1.000000/11.000000/15.000000/13.000000:R/0/180/0,box=4.000000/2.000000/6.000000:12.000000/10.000000/12.000000:u/2/8.000000/2.000000/16.000000/8.000000:s/2/8.000000/8.000000/16.000000/16.000000:w/2/2.000000/8.000000/8.000000/16.000000:e/2/8.000000/8.000000/2.000000/16.000000:n/2/0.000000/0.000000/8.000000/8.000000:R/0/180/0,box=7.000000/5.000000/12.000000:9.000000/7.000000/16.000000:u/3/0.000000/2.000000/2.000000/6.000000:s/3/0.000000/0.000000/2.000000/2.000000:w/3/2.000000/0.000000/6.000000/2.000000:e/3/6.000000/0.000000/2.000000/2.000000:d/3/0.000000/6.000000/2.000000/2.000000:n/3/0.000000/0.000000/2.000000/2.000000:R/0/180/0
|
|
||||||
modellist:id=%honey_glazed_ham_block,state=facing:south/servings:4,box=1.000000/0.000000/1.000000:15.000000/2.000000/15.000000:u/0/1.000000/1.000000/15.000000/15.000000:s/1/1.000000/11.000000/15.000000/13.000000:w/1/1.000000/11.000000/15.000000/13.000000:e/1/1.000000/11.000000/15.000000/13.000000:d/1/1.000000/1.000000/15.000000/15.000000:n/1/1.000000/11.000000/15.000000/13.000000:R/0/180/0,box=4.000000/2.000000/4.000000:12.000000/10.000000/12.000000:u/2/8.000000/0.000000/16.000000/8.000000:s/2/8.000000/8.000000/16.000000/16.000000:w/2/0.000000/8.000000/8.000000/16.000000:e/2/8.000000/8.000000/0.000000/16.000000:n/2/0.000000/0.000000/8.000000/8.000000:R/0/180/0,box=7.000000/5.000000/12.000000:9.000000/7.000000/16.000000:u/3/0.000000/2.000000/2.000000/6.000000:s/3/0.000000/0.000000/2.000000/2.000000:w/3/2.000000/0.000000/6.000000/2.000000:e/3/6.000000/0.000000/2.000000/2.000000:d/3/0.000000/6.000000/2.000000/2.000000:n/3/0.000000/0.000000/2.000000/2.000000:R/0/180/0
|
|
||||||
modellist:id=%honey_glazed_ham_block,state=facing:west/servings:0,box=1.000000/0.000000/1.000000:15.000000/2.000000/15.000000:u/0/1.000000/1.000000/15.000000/15.000000:s/1/1.000000/11.000000/15.000000/13.000000:w/1/1.000000/11.000000/15.000000/13.000000:e/1/1.000000/11.000000/15.000000/13.000000:d/1/1.000000/1.000000/15.000000/15.000000:n/1/1.000000/11.000000/15.000000/13.000000:R/0/270/0,box=7.000000/2.000000/6.000000:9.000000/4.000000/12.000000:u/2/7.000000/2.000000/9.000000/8.000000:s/2/0.000000/0.000000/2.000000/2.000000:w/2/9.000000/0.000000/15.000000/2.000000:e/2/15.000000/0.000000/9.000000/2.000000:d/2/7.000000/8.000000/9.000000/2.000000:n/2/0.000000/0.000000/2.000000/2.000000:R/0/270/0
|
|
||||||
modellist:id=%honey_glazed_ham_block,state=facing:west/servings:1,box=1.000000/0.000000/1.000000:15.000000/2.000000/15.000000:u/0/1.000000/1.000000/15.000000/15.000000:s/1/1.000000/11.000000/15.000000/13.000000:w/1/1.000000/11.000000/15.000000/13.000000:e/1/1.000000/11.000000/15.000000/13.000000:d/1/1.000000/1.000000/15.000000/15.000000:n/1/1.000000/11.000000/15.000000/13.000000:R/0/270/0,box=4.000000/2.000000/4.000000:12.000000/4.000000/12.000000:u/2/8.000000/8.000000/16.000000/16.000000:s/2/8.000000/13.000000/16.000000/15.000000:w270/2/6.000000/8.000000/8.000000/16.000000:e90/2/8.000000/8.000000/6.000000/16.000000:n180/2/8.000000/6.000000/16.000000/8.000000:R/0/270/0,box=7.000000/4.000000/7.000000:9.000000/8.000000/9.000000:u/3/0.000000/0.000000/2.000000/2.000000:s/3/0.000000/6.000000/2.000000/2.000000:w270/3/2.000000/0.000000/6.000000/2.000000:e90/3/6.000000/0.000000/2.000000/2.000000:d180/3/0.000000/0.000000/2.000000/2.000000:n180/3/0.000000/2.000000/2.000000/6.000000:R/0/270/0
|
|
||||||
modellist:id=%honey_glazed_ham_block,state=facing:west/servings:2,box=1.000000/0.000000/1.000000:15.000000/2.000000/15.000000:u/0/1.000000/1.000000/15.000000/15.000000:s/1/1.000000/11.000000/15.000000/13.000000:w/1/1.000000/11.000000/15.000000/13.000000:e/1/1.000000/11.000000/15.000000/13.000000:d/1/1.000000/1.000000/15.000000/15.000000:n/1/1.000000/11.000000/15.000000/13.000000:R/0/270/0,box=4.000000/2.000000/8.000000:12.000000/10.000000/12.000000:u/2/8.000000/4.000000/16.000000/8.000000:s/2/8.000000/8.000000/16.000000/16.000000:w/2/4.000000/8.000000/8.000000/16.000000:e/2/8.000000/8.000000/4.000000/16.000000:n/2/0.000000/0.000000/8.000000/8.000000:R/0/270/0,box=7.000000/5.000000/12.000000:9.000000/7.000000/16.000000:u/3/0.000000/2.000000/2.000000/6.000000:s/3/0.000000/0.000000/2.000000/2.000000:w/3/2.000000/0.000000/6.000000/2.000000:e/3/6.000000/0.000000/2.000000/2.000000:d/3/0.000000/6.000000/2.000000/2.000000:n/3/0.000000/0.000000/2.000000/2.000000:R/0/270/0
|
|
||||||
modellist:id=%honey_glazed_ham_block,state=facing:west/servings:3,box=1.000000/0.000000/1.000000:15.000000/2.000000/15.000000:u/0/1.000000/1.000000/15.000000/15.000000:s/1/1.000000/11.000000/15.000000/13.000000:w/1/1.000000/11.000000/15.000000/13.000000:e/1/1.000000/11.000000/15.000000/13.000000:d/1/1.000000/1.000000/15.000000/15.000000:n/1/1.000000/11.000000/15.000000/13.000000:R/0/270/0,box=4.000000/2.000000/6.000000:12.000000/10.000000/12.000000:u/2/8.000000/2.000000/16.000000/8.000000:s/2/8.000000/8.000000/16.000000/16.000000:w/2/2.000000/8.000000/8.000000/16.000000:e/2/8.000000/8.000000/2.000000/16.000000:n/2/0.000000/0.000000/8.000000/8.000000:R/0/270/0,box=7.000000/5.000000/12.000000:9.000000/7.000000/16.000000:u/3/0.000000/2.000000/2.000000/6.000000:s/3/0.000000/0.000000/2.000000/2.000000:w/3/2.000000/0.000000/6.000000/2.000000:e/3/6.000000/0.000000/2.000000/2.000000:d/3/0.000000/6.000000/2.000000/2.000000:n/3/0.000000/0.000000/2.000000/2.000000:R/0/270/0
|
|
||||||
modellist:id=%honey_glazed_ham_block,state=facing:west/servings:4,box=1.000000/0.000000/1.000000:15.000000/2.000000/15.000000:u/0/1.000000/1.000000/15.000000/15.000000:s/1/1.000000/11.000000/15.000000/13.000000:w/1/1.000000/11.000000/15.000000/13.000000:e/1/1.000000/11.000000/15.000000/13.000000:d/1/1.000000/1.000000/15.000000/15.000000:n/1/1.000000/11.000000/15.000000/13.000000:R/0/270/0,box=4.000000/2.000000/4.000000:12.000000/10.000000/12.000000:u/2/8.000000/0.000000/16.000000/8.000000:s/2/8.000000/8.000000/16.000000/16.000000:w/2/0.000000/8.000000/8.000000/16.000000:e/2/8.000000/8.000000/0.000000/16.000000:n/2/0.000000/0.000000/8.000000/8.000000:R/0/270/0,box=7.000000/5.000000/12.000000:9.000000/7.000000/16.000000:u/3/0.000000/2.000000/2.000000/6.000000:s/3/0.000000/0.000000/2.000000/2.000000:w/3/2.000000/0.000000/6.000000/2.000000:e/3/6.000000/0.000000/2.000000/2.000000:d/3/0.000000/6.000000/2.000000/2.000000:n/3/0.000000/0.000000/2.000000/2.000000:R/0/270/0
|
|
||||||
modellist:id=%honey_glazed_ham_block,state=facing:east/servings:0,box=1.000000/0.000000/1.000000:15.000000/2.000000/15.000000:u/0/1.000000/1.000000/15.000000/15.000000:s/1/1.000000/11.000000/15.000000/13.000000:w/1/1.000000/11.000000/15.000000/13.000000:e/1/1.000000/11.000000/15.000000/13.000000:d/1/1.000000/1.000000/15.000000/15.000000:n/1/1.000000/11.000000/15.000000/13.000000:R/0/90/0,box=7.000000/2.000000/6.000000:9.000000/4.000000/12.000000:u/2/7.000000/2.000000/9.000000/8.000000:s/2/0.000000/0.000000/2.000000/2.000000:w/2/9.000000/0.000000/15.000000/2.000000:e/2/15.000000/0.000000/9.000000/2.000000:d/2/7.000000/8.000000/9.000000/2.000000:n/2/0.000000/0.000000/2.000000/2.000000:R/0/90/0
|
|
||||||
modellist:id=%honey_glazed_ham_block,state=facing:east/servings:1,box=1.000000/0.000000/1.000000:15.000000/2.000000/15.000000:u/0/1.000000/1.000000/15.000000/15.000000:s/1/1.000000/11.000000/15.000000/13.000000:w/1/1.000000/11.000000/15.000000/13.000000:e/1/1.000000/11.000000/15.000000/13.000000:d/1/1.000000/1.000000/15.000000/15.000000:n/1/1.000000/11.000000/15.000000/13.000000:R/0/90/0,box=4.000000/2.000000/4.000000:12.000000/4.000000/12.000000:u/2/8.000000/8.000000/16.000000/16.000000:s/2/8.000000/13.000000/16.000000/15.000000:w270/2/6.000000/8.000000/8.000000/16.000000:e90/2/8.000000/8.000000/6.000000/16.000000:n180/2/8.000000/6.000000/16.000000/8.000000:R/0/90/0,box=7.000000/4.000000/7.000000:9.000000/8.000000/9.000000:u/3/0.000000/0.000000/2.000000/2.000000:s/3/0.000000/6.000000/2.000000/2.000000:w270/3/2.000000/0.000000/6.000000/2.000000:e90/3/6.000000/0.000000/2.000000/2.000000:d180/3/0.000000/0.000000/2.000000/2.000000:n180/3/0.000000/2.000000/2.000000/6.000000:R/0/90/0
|
|
||||||
modellist:id=%honey_glazed_ham_block,state=facing:east/servings:2,box=1.000000/0.000000/1.000000:15.000000/2.000000/15.000000:u/0/1.000000/1.000000/15.000000/15.000000:s/1/1.000000/11.000000/15.000000/13.000000:w/1/1.000000/11.000000/15.000000/13.000000:e/1/1.000000/11.000000/15.000000/13.000000:d/1/1.000000/1.000000/15.000000/15.000000:n/1/1.000000/11.000000/15.000000/13.000000:R/0/90/0,box=4.000000/2.000000/8.000000:12.000000/10.000000/12.000000:u/2/8.000000/4.000000/16.000000/8.000000:s/2/8.000000/8.000000/16.000000/16.000000:w/2/4.000000/8.000000/8.000000/16.000000:e/2/8.000000/8.000000/4.000000/16.000000:n/2/0.000000/0.000000/8.000000/8.000000:R/0/90/0,box=7.000000/5.000000/12.000000:9.000000/7.000000/16.000000:u/3/0.000000/2.000000/2.000000/6.000000:s/3/0.000000/0.000000/2.000000/2.000000:w/3/2.000000/0.000000/6.000000/2.000000:e/3/6.000000/0.000000/2.000000/2.000000:d/3/0.000000/6.000000/2.000000/2.000000:n/3/0.000000/0.000000/2.000000/2.000000:R/0/90/0
|
|
||||||
modellist:id=%honey_glazed_ham_block,state=facing:east/servings:3,box=1.000000/0.000000/1.000000:15.000000/2.000000/15.000000:u/0/1.000000/1.000000/15.000000/15.000000:s/1/1.000000/11.000000/15.000000/13.000000:w/1/1.000000/11.000000/15.000000/13.000000:e/1/1.000000/11.000000/15.000000/13.000000:d/1/1.000000/1.000000/15.000000/15.000000:n/1/1.000000/11.000000/15.000000/13.000000:R/0/90/0,box=4.000000/2.000000/6.000000:12.000000/10.000000/12.000000:u/2/8.000000/2.000000/16.000000/8.000000:s/2/8.000000/8.000000/16.000000/16.000000:w/2/2.000000/8.000000/8.000000/16.000000:e/2/8.000000/8.000000/2.000000/16.000000:n/2/0.000000/0.000000/8.000000/8.000000:R/0/90/0,box=7.000000/5.000000/12.000000:9.000000/7.000000/16.000000:u/3/0.000000/2.000000/2.000000/6.000000:s/3/0.000000/0.000000/2.000000/2.000000:w/3/2.000000/0.000000/6.000000/2.000000:e/3/6.000000/0.000000/2.000000/2.000000:d/3/0.000000/6.000000/2.000000/2.000000:n/3/0.000000/0.000000/2.000000/2.000000:R/0/90/0
|
|
||||||
modellist:id=%honey_glazed_ham_block,state=facing:east/servings:4,box=1.000000/0.000000/1.000000:15.000000/2.000000/15.000000:u/0/1.000000/1.000000/15.000000/15.000000:s/1/1.000000/11.000000/15.000000/13.000000:w/1/1.000000/11.000000/15.000000/13.000000:e/1/1.000000/11.000000/15.000000/13.000000:d/1/1.000000/1.000000/15.000000/15.000000:n/1/1.000000/11.000000/15.000000/13.000000:R/0/90/0,box=4.000000/2.000000/4.000000:12.000000/10.000000/12.000000:u/2/8.000000/0.000000/16.000000/8.000000:s/2/8.000000/8.000000/16.000000/16.000000:w/2/0.000000/8.000000/8.000000/16.000000:e/2/8.000000/8.000000/0.000000/16.000000:n/2/0.000000/0.000000/8.000000/8.000000:R/0/90/0,box=7.000000/5.000000/12.000000:9.000000/7.000000/16.000000:u/3/0.000000/2.000000/2.000000/6.000000:s/3/0.000000/0.000000/2.000000/2.000000:w/3/2.000000/0.000000/6.000000/2.000000:e/3/6.000000/0.000000/2.000000/2.000000:d/3/0.000000/6.000000/2.000000/2.000000:n/3/0.000000/0.000000/2.000000/2.000000:R/0/90/0
|
|
||||||
modellist:id=%shepherds_pie_block,state=facing:north/servings:0,box=1.000000/0.000000/1.000000:15.000000/2.000000/15.000000:u/0/1.000000/1.000000/15.000000/15.000000:s/1/1.000000/11.000000/15.000000/13.000000:w/1/1.000000/11.000000/15.000000/13.000000:e/1/1.000000/11.000000/15.000000/13.000000:d/1/1.000000/1.000000/15.000000/15.000000:n/1/1.000000/11.000000/15.000000/13.000000
|
|
||||||
modellist:id=%shepherds_pie_block,state=facing:north/servings:1,box=1.000000/0.000000/1.000000:15.000000/2.000000/15.000000:u/0/1.000000/1.000000/15.000000/15.000000:s/1/1.000000/11.000000/15.000000/13.000000:w/1/1.000000/11.000000/15.000000/13.000000:e/1/1.000000/11.000000/15.000000/13.000000:d/1/1.000000/1.000000/15.000000/15.000000:n/1/1.000000/11.000000/15.000000/13.000000,box=2.000000/2.000000/8.000000:8.000000/8.000000/14.000000:u/2/2.000000/8.000000/8.000000/14.000000:s/4/2.000000/10.000000/8.000000/16.000000:w/4/8.000000/10.000000/14.000000/16.000000:e/3/2.000000/10.000000/8.000000/16.000000:n/3/8.000000/10.000000/14.000000/16.000000
|
|
||||||
modellist:id=%shepherds_pie_block,state=facing:north/servings:2,box=1.000000/0.000000/1.000000:15.000000/2.000000/15.000000:u/0/1.000000/1.000000/15.000000/15.000000:s/1/1.000000/11.000000/15.000000/13.000000:w/1/1.000000/11.000000/15.000000/13.000000:e/1/1.000000/11.000000/15.000000/13.000000:d/1/1.000000/1.000000/15.000000/15.000000:n/1/1.000000/11.000000/15.000000/13.000000,box=2.000000/2.000000/8.000000:14.000000/8.000000/14.000000:u/2/2.000000/8.000000/14.000000/14.000000:s/3/2.000000/10.000000/14.000000/16.000000:w/3/8.000000/10.000000/14.000000/16.000000:e/3/2.000000/10.000000/8.000000/16.000000:n/4/2.000000/10.000000/14.000000/16.000000
|
|
||||||
modellist:id=%shepherds_pie_block,state=facing:north/servings:3,box=1.000000/0.000000/1.000000:15.000000/2.000000/15.000000:u/0/1.000000/1.000000/15.000000/15.000000:s/1/1.000000/11.000000/15.000000/13.000000:w/1/1.000000/11.000000/15.000000/13.000000:e/1/1.000000/11.000000/15.000000/13.000000:d/1/1.000000/1.000000/15.000000/15.000000:n/1/1.000000/11.000000/15.000000/13.000000,box=8.000000/2.000000/2.000000:14.000000/8.000000/8.000000:u/2/8.000000/2.000000/14.000000/8.000000:s/3/2.000000/10.000000/14.000000/16.000000:w/4/2.000000/10.000000/8.000000/16.000000:e/3/8.000000/10.000000/14.000000/16.000000:n/3/2.000000/10.000000/8.000000/16.000000,box=2.000000/2.000000/8.000000:14.000000/8.000000/14.000000:u/2/2.000000/8.000000/14.000000/14.000000:s/3/2.000000/10.000000/14.000000/16.000000:w/3/8.000000/10.000000/14.000000/16.000000:e/3/2.000000/10.000000/8.000000/16.000000:n/4/2.000000/10.000000/14.000000/16.000000
|
|
||||||
modellist:id=%shepherds_pie_block,state=facing:north/servings:4,box=1.000000/0.000000/1.000000:15.000000/2.000000/15.000000:u/0/1.000000/1.000000/15.000000/15.000000:s/1/1.000000/11.000000/15.000000/13.000000:w/1/1.000000/11.000000/15.000000/13.000000:e/1/1.000000/11.000000/15.000000/13.000000:d/1/1.000000/1.000000/15.000000/15.000000:n/1/1.000000/11.000000/15.000000/13.000000,box=2.000000/2.000000/2.000000:14.000000/8.000000/14.000000:u/2/2.000000/2.000000/14.000000/14.000000:s/3/2.000000/10.000000/14.000000/16.000000:w/3/2.000000/10.000000/14.000000/16.000000:e/3/2.000000/10.000000/14.000000/16.000000:n/3/2.000000/10.000000/14.000000/16.000000
|
|
||||||
modellist:id=%shepherds_pie_block,state=facing:south/servings:0,box=1.000000/0.000000/1.000000:15.000000/2.000000/15.000000:u/0/1.000000/1.000000/15.000000/15.000000:s/1/1.000000/11.000000/15.000000/13.000000:w/1/1.000000/11.000000/15.000000/13.000000:e/1/1.000000/11.000000/15.000000/13.000000:d/1/1.000000/1.000000/15.000000/15.000000:n/1/1.000000/11.000000/15.000000/13.000000:R/0/180/0
|
|
||||||
modellist:id=%shepherds_pie_block,state=facing:south/servings:1,box=1.000000/0.000000/1.000000:15.000000/2.000000/15.000000:u/0/1.000000/1.000000/15.000000/15.000000:s/1/1.000000/11.000000/15.000000/13.000000:w/1/1.000000/11.000000/15.000000/13.000000:e/1/1.000000/11.000000/15.000000/13.000000:d/1/1.000000/1.000000/15.000000/15.000000:n/1/1.000000/11.000000/15.000000/13.000000:R/0/180/0,box=2.000000/2.000000/8.000000:8.000000/8.000000/14.000000:u/2/2.000000/8.000000/8.000000/14.000000:s/4/2.000000/10.000000/8.000000/16.000000:w/4/8.000000/10.000000/14.000000/16.000000:e/3/2.000000/10.000000/8.000000/16.000000:n/3/8.000000/10.000000/14.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%shepherds_pie_block,state=facing:south/servings:2,box=1.000000/0.000000/1.000000:15.000000/2.000000/15.000000:u/0/1.000000/1.000000/15.000000/15.000000:s/1/1.000000/11.000000/15.000000/13.000000:w/1/1.000000/11.000000/15.000000/13.000000:e/1/1.000000/11.000000/15.000000/13.000000:d/1/1.000000/1.000000/15.000000/15.000000:n/1/1.000000/11.000000/15.000000/13.000000:R/0/180/0,box=2.000000/2.000000/8.000000:14.000000/8.000000/14.000000:u/2/2.000000/8.000000/14.000000/14.000000:s/3/2.000000/10.000000/14.000000/16.000000:w/3/8.000000/10.000000/14.000000/16.000000:e/3/2.000000/10.000000/8.000000/16.000000:n/4/2.000000/10.000000/14.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%shepherds_pie_block,state=facing:south/servings:3,box=1.000000/0.000000/1.000000:15.000000/2.000000/15.000000:u/0/1.000000/1.000000/15.000000/15.000000:s/1/1.000000/11.000000/15.000000/13.000000:w/1/1.000000/11.000000/15.000000/13.000000:e/1/1.000000/11.000000/15.000000/13.000000:d/1/1.000000/1.000000/15.000000/15.000000:n/1/1.000000/11.000000/15.000000/13.000000:R/0/180/0,box=8.000000/2.000000/2.000000:14.000000/8.000000/8.000000:u/2/8.000000/2.000000/14.000000/8.000000:s/3/2.000000/10.000000/14.000000/16.000000:w/4/2.000000/10.000000/8.000000/16.000000:e/3/8.000000/10.000000/14.000000/16.000000:n/3/2.000000/10.000000/8.000000/16.000000:R/0/180/0,box=2.000000/2.000000/8.000000:14.000000/8.000000/14.000000:u/2/2.000000/8.000000/14.000000/14.000000:s/3/2.000000/10.000000/14.000000/16.000000:w/3/8.000000/10.000000/14.000000/16.000000:e/3/2.000000/10.000000/8.000000/16.000000:n/4/2.000000/10.000000/14.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%shepherds_pie_block,state=facing:south/servings:4,box=1.000000/0.000000/1.000000:15.000000/2.000000/15.000000:u/0/1.000000/1.000000/15.000000/15.000000:s/1/1.000000/11.000000/15.000000/13.000000:w/1/1.000000/11.000000/15.000000/13.000000:e/1/1.000000/11.000000/15.000000/13.000000:d/1/1.000000/1.000000/15.000000/15.000000:n/1/1.000000/11.000000/15.000000/13.000000:R/0/180/0,box=2.000000/2.000000/2.000000:14.000000/8.000000/14.000000:u/2/2.000000/2.000000/14.000000/14.000000:s/3/2.000000/10.000000/14.000000/16.000000:w/3/2.000000/10.000000/14.000000/16.000000:e/3/2.000000/10.000000/14.000000/16.000000:n/3/2.000000/10.000000/14.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%shepherds_pie_block,state=facing:west/servings:0,box=1.000000/0.000000/1.000000:15.000000/2.000000/15.000000:u/0/1.000000/1.000000/15.000000/15.000000:s/1/1.000000/11.000000/15.000000/13.000000:w/1/1.000000/11.000000/15.000000/13.000000:e/1/1.000000/11.000000/15.000000/13.000000:d/1/1.000000/1.000000/15.000000/15.000000:n/1/1.000000/11.000000/15.000000/13.000000:R/0/270/0
|
|
||||||
modellist:id=%shepherds_pie_block,state=facing:west/servings:1,box=1.000000/0.000000/1.000000:15.000000/2.000000/15.000000:u/0/1.000000/1.000000/15.000000/15.000000:s/1/1.000000/11.000000/15.000000/13.000000:w/1/1.000000/11.000000/15.000000/13.000000:e/1/1.000000/11.000000/15.000000/13.000000:d/1/1.000000/1.000000/15.000000/15.000000:n/1/1.000000/11.000000/15.000000/13.000000:R/0/270/0,box=2.000000/2.000000/8.000000:8.000000/8.000000/14.000000:u/2/2.000000/8.000000/8.000000/14.000000:s/4/2.000000/10.000000/8.000000/16.000000:w/4/8.000000/10.000000/14.000000/16.000000:e/3/2.000000/10.000000/8.000000/16.000000:n/3/8.000000/10.000000/14.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%shepherds_pie_block,state=facing:west/servings:2,box=1.000000/0.000000/1.000000:15.000000/2.000000/15.000000:u/0/1.000000/1.000000/15.000000/15.000000:s/1/1.000000/11.000000/15.000000/13.000000:w/1/1.000000/11.000000/15.000000/13.000000:e/1/1.000000/11.000000/15.000000/13.000000:d/1/1.000000/1.000000/15.000000/15.000000:n/1/1.000000/11.000000/15.000000/13.000000:R/0/270/0,box=2.000000/2.000000/8.000000:14.000000/8.000000/14.000000:u/2/2.000000/8.000000/14.000000/14.000000:s/3/2.000000/10.000000/14.000000/16.000000:w/3/8.000000/10.000000/14.000000/16.000000:e/3/2.000000/10.000000/8.000000/16.000000:n/4/2.000000/10.000000/14.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%shepherds_pie_block,state=facing:west/servings:3,box=1.000000/0.000000/1.000000:15.000000/2.000000/15.000000:u/0/1.000000/1.000000/15.000000/15.000000:s/1/1.000000/11.000000/15.000000/13.000000:w/1/1.000000/11.000000/15.000000/13.000000:e/1/1.000000/11.000000/15.000000/13.000000:d/1/1.000000/1.000000/15.000000/15.000000:n/1/1.000000/11.000000/15.000000/13.000000:R/0/270/0,box=8.000000/2.000000/2.000000:14.000000/8.000000/8.000000:u/2/8.000000/2.000000/14.000000/8.000000:s/3/2.000000/10.000000/14.000000/16.000000:w/4/2.000000/10.000000/8.000000/16.000000:e/3/8.000000/10.000000/14.000000/16.000000:n/3/2.000000/10.000000/8.000000/16.000000:R/0/270/0,box=2.000000/2.000000/8.000000:14.000000/8.000000/14.000000:u/2/2.000000/8.000000/14.000000/14.000000:s/3/2.000000/10.000000/14.000000/16.000000:w/3/8.000000/10.000000/14.000000/16.000000:e/3/2.000000/10.000000/8.000000/16.000000:n/4/2.000000/10.000000/14.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%shepherds_pie_block,state=facing:west/servings:4,box=1.000000/0.000000/1.000000:15.000000/2.000000/15.000000:u/0/1.000000/1.000000/15.000000/15.000000:s/1/1.000000/11.000000/15.000000/13.000000:w/1/1.000000/11.000000/15.000000/13.000000:e/1/1.000000/11.000000/15.000000/13.000000:d/1/1.000000/1.000000/15.000000/15.000000:n/1/1.000000/11.000000/15.000000/13.000000:R/0/270/0,box=2.000000/2.000000/2.000000:14.000000/8.000000/14.000000:u/2/2.000000/2.000000/14.000000/14.000000:s/3/2.000000/10.000000/14.000000/16.000000:w/3/2.000000/10.000000/14.000000/16.000000:e/3/2.000000/10.000000/14.000000/16.000000:n/3/2.000000/10.000000/14.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%shepherds_pie_block,state=facing:east/servings:0,box=1.000000/0.000000/1.000000:15.000000/2.000000/15.000000:u/0/1.000000/1.000000/15.000000/15.000000:s/1/1.000000/11.000000/15.000000/13.000000:w/1/1.000000/11.000000/15.000000/13.000000:e/1/1.000000/11.000000/15.000000/13.000000:d/1/1.000000/1.000000/15.000000/15.000000:n/1/1.000000/11.000000/15.000000/13.000000:R/0/90/0
|
|
||||||
modellist:id=%shepherds_pie_block,state=facing:east/servings:1,box=1.000000/0.000000/1.000000:15.000000/2.000000/15.000000:u/0/1.000000/1.000000/15.000000/15.000000:s/1/1.000000/11.000000/15.000000/13.000000:w/1/1.000000/11.000000/15.000000/13.000000:e/1/1.000000/11.000000/15.000000/13.000000:d/1/1.000000/1.000000/15.000000/15.000000:n/1/1.000000/11.000000/15.000000/13.000000:R/0/90/0,box=2.000000/2.000000/8.000000:8.000000/8.000000/14.000000:u/2/2.000000/8.000000/8.000000/14.000000:s/4/2.000000/10.000000/8.000000/16.000000:w/4/8.000000/10.000000/14.000000/16.000000:e/3/2.000000/10.000000/8.000000/16.000000:n/3/8.000000/10.000000/14.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%shepherds_pie_block,state=facing:east/servings:2,box=1.000000/0.000000/1.000000:15.000000/2.000000/15.000000:u/0/1.000000/1.000000/15.000000/15.000000:s/1/1.000000/11.000000/15.000000/13.000000:w/1/1.000000/11.000000/15.000000/13.000000:e/1/1.000000/11.000000/15.000000/13.000000:d/1/1.000000/1.000000/15.000000/15.000000:n/1/1.000000/11.000000/15.000000/13.000000:R/0/90/0,box=2.000000/2.000000/8.000000:14.000000/8.000000/14.000000:u/2/2.000000/8.000000/14.000000/14.000000:s/3/2.000000/10.000000/14.000000/16.000000:w/3/8.000000/10.000000/14.000000/16.000000:e/3/2.000000/10.000000/8.000000/16.000000:n/4/2.000000/10.000000/14.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%shepherds_pie_block,state=facing:east/servings:3,box=1.000000/0.000000/1.000000:15.000000/2.000000/15.000000:u/0/1.000000/1.000000/15.000000/15.000000:s/1/1.000000/11.000000/15.000000/13.000000:w/1/1.000000/11.000000/15.000000/13.000000:e/1/1.000000/11.000000/15.000000/13.000000:d/1/1.000000/1.000000/15.000000/15.000000:n/1/1.000000/11.000000/15.000000/13.000000:R/0/90/0,box=8.000000/2.000000/2.000000:14.000000/8.000000/8.000000:u/2/8.000000/2.000000/14.000000/8.000000:s/3/2.000000/10.000000/14.000000/16.000000:w/4/2.000000/10.000000/8.000000/16.000000:e/3/8.000000/10.000000/14.000000/16.000000:n/3/2.000000/10.000000/8.000000/16.000000:R/0/90/0,box=2.000000/2.000000/8.000000:14.000000/8.000000/14.000000:u/2/2.000000/8.000000/14.000000/14.000000:s/3/2.000000/10.000000/14.000000/16.000000:w/3/8.000000/10.000000/14.000000/16.000000:e/3/2.000000/10.000000/8.000000/16.000000:n/4/2.000000/10.000000/14.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%shepherds_pie_block,state=facing:east/servings:4,box=1.000000/0.000000/1.000000:15.000000/2.000000/15.000000:u/0/1.000000/1.000000/15.000000/15.000000:s/1/1.000000/11.000000/15.000000/13.000000:w/1/1.000000/11.000000/15.000000/13.000000:e/1/1.000000/11.000000/15.000000/13.000000:d/1/1.000000/1.000000/15.000000/15.000000:n/1/1.000000/11.000000/15.000000/13.000000:R/0/90/0,box=2.000000/2.000000/2.000000:14.000000/8.000000/14.000000:u/2/2.000000/2.000000/14.000000/14.000000:s/3/2.000000/10.000000/14.000000/16.000000:w/3/2.000000/10.000000/14.000000/16.000000:e/3/2.000000/10.000000/14.000000/16.000000:n/3/2.000000/10.000000/14.000000/16.000000:R/0/90/0
|
|
@ -1,536 +0,0 @@
|
|||||||
modname:farmersdelight
|
|
||||||
|
|
||||||
texture:id=stove_top_on,filename=assets/farmersdelight/textures/block/stove_top_on.png,xcount=1,ycount=1
|
|
||||||
texture:id=stove_side,filename=assets/farmersdelight/textures/block/stove_side.png,xcount=1,ycount=1
|
|
||||||
texture:id=stove_bottom,filename=assets/farmersdelight/textures/block/stove_bottom.png,xcount=1,ycount=1
|
|
||||||
texture:id=stove_front_on,filename=assets/farmersdelight/textures/block/stove_front_on.png,xcount=1,ycount=1
|
|
||||||
texture:id=stove_top,filename=assets/farmersdelight/textures/block/stove_top.png,xcount=1,ycount=1
|
|
||||||
texture:id=stove_front,filename=assets/farmersdelight/textures/block/stove_front.png,xcount=1,ycount=1
|
|
||||||
texture:id=cooking_pot_top,filename=assets/farmersdelight/textures/block/cooking_pot_top.png,xcount=1,ycount=1
|
|
||||||
texture:id=cooking_pot_side,filename=assets/farmersdelight/textures/block/cooking_pot_side.png,xcount=1,ycount=1
|
|
||||||
texture:id=cooking_pot_bottom,filename=assets/farmersdelight/textures/block/cooking_pot_bottom.png,xcount=1,ycount=1
|
|
||||||
texture:id=cooking_pot_parts,filename=assets/farmersdelight/textures/block/cooking_pot_parts.png,xcount=1,ycount=1
|
|
||||||
texture:id=cooking_pot_tray_top,filename=assets/farmersdelight/textures/block/cooking_pot_tray_top.png,xcount=1,ycount=1
|
|
||||||
texture:id=cooking_pot_tray_side,filename=assets/farmersdelight/textures/block/cooking_pot_tray_side.png,xcount=1,ycount=1
|
|
||||||
texture:id=cooking_pot_handle,filename=assets/farmersdelight/textures/block/cooking_pot_handle.png,xcount=1,ycount=1
|
|
||||||
texture:id=skillet_top,filename=assets/farmersdelight/textures/block/skillet_top.png,xcount=1,ycount=1
|
|
||||||
texture:id=skillet_side,filename=assets/farmersdelight/textures/block/skillet_side.png,xcount=1,ycount=1
|
|
||||||
texture:id=skillet_bottom,filename=assets/farmersdelight/textures/block/skillet_bottom.png,xcount=1,ycount=1
|
|
||||||
texture:id=basket_bottom,filename=assets/farmersdelight/textures/block/basket_bottom.png,xcount=1,ycount=1
|
|
||||||
texture:id=basket_top,filename=assets/farmersdelight/textures/block/basket_top.png,xcount=1,ycount=1
|
|
||||||
texture:id=basket_side,filename=assets/farmersdelight/textures/block/basket_side.png,xcount=1,ycount=1
|
|
||||||
texture:id=basket_handle,filename=assets/farmersdelight/textures/block/basket_handle.png,xcount=1,ycount=1
|
|
||||||
texture:id=cutting_board,filename=assets/farmersdelight/textures/block/cutting_board.png,xcount=1,ycount=1
|
|
||||||
texture:id=carrot_crate_top,filename=assets/farmersdelight/textures/block/carrot_crate_top.png,xcount=1,ycount=1
|
|
||||||
texture:id=carrot_crate_side,filename=assets/farmersdelight/textures/block/carrot_crate_side.png,xcount=1,ycount=1
|
|
||||||
texture:id=crate_bottom,filename=assets/farmersdelight/textures/block/crate_bottom.png,xcount=1,ycount=1
|
|
||||||
texture:id=potato_crate_top,filename=assets/farmersdelight/textures/block/potato_crate_top.png,xcount=1,ycount=1
|
|
||||||
texture:id=potato_crate_side,filename=assets/farmersdelight/textures/block/potato_crate_side.png,xcount=1,ycount=1
|
|
||||||
texture:id=beetroot_crate_top,filename=assets/farmersdelight/textures/block/beetroot_crate_top.png,xcount=1,ycount=1
|
|
||||||
texture:id=beetroot_crate_side,filename=assets/farmersdelight/textures/block/beetroot_crate_side.png,xcount=1,ycount=1
|
|
||||||
texture:id=cabbage_crate_top,filename=assets/farmersdelight/textures/block/cabbage_crate_top.png,xcount=1,ycount=1
|
|
||||||
texture:id=cabbage_crate_side,filename=assets/farmersdelight/textures/block/cabbage_crate_side.png,xcount=1,ycount=1
|
|
||||||
texture:id=tomato_crate_top,filename=assets/farmersdelight/textures/block/tomato_crate_top.png,xcount=1,ycount=1
|
|
||||||
texture:id=tomato_crate_side,filename=assets/farmersdelight/textures/block/tomato_crate_side.png,xcount=1,ycount=1
|
|
||||||
texture:id=onion_crate_top,filename=assets/farmersdelight/textures/block/onion_crate_top.png,xcount=1,ycount=1
|
|
||||||
texture:id=onion_crate_side,filename=assets/farmersdelight/textures/block/onion_crate_side.png,xcount=1,ycount=1
|
|
||||||
texture:id=rice_bale_top,filename=assets/farmersdelight/textures/block/rice_bale_top.png,xcount=1,ycount=1
|
|
||||||
texture:id=rice_bale_side,filename=assets/farmersdelight/textures/block/rice_bale_side.png,xcount=1,ycount=1
|
|
||||||
texture:id=rice_bale_bottom,filename=assets/farmersdelight/textures/block/rice_bale_bottom.png,xcount=1,ycount=1
|
|
||||||
texture:id=rice_bag_top,filename=assets/farmersdelight/textures/block/rice_bag_top.png,xcount=1,ycount=1
|
|
||||||
texture:id=rice_bag_side,filename=assets/farmersdelight/textures/block/rice_bag_side.png,xcount=1,ycount=1
|
|
||||||
texture:id=rice_bag_bottom,filename=assets/farmersdelight/textures/block/rice_bag_bottom.png,xcount=1,ycount=1
|
|
||||||
texture:id=rice_bag_side_tied,filename=assets/farmersdelight/textures/block/rice_bag_side_tied.png,xcount=1,ycount=1
|
|
||||||
texture:id=straw_bale_end,filename=assets/farmersdelight/textures/block/straw_bale_end.png,xcount=1,ycount=1
|
|
||||||
texture:id=straw_bale_side,filename=assets/farmersdelight/textures/block/straw_bale_side.png,xcount=1,ycount=1
|
|
||||||
texture:id=rope,filename=assets/farmersdelight/textures/block/rope.png,xcount=1,ycount=1
|
|
||||||
texture:id=safety_net,filename=assets/farmersdelight/textures/block/safety_net.png,xcount=1,ycount=1
|
|
||||||
texture:id=oak_cabinet_top,filename=assets/farmersdelight/textures/block/oak_cabinet_top.png,xcount=1,ycount=1
|
|
||||||
texture:id=oak_cabinet_side,filename=assets/farmersdelight/textures/block/oak_cabinet_side.png,xcount=1,ycount=1
|
|
||||||
texture:id=oak_cabinet_front_open,filename=assets/farmersdelight/textures/block/oak_cabinet_front_open.png,xcount=1,ycount=1
|
|
||||||
texture:id=oak_cabinet_front,filename=assets/farmersdelight/textures/block/oak_cabinet_front.png,xcount=1,ycount=1
|
|
||||||
texture:id=spruce_cabinet_top,filename=assets/farmersdelight/textures/block/spruce_cabinet_top.png,xcount=1,ycount=1
|
|
||||||
texture:id=spruce_cabinet_side,filename=assets/farmersdelight/textures/block/spruce_cabinet_side.png,xcount=1,ycount=1
|
|
||||||
texture:id=spruce_cabinet_front_open,filename=assets/farmersdelight/textures/block/spruce_cabinet_front_open.png,xcount=1,ycount=1
|
|
||||||
texture:id=spruce_cabinet_front,filename=assets/farmersdelight/textures/block/spruce_cabinet_front.png,xcount=1,ycount=1
|
|
||||||
texture:id=birch_cabinet_top,filename=assets/farmersdelight/textures/block/birch_cabinet_top.png,xcount=1,ycount=1
|
|
||||||
texture:id=birch_cabinet_side,filename=assets/farmersdelight/textures/block/birch_cabinet_side.png,xcount=1,ycount=1
|
|
||||||
texture:id=birch_cabinet_front_open,filename=assets/farmersdelight/textures/block/birch_cabinet_front_open.png,xcount=1,ycount=1
|
|
||||||
texture:id=birch_cabinet_front,filename=assets/farmersdelight/textures/block/birch_cabinet_front.png,xcount=1,ycount=1
|
|
||||||
texture:id=jungle_cabinet_top,filename=assets/farmersdelight/textures/block/jungle_cabinet_top.png,xcount=1,ycount=1
|
|
||||||
texture:id=jungle_cabinet_side,filename=assets/farmersdelight/textures/block/jungle_cabinet_side.png,xcount=1,ycount=1
|
|
||||||
texture:id=jungle_cabinet_front_open,filename=assets/farmersdelight/textures/block/jungle_cabinet_front_open.png,xcount=1,ycount=1
|
|
||||||
texture:id=jungle_cabinet_front,filename=assets/farmersdelight/textures/block/jungle_cabinet_front.png,xcount=1,ycount=1
|
|
||||||
texture:id=acacia_cabinet_top,filename=assets/farmersdelight/textures/block/acacia_cabinet_top.png,xcount=1,ycount=1
|
|
||||||
texture:id=acacia_cabinet_side,filename=assets/farmersdelight/textures/block/acacia_cabinet_side.png,xcount=1,ycount=1
|
|
||||||
texture:id=acacia_cabinet_front_open,filename=assets/farmersdelight/textures/block/acacia_cabinet_front_open.png,xcount=1,ycount=1
|
|
||||||
texture:id=acacia_cabinet_front,filename=assets/farmersdelight/textures/block/acacia_cabinet_front.png,xcount=1,ycount=1
|
|
||||||
texture:id=dark_oak_cabinet_top,filename=assets/farmersdelight/textures/block/dark_oak_cabinet_top.png,xcount=1,ycount=1
|
|
||||||
texture:id=dark_oak_cabinet_side,filename=assets/farmersdelight/textures/block/dark_oak_cabinet_side.png,xcount=1,ycount=1
|
|
||||||
texture:id=dark_oak_cabinet_front_open,filename=assets/farmersdelight/textures/block/dark_oak_cabinet_front_open.png,xcount=1,ycount=1
|
|
||||||
texture:id=dark_oak_cabinet_front,filename=assets/farmersdelight/textures/block/dark_oak_cabinet_front.png,xcount=1,ycount=1
|
|
||||||
texture:id=crimson_cabinet_top,filename=assets/farmersdelight/textures/block/crimson_cabinet_top.png,xcount=1,ycount=1
|
|
||||||
texture:id=crimson_cabinet_side,filename=assets/farmersdelight/textures/block/crimson_cabinet_side.png,xcount=1,ycount=1
|
|
||||||
texture:id=crimson_cabinet_front_open,filename=assets/farmersdelight/textures/block/crimson_cabinet_front_open.png,xcount=1,ycount=1
|
|
||||||
texture:id=crimson_cabinet_front,filename=assets/farmersdelight/textures/block/crimson_cabinet_front.png,xcount=1,ycount=1
|
|
||||||
texture:id=warped_cabinet_top,filename=assets/farmersdelight/textures/block/warped_cabinet_top.png,xcount=1,ycount=1
|
|
||||||
texture:id=warped_cabinet_side,filename=assets/farmersdelight/textures/block/warped_cabinet_side.png,xcount=1,ycount=1
|
|
||||||
texture:id=warped_cabinet_front_open,filename=assets/farmersdelight/textures/block/warped_cabinet_front_open.png,xcount=1,ycount=1
|
|
||||||
texture:id=warped_cabinet_front,filename=assets/farmersdelight/textures/block/warped_cabinet_front.png,xcount=1,ycount=1
|
|
||||||
texture:id=canvas_rug,filename=assets/farmersdelight/textures/block/canvas_rug.png,xcount=1,ycount=1
|
|
||||||
texture:id=canvas_rug_extrudes,filename=assets/farmersdelight/textures/block/canvas_rug_extrudes.png,xcount=1,ycount=1
|
|
||||||
texture:id=tatami_mat_half,filename=assets/farmersdelight/textures/block/tatami_mat_half.png,xcount=1,ycount=1
|
|
||||||
texture:id=tatami_mat_odd,filename=assets/farmersdelight/textures/block/tatami_mat_odd.png,xcount=1,ycount=1
|
|
||||||
texture:id=tatami_mat_even,filename=assets/farmersdelight/textures/block/tatami_mat_even.png,xcount=1,ycount=1
|
|
||||||
texture:id=tatami_mat_side,filename=assets/farmersdelight/textures/block/tatami_mat_side.png,xcount=1,ycount=1
|
|
||||||
texture:id=brown_mushroom_colony_stage0,filename=assets/farmersdelight/textures/block/brown_mushroom_colony_stage0.png,xcount=1,ycount=1
|
|
||||||
texture:id=brown_mushroom_colony_stage1,filename=assets/farmersdelight/textures/block/brown_mushroom_colony_stage1.png,xcount=1,ycount=1
|
|
||||||
texture:id=brown_mushroom_colony_stage2,filename=assets/farmersdelight/textures/block/brown_mushroom_colony_stage2.png,xcount=1,ycount=1
|
|
||||||
texture:id=brown_mushroom_colony_stage3,filename=assets/farmersdelight/textures/block/brown_mushroom_colony_stage3.png,xcount=1,ycount=1
|
|
||||||
texture:id=red_mushroom_colony_stage0,filename=assets/farmersdelight/textures/block/red_mushroom_colony_stage0.png,xcount=1,ycount=1
|
|
||||||
texture:id=red_mushroom_colony_stage1,filename=assets/farmersdelight/textures/block/red_mushroom_colony_stage1.png,xcount=1,ycount=1
|
|
||||||
texture:id=red_mushroom_colony_stage2,filename=assets/farmersdelight/textures/block/red_mushroom_colony_stage2.png,xcount=1,ycount=1
|
|
||||||
texture:id=red_mushroom_colony_stage3,filename=assets/farmersdelight/textures/block/red_mushroom_colony_stage3.png,xcount=1,ycount=1
|
|
||||||
texture:id=organic_compost_stage0,filename=assets/farmersdelight/textures/block/organic_compost_stage0.png,xcount=1,ycount=1
|
|
||||||
texture:id=organic_compost_stage1,filename=assets/farmersdelight/textures/block/organic_compost_stage1.png,xcount=1,ycount=1
|
|
||||||
texture:id=organic_compost_stage2,filename=assets/farmersdelight/textures/block/organic_compost_stage2.png,xcount=1,ycount=1
|
|
||||||
texture:id=organic_compost_stage3,filename=assets/farmersdelight/textures/block/organic_compost_stage3.png,xcount=1,ycount=1
|
|
||||||
texture:id=rich_soil,filename=assets/farmersdelight/textures/block/rich_soil.png,xcount=1,ycount=1
|
|
||||||
texture:id=rich_soil_farmland,filename=assets/farmersdelight/textures/block/rich_soil_farmland.png,xcount=1,ycount=1
|
|
||||||
texture:id=rich_soil_farmland_moist,filename=assets/farmersdelight/textures/block/rich_soil_farmland_moist.png,xcount=1,ycount=1
|
|
||||||
texture:id=rich_soil_farmland_moist_side,filename=assets/farmersdelight/textures/block/rich_soil_farmland_moist_side.png,xcount=1,ycount=1
|
|
||||||
texture:id=apple_pie_top,filename=assets/farmersdelight/textures/block/apple_pie_top.png,xcount=1,ycount=1
|
|
||||||
texture:id=pie_side,filename=assets/farmersdelight/textures/block/pie_side.png,xcount=1,ycount=1
|
|
||||||
texture:id=pie_bottom,filename=assets/farmersdelight/textures/block/pie_bottom.png,xcount=1,ycount=1
|
|
||||||
texture:id=apple_pie_inner,filename=assets/farmersdelight/textures/block/apple_pie_inner.png,xcount=1,ycount=1
|
|
||||||
texture:id=sweet_berry_cheesecake_top,filename=assets/farmersdelight/textures/block/sweet_berry_cheesecake_top.png,xcount=1,ycount=1
|
|
||||||
texture:id=sweet_berry_cheesecake_inner,filename=assets/farmersdelight/textures/block/sweet_berry_cheesecake_inner.png,xcount=1,ycount=1
|
|
||||||
texture:id=chocolate_pie_top,filename=assets/farmersdelight/textures/block/chocolate_pie_top.png,xcount=1,ycount=1
|
|
||||||
texture:id=chocolate_pie_inner,filename=assets/farmersdelight/textures/block/chocolate_pie_inner.png,xcount=1,ycount=1
|
|
||||||
texture:id=wild_cabbages,filename=assets/farmersdelight/textures/block/wild_cabbages.png,xcount=1,ycount=1
|
|
||||||
texture:id=wild_onions,filename=assets/farmersdelight/textures/block/wild_onions.png,xcount=1,ycount=1
|
|
||||||
texture:id=wild_tomatoes,filename=assets/farmersdelight/textures/block/wild_tomatoes.png,xcount=1,ycount=1
|
|
||||||
texture:id=wild_carrots,filename=assets/farmersdelight/textures/block/wild_carrots.png,xcount=1,ycount=1
|
|
||||||
texture:id=wild_potatoes,filename=assets/farmersdelight/textures/block/wild_potatoes.png,xcount=1,ycount=1
|
|
||||||
texture:id=wild_beetroots,filename=assets/farmersdelight/textures/block/wild_beetroots.png,xcount=1,ycount=1
|
|
||||||
texture:id=wild_rice_top,filename=assets/farmersdelight/textures/block/wild_rice_top.png,xcount=1,ycount=1
|
|
||||||
texture:id=wild_rice_bottom,filename=assets/farmersdelight/textures/block/wild_rice_bottom.png,xcount=1,ycount=1
|
|
||||||
texture:id=cabbages_stage0,filename=assets/farmersdelight/textures/block/cabbages_stage0.png,xcount=1,ycount=1
|
|
||||||
texture:id=cabbages_stage1,filename=assets/farmersdelight/textures/block/cabbages_stage1.png,xcount=1,ycount=1
|
|
||||||
texture:id=cabbages_stage2,filename=assets/farmersdelight/textures/block/cabbages_stage2.png,xcount=1,ycount=1
|
|
||||||
texture:id=cabbages_stage3,filename=assets/farmersdelight/textures/block/cabbages_stage3.png,xcount=1,ycount=1
|
|
||||||
texture:id=cabbages_stage4,filename=assets/farmersdelight/textures/block/cabbages_stage4.png,xcount=1,ycount=1
|
|
||||||
texture:id=cabbages_stage5,filename=assets/farmersdelight/textures/block/cabbages_stage5.png,xcount=1,ycount=1
|
|
||||||
texture:id=cabbages_stage6,filename=assets/farmersdelight/textures/block/cabbages_stage6.png,xcount=1,ycount=1
|
|
||||||
texture:id=cabbages_stage7,filename=assets/farmersdelight/textures/block/cabbages_stage7.png,xcount=1,ycount=1
|
|
||||||
texture:id=onions_stage0,filename=assets/farmersdelight/textures/block/onions_stage0.png,xcount=1,ycount=1
|
|
||||||
texture:id=onions_stage1,filename=assets/farmersdelight/textures/block/onions_stage1.png,xcount=1,ycount=1
|
|
||||||
texture:id=onions_stage2,filename=assets/farmersdelight/textures/block/onions_stage2.png,xcount=1,ycount=1
|
|
||||||
texture:id=onions_stage3,filename=assets/farmersdelight/textures/block/onions_stage3.png,xcount=1,ycount=1
|
|
||||||
texture:id=tomatoes_stage0,filename=assets/farmersdelight/textures/block/tomatoes_stage0.png,xcount=1,ycount=1
|
|
||||||
texture:id=tomatoes_stage1,filename=assets/farmersdelight/textures/block/tomatoes_stage1.png,xcount=1,ycount=1
|
|
||||||
texture:id=tomatoes_stage2,filename=assets/farmersdelight/textures/block/tomatoes_stage2.png,xcount=1,ycount=1
|
|
||||||
texture:id=tomatoes_stage3,filename=assets/farmersdelight/textures/block/tomatoes_stage3.png,xcount=1,ycount=1
|
|
||||||
texture:id=tomatoes_stage4,filename=assets/farmersdelight/textures/block/tomatoes_stage4.png,xcount=1,ycount=1
|
|
||||||
texture:id=rice_stage0,filename=assets/farmersdelight/textures/block/rice_stage0.png,xcount=1,ycount=1
|
|
||||||
texture:id=rice_stage1,filename=assets/farmersdelight/textures/block/rice_stage1.png,xcount=1,ycount=1
|
|
||||||
texture:id=rice_stage2,filename=assets/farmersdelight/textures/block/rice_stage2.png,xcount=1,ycount=1
|
|
||||||
texture:id=rice_supporting,filename=assets/farmersdelight/textures/block/rice_supporting.png,xcount=1,ycount=1
|
|
||||||
texture:id=rice_stage3,filename=assets/farmersdelight/textures/block/rice_stage3.png,xcount=1,ycount=1
|
|
||||||
texture:id=rice_panicles_stage0,filename=assets/farmersdelight/textures/block/rice_panicles_stage0.png,xcount=1,ycount=1
|
|
||||||
texture:id=rice_panicles_stage1,filename=assets/farmersdelight/textures/block/rice_panicles_stage1.png,xcount=1,ycount=1
|
|
||||||
texture:id=rice_panicles_stage2,filename=assets/farmersdelight/textures/block/rice_panicles_stage2.png,xcount=1,ycount=1
|
|
||||||
texture:id=rice_panicles_stage3,filename=assets/farmersdelight/textures/block/rice_panicles_stage3.png,xcount=1,ycount=1
|
|
||||||
texture:id=roast_chicken_gibs,filename=assets/farmersdelight/textures/block/roast_chicken_gibs.png,xcount=1,ycount=1
|
|
||||||
texture:id=tray_top_leftover,filename=assets/farmersdelight/textures/block/tray_top_leftover.png,xcount=1,ycount=1
|
|
||||||
texture:id=tray_bottom,filename=assets/farmersdelight/textures/block/tray_bottom.png,xcount=1,ycount=1
|
|
||||||
texture:id=roast_chicken_eaten,filename=assets/farmersdelight/textures/block/roast_chicken_eaten.png,xcount=1,ycount=1
|
|
||||||
texture:id=tray_top_veggies,filename=assets/farmersdelight/textures/block/tray_top_veggies.png,xcount=1,ycount=1
|
|
||||||
texture:id=roast_chicken_body,filename=assets/farmersdelight/textures/block/roast_chicken_body.png,xcount=1,ycount=1
|
|
||||||
texture:id=stuffed_pumpkin_details,filename=assets/farmersdelight/textures/block/stuffed_pumpkin_details.png,xcount=1,ycount=1
|
|
||||||
texture:id=stuffed_pumpkin_top_eaten,filename=assets/farmersdelight/textures/block/stuffed_pumpkin_top_eaten.png,xcount=1,ycount=1
|
|
||||||
texture:id=stuffed_pumpkin_side,filename=assets/farmersdelight/textures/block/stuffed_pumpkin_side.png,xcount=1,ycount=1
|
|
||||||
texture:id=stuffed_pumpkin_bottom,filename=assets/farmersdelight/textures/block/stuffed_pumpkin_bottom.png,xcount=1,ycount=1
|
|
||||||
texture:id=stuffed_pumpkin_top,filename=assets/farmersdelight/textures/block/stuffed_pumpkin_top.png,xcount=1,ycount=1
|
|
||||||
texture:id=tray_rice_berry_leftover,filename=assets/farmersdelight/textures/block/tray_rice_berry_leftover.png,xcount=1,ycount=1
|
|
||||||
texture:id=honey_glazed_ham_bone,filename=assets/farmersdelight/textures/block/honey_glazed_ham_bone.png,xcount=1,ycount=1
|
|
||||||
texture:id=tray_rice_berry_garnish,filename=assets/farmersdelight/textures/block/tray_rice_berry_garnish.png,xcount=1,ycount=1
|
|
||||||
texture:id=honey_glazed_ham_body,filename=assets/farmersdelight/textures/block/honey_glazed_ham_body.png,xcount=1,ycount=1
|
|
||||||
texture:id=tray_pie_leftover,filename=assets/farmersdelight/textures/block/tray_pie_leftover.png,xcount=1,ycount=1
|
|
||||||
texture:id=shepherds_pie_top,filename=assets/farmersdelight/textures/block/shepherds_pie_top.png,xcount=1,ycount=1
|
|
||||||
texture:id=shepherds_pie_inner,filename=assets/farmersdelight/textures/block/shepherds_pie_inner.png,xcount=1,ycount=1
|
|
||||||
texture:id=shepherds_pie_side,filename=assets/farmersdelight/textures/block/shepherds_pie_side.png,xcount=1,ycount=1
|
|
||||||
texture:id=tray_top,filename=assets/farmersdelight/textures/block/tray_top.png,xcount=1,ycount=1
|
|
||||||
block:id=%stove,state=facing:north/lit:true,patch0=0:stove_side,patch1=0:stove_bottom,patch2=0:stove_front_on,patch3=0:stove_side,patch4=0:stove_top_on,patch5=0:stove_side,stdrot=true
|
|
||||||
block:id=%stove,state=facing:north/lit:false,patch0=0:stove_side,patch1=0:stove_bottom,patch2=0:stove_front,patch3=0:stove_side,patch4=0:stove_top,patch5=0:stove_side,stdrot=true
|
|
||||||
block:id=%stove,state=facing:south/lit:true,patch0=0:stove_top_on,patch1=0:stove_side,patch2=0:stove_bottom,patch3=0:stove_front_on,stdrot=true
|
|
||||||
block:id=%stove,state=facing:south/lit:false,patch0=0:stove_top,patch1=0:stove_side,patch2=0:stove_bottom,patch3=0:stove_front,stdrot=true
|
|
||||||
block:id=%stove,state=facing:west/lit:true,patch0=0:stove_top_on,patch1=0:stove_side,patch2=0:stove_bottom,patch3=0:stove_front_on,stdrot=true
|
|
||||||
block:id=%stove,state=facing:west/lit:false,patch0=0:stove_top,patch1=0:stove_side,patch2=0:stove_bottom,patch3=0:stove_front,stdrot=true
|
|
||||||
block:id=%stove,state=facing:east/lit:true,patch0=0:stove_top_on,patch1=0:stove_side,patch2=0:stove_bottom,patch3=0:stove_front_on,stdrot=true
|
|
||||||
block:id=%stove,state=facing:east/lit:false,patch0=0:stove_top,patch1=0:stove_side,patch2=0:stove_bottom,patch3=0:stove_front,stdrot=true
|
|
||||||
block:id=%cooking_pot,state=facing:north/support:none,patch0=0:cooking_pot_top,patch1=0:cooking_pot_side,patch2=0:cooking_pot_bottom,patch3=0:cooking_pot_parts,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%cooking_pot,state=facing:north/support:tray,patch0=0:cooking_pot_top,patch1=0:cooking_pot_side,patch2=0:cooking_pot_bottom,patch3=0:cooking_pot_parts,patch4=0:cooking_pot_tray_top,patch5=0:cooking_pot_tray_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%cooking_pot,state=facing:north/support:handle,patch0=0:cooking_pot_top,patch1=0:cooking_pot_side,patch2=0:cooking_pot_bottom,patch3=0:cooking_pot_parts,patch4=0:cooking_pot_handle,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%cooking_pot,state=facing:south/support:none,patch0=0:cooking_pot_top,patch1=0:cooking_pot_side,patch2=0:cooking_pot_bottom,patch3=0:cooking_pot_parts,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%cooking_pot,state=facing:south/support:tray,patch0=0:cooking_pot_top,patch1=0:cooking_pot_side,patch2=0:cooking_pot_bottom,patch3=0:cooking_pot_parts,patch4=0:cooking_pot_tray_top,patch5=0:cooking_pot_tray_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%cooking_pot,state=facing:south/support:handle,patch0=0:cooking_pot_top,patch1=0:cooking_pot_side,patch2=0:cooking_pot_bottom,patch3=0:cooking_pot_parts,patch4=0:cooking_pot_handle,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%cooking_pot,state=facing:west/support:none,patch0=0:cooking_pot_top,patch1=0:cooking_pot_side,patch2=0:cooking_pot_bottom,patch3=0:cooking_pot_parts,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%cooking_pot,state=facing:west/support:tray,patch0=0:cooking_pot_top,patch1=0:cooking_pot_side,patch2=0:cooking_pot_bottom,patch3=0:cooking_pot_parts,patch4=0:cooking_pot_tray_top,patch5=0:cooking_pot_tray_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%cooking_pot,state=facing:west/support:handle,patch0=0:cooking_pot_top,patch1=0:cooking_pot_side,patch2=0:cooking_pot_bottom,patch3=0:cooking_pot_parts,patch4=0:cooking_pot_handle,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%cooking_pot,state=facing:east/support:none,patch0=0:cooking_pot_top,patch1=0:cooking_pot_side,patch2=0:cooking_pot_bottom,patch3=0:cooking_pot_parts,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%cooking_pot,state=facing:east/support:tray,patch0=0:cooking_pot_top,patch1=0:cooking_pot_side,patch2=0:cooking_pot_bottom,patch3=0:cooking_pot_parts,patch4=0:cooking_pot_tray_top,patch5=0:cooking_pot_tray_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%cooking_pot,state=facing:east/support:handle,patch0=0:cooking_pot_top,patch1=0:cooking_pot_side,patch2=0:cooking_pot_bottom,patch3=0:cooking_pot_parts,patch4=0:cooking_pot_handle,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%skillet,state=facing:north/support:true,patch0=0:skillet_top,patch1=0:skillet_side,patch2=0:skillet_bottom,patch3=0:cooking_pot_tray_top,patch4=0:cooking_pot_tray_side,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%skillet,state=facing:north/support:false,patch0=0:skillet_top,patch1=0:skillet_side,patch2=0:skillet_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%skillet,state=facing:south/support:true,patch0=0:skillet_top,patch1=0:skillet_side,patch2=0:skillet_bottom,patch3=0:cooking_pot_tray_top,patch4=0:cooking_pot_tray_side,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%skillet,state=facing:south/support:false,patch0=0:skillet_top,patch1=0:skillet_side,patch2=0:skillet_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%skillet,state=facing:west/support:true,patch0=0:skillet_top,patch1=0:skillet_side,patch2=0:skillet_bottom,patch3=0:cooking_pot_tray_top,patch4=0:cooking_pot_tray_side,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%skillet,state=facing:west/support:false,patch0=0:skillet_top,patch1=0:skillet_side,patch2=0:skillet_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%skillet,state=facing:east/support:true,patch0=0:skillet_top,patch1=0:skillet_side,patch2=0:skillet_bottom,patch3=0:cooking_pot_tray_top,patch4=0:cooking_pot_tray_side,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%skillet,state=facing:east/support:false,patch0=0:skillet_top,patch1=0:skillet_side,patch2=0:skillet_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%basket,state=facing:north,patch0=0:basket_bottom,patch1=0:basket_top,patch2=0:basket_side,patch3=0:basket_handle,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%basket,state=facing:east,patch0=0:basket_bottom,patch1=0:basket_top,patch2=0:basket_side,patch3=0:basket_handle,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%basket,state=facing:south,patch0=0:basket_bottom,patch1=0:basket_top,patch2=0:basket_side,patch3=0:basket_handle,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%basket,state=facing:west,patch0=0:basket_bottom,patch1=0:basket_top,patch2=0:basket_side,patch3=0:basket_handle,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%basket,state=facing:up,patch0=0:basket_bottom,patch1=0:basket_top,patch2=0:basket_side,patch3=0:basket_handle,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%basket,state=facing:down,patch0=0:basket_bottom,patch1=0:basket_top,patch2=0:basket_side,patch3=0:basket_handle,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%cutting_board,state=facing:north,patch0=0:cutting_board,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%cutting_board,state=facing:south,patch0=0:cutting_board,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%cutting_board,state=facing:west,patch0=0:cutting_board,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%cutting_board,state=facing:east,patch0=0:cutting_board,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%carrot_crate,patch0=0:carrot_crate_side,patch1=0:crate_bottom,patch2=0:carrot_crate_side,patch3=0:carrot_crate_side,patch4=0:carrot_crate_top,patch5=0:carrot_crate_side,stdrot=true
|
|
||||||
block:id=%potato_crate,patch0=0:potato_crate_side,patch1=0:crate_bottom,patch2=0:potato_crate_side,patch3=0:potato_crate_side,patch4=0:potato_crate_top,patch5=0:potato_crate_side,stdrot=true
|
|
||||||
block:id=%beetroot_crate,patch0=0:beetroot_crate_side,patch1=0:crate_bottom,patch2=0:beetroot_crate_side,patch3=0:beetroot_crate_side,patch4=0:beetroot_crate_top,patch5=0:beetroot_crate_side,stdrot=true
|
|
||||||
block:id=%cabbage_crate,patch0=0:cabbage_crate_side,patch1=0:crate_bottom,patch2=0:cabbage_crate_side,patch3=0:cabbage_crate_side,patch4=0:cabbage_crate_top,patch5=0:cabbage_crate_side,stdrot=true
|
|
||||||
block:id=%tomato_crate,patch0=0:tomato_crate_side,patch1=0:crate_bottom,patch2=0:tomato_crate_side,patch3=0:tomato_crate_side,patch4=0:tomato_crate_top,patch5=0:tomato_crate_side,stdrot=true
|
|
||||||
block:id=%onion_crate,patch0=0:onion_crate_side,patch1=0:crate_bottom,patch2=0:onion_crate_side,patch3=0:onion_crate_side,patch4=0:onion_crate_top,patch5=0:onion_crate_side,stdrot=true
|
|
||||||
block:id=%rice_bale,state=facing:north,patch0=0:rice_bale_top,patch1=0:rice_bale_side,patch2=0:rice_bale_bottom,stdrot=true
|
|
||||||
block:id=%rice_bale,state=facing:east,patch0=0:rice_bale_top,patch1=0:rice_bale_side,patch2=0:rice_bale_bottom,stdrot=true
|
|
||||||
block:id=%rice_bale,state=facing:south,patch0=0:rice_bale_top,patch1=0:rice_bale_side,patch2=0:rice_bale_bottom,stdrot=true
|
|
||||||
block:id=%rice_bale,state=facing:west,patch0=0:rice_bale_top,patch1=0:rice_bale_side,patch2=0:rice_bale_bottom,stdrot=true
|
|
||||||
block:id=%rice_bale,state=facing:up,patch0=0:rice_bale_side,patch1=0:rice_bale_bottom,patch2=0:rice_bale_side,patch3=0:rice_bale_side,patch4=0:rice_bale_top,patch5=0:rice_bale_side,stdrot=true
|
|
||||||
block:id=%rice_bale,state=facing:down,patch0=0:rice_bale_top,patch1=0:rice_bale_side,patch2=0:rice_bale_bottom,stdrot=true
|
|
||||||
block:id=%rice_bag,patch0=0:rice_bag_side,patch1=0:rice_bag_bottom,patch2=0:rice_bag_side_tied,patch3=0:rice_bag_side,patch4=0:rice_bag_top,patch5=0:rice_bag_side_tied,stdrot=true
|
|
||||||
block:id=%straw_bale,state=axis:x,patch0=0:straw_bale_end,patch1=0:straw_bale_side,stdrot=true
|
|
||||||
block:id=%straw_bale,state=axis:y,patch0=0:straw_bale_side,patch1=0:straw_bale_end,patch2=0:straw_bale_side,patch3=0:straw_bale_side,patch4=0:straw_bale_end,patch5=0:straw_bale_side,stdrot=true
|
|
||||||
block:id=%straw_bale,state=axis:z,patch0=0:straw_bale_end,patch1=0:straw_bale_side,stdrot=true
|
|
||||||
block:id=%rope,state=west:true/east:true/tied_to_bell:true/south:true/north:true,patch0=0:rope,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%rope,state=west:false/east:true/tied_to_bell:true/south:true/north:true,patch0=0:rope,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%rope,state=west:true/east:true/tied_to_bell:false/south:true/north:true,patch0=0:rope,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%rope,state=west:false/east:true/tied_to_bell:false/south:true/north:true,patch0=0:rope,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%rope,state=west:true/east:true/tied_to_bell:true/south:false/north:true,patch0=0:rope,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%rope,state=west:false/east:true/tied_to_bell:true/south:false/north:true,patch0=0:rope,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%rope,state=west:true/east:true/tied_to_bell:false/south:false/north:true,patch0=0:rope,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%rope,state=west:false/east:true/tied_to_bell:false/south:false/north:true,patch0=0:rope,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%rope,state=west:true/east:true/tied_to_bell:true/south:true/north:false,patch0=0:rope,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%rope,state=west:false/east:true/tied_to_bell:true/south:true/north:false,patch0=0:rope,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%rope,state=west:true/east:true/tied_to_bell:false/south:true/north:false,patch0=0:rope,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%rope,state=west:false/east:true/tied_to_bell:false/south:true/north:false,patch0=0:rope,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%rope,state=west:true/east:true/tied_to_bell:true/south:false/north:false,patch0=0:rope,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%rope,state=west:false/east:true/tied_to_bell:true/south:false/north:false,patch0=0:rope,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%rope,state=west:true/east:true/tied_to_bell:false/south:false/north:false,patch0=0:rope,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%rope,state=west:false/east:true/tied_to_bell:false/south:false/north:false,patch0=0:rope,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%rope,state=west:true/east:false/tied_to_bell:true/south:true/north:true,patch0=0:rope,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%rope,state=west:false/east:false/tied_to_bell:true/south:true/north:true,patch0=0:rope,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%rope,state=west:true/east:false/tied_to_bell:false/south:true/north:true,patch0=0:rope,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%rope,state=west:false/east:false/tied_to_bell:false/south:true/north:true,patch0=0:rope,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%rope,state=west:true/east:false/tied_to_bell:true/south:false/north:true,patch0=0:rope,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%rope,state=west:false/east:false/tied_to_bell:true/south:false/north:true,patch0=0:rope,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%rope,state=west:true/east:false/tied_to_bell:false/south:false/north:true,patch0=0:rope,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%rope,state=west:false/east:false/tied_to_bell:false/south:false/north:true,patch0=0:rope,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%rope,state=west:true/east:false/tied_to_bell:true/south:true/north:false,patch0=0:rope,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%rope,state=west:false/east:false/tied_to_bell:true/south:true/north:false,patch0=0:rope,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%rope,state=west:true/east:false/tied_to_bell:false/south:true/north:false,patch0=0:rope,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%rope,state=west:false/east:false/tied_to_bell:false/south:true/north:false,patch0=0:rope,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%rope,state=west:true/east:false/tied_to_bell:true/south:false/north:false,patch0=0:rope,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%rope,state=west:false/east:false/tied_to_bell:true/south:false/north:false,patch0=0:rope,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%rope,state=west:true/east:false/tied_to_bell:false/south:false/north:false,patch0=0:rope,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%rope,state=west:false/east:false/tied_to_bell:false/south:false/north:false,patch0=0:rope,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%safety_net,patch0=0:safety_net,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%oak_cabinet,state=facing:north/open:true,patch0=0:oak_cabinet_side,patch1=0:oak_cabinet_top,patch2=0:oak_cabinet_front_open,patch3=0:oak_cabinet_side,patch4=0:oak_cabinet_top,patch5=0:oak_cabinet_side,stdrot=true
|
|
||||||
block:id=%oak_cabinet,state=facing:north/open:false,patch0=0:oak_cabinet_side,patch1=0:oak_cabinet_top,patch2=0:oak_cabinet_front,patch3=0:oak_cabinet_side,patch4=0:oak_cabinet_top,patch5=0:oak_cabinet_side,stdrot=true
|
|
||||||
block:id=%oak_cabinet,state=facing:south/open:true,patch0=0:oak_cabinet_top,patch1=0:oak_cabinet_side,patch2=0:oak_cabinet_front_open,stdrot=true
|
|
||||||
block:id=%oak_cabinet,state=facing:south/open:false,patch0=0:oak_cabinet_top,patch1=0:oak_cabinet_side,patch2=0:oak_cabinet_front,stdrot=true
|
|
||||||
block:id=%oak_cabinet,state=facing:west/open:true,patch0=0:oak_cabinet_top,patch1=0:oak_cabinet_side,patch2=0:oak_cabinet_front_open,stdrot=true
|
|
||||||
block:id=%oak_cabinet,state=facing:west/open:false,patch0=0:oak_cabinet_top,patch1=0:oak_cabinet_side,patch2=0:oak_cabinet_front,stdrot=true
|
|
||||||
block:id=%oak_cabinet,state=facing:east/open:true,patch0=0:oak_cabinet_top,patch1=0:oak_cabinet_side,patch2=0:oak_cabinet_front_open,stdrot=true
|
|
||||||
block:id=%oak_cabinet,state=facing:east/open:false,patch0=0:oak_cabinet_top,patch1=0:oak_cabinet_side,patch2=0:oak_cabinet_front,stdrot=true
|
|
||||||
block:id=%spruce_cabinet,state=facing:north/open:true,patch0=0:spruce_cabinet_side,patch1=0:spruce_cabinet_top,patch2=0:spruce_cabinet_front_open,patch3=0:spruce_cabinet_side,patch4=0:spruce_cabinet_top,patch5=0:spruce_cabinet_side,stdrot=true
|
|
||||||
block:id=%spruce_cabinet,state=facing:north/open:false,patch0=0:spruce_cabinet_side,patch1=0:spruce_cabinet_top,patch2=0:spruce_cabinet_front,patch3=0:spruce_cabinet_side,patch4=0:spruce_cabinet_top,patch5=0:spruce_cabinet_side,stdrot=true
|
|
||||||
block:id=%spruce_cabinet,state=facing:south/open:true,patch0=0:spruce_cabinet_top,patch1=0:spruce_cabinet_side,patch2=0:spruce_cabinet_front_open,stdrot=true
|
|
||||||
block:id=%spruce_cabinet,state=facing:south/open:false,patch0=0:spruce_cabinet_top,patch1=0:spruce_cabinet_side,patch2=0:spruce_cabinet_front,stdrot=true
|
|
||||||
block:id=%spruce_cabinet,state=facing:west/open:true,patch0=0:spruce_cabinet_top,patch1=0:spruce_cabinet_side,patch2=0:spruce_cabinet_front_open,stdrot=true
|
|
||||||
block:id=%spruce_cabinet,state=facing:west/open:false,patch0=0:spruce_cabinet_top,patch1=0:spruce_cabinet_side,patch2=0:spruce_cabinet_front,stdrot=true
|
|
||||||
block:id=%spruce_cabinet,state=facing:east/open:true,patch0=0:spruce_cabinet_top,patch1=0:spruce_cabinet_side,patch2=0:spruce_cabinet_front_open,stdrot=true
|
|
||||||
block:id=%spruce_cabinet,state=facing:east/open:false,patch0=0:spruce_cabinet_top,patch1=0:spruce_cabinet_side,patch2=0:spruce_cabinet_front,stdrot=true
|
|
||||||
block:id=%birch_cabinet,state=facing:north/open:true,patch0=0:birch_cabinet_side,patch1=0:birch_cabinet_top,patch2=0:birch_cabinet_front_open,patch3=0:birch_cabinet_side,patch4=0:birch_cabinet_top,patch5=0:birch_cabinet_side,stdrot=true
|
|
||||||
block:id=%birch_cabinet,state=facing:north/open:false,patch0=0:birch_cabinet_side,patch1=0:birch_cabinet_top,patch2=0:birch_cabinet_front,patch3=0:birch_cabinet_side,patch4=0:birch_cabinet_top,patch5=0:birch_cabinet_side,stdrot=true
|
|
||||||
block:id=%birch_cabinet,state=facing:south/open:true,patch0=0:birch_cabinet_top,patch1=0:birch_cabinet_side,patch2=0:birch_cabinet_front_open,stdrot=true
|
|
||||||
block:id=%birch_cabinet,state=facing:south/open:false,patch0=0:birch_cabinet_top,patch1=0:birch_cabinet_side,patch2=0:birch_cabinet_front,stdrot=true
|
|
||||||
block:id=%birch_cabinet,state=facing:west/open:true,patch0=0:birch_cabinet_top,patch1=0:birch_cabinet_side,patch2=0:birch_cabinet_front_open,stdrot=true
|
|
||||||
block:id=%birch_cabinet,state=facing:west/open:false,patch0=0:birch_cabinet_top,patch1=0:birch_cabinet_side,patch2=0:birch_cabinet_front,stdrot=true
|
|
||||||
block:id=%birch_cabinet,state=facing:east/open:true,patch0=0:birch_cabinet_top,patch1=0:birch_cabinet_side,patch2=0:birch_cabinet_front_open,stdrot=true
|
|
||||||
block:id=%birch_cabinet,state=facing:east/open:false,patch0=0:birch_cabinet_top,patch1=0:birch_cabinet_side,patch2=0:birch_cabinet_front,stdrot=true
|
|
||||||
block:id=%jungle_cabinet,state=facing:north/open:true,patch0=0:jungle_cabinet_side,patch1=0:jungle_cabinet_top,patch2=0:jungle_cabinet_front_open,patch3=0:jungle_cabinet_side,patch4=0:jungle_cabinet_top,patch5=0:jungle_cabinet_side,stdrot=true
|
|
||||||
block:id=%jungle_cabinet,state=facing:north/open:false,patch0=0:jungle_cabinet_side,patch1=0:jungle_cabinet_top,patch2=0:jungle_cabinet_front,patch3=0:jungle_cabinet_side,patch4=0:jungle_cabinet_top,patch5=0:jungle_cabinet_side,stdrot=true
|
|
||||||
block:id=%jungle_cabinet,state=facing:south/open:true,patch0=0:jungle_cabinet_top,patch1=0:jungle_cabinet_side,patch2=0:jungle_cabinet_front_open,stdrot=true
|
|
||||||
block:id=%jungle_cabinet,state=facing:south/open:false,patch0=0:jungle_cabinet_top,patch1=0:jungle_cabinet_side,patch2=0:jungle_cabinet_front,stdrot=true
|
|
||||||
block:id=%jungle_cabinet,state=facing:west/open:true,patch0=0:jungle_cabinet_top,patch1=0:jungle_cabinet_side,patch2=0:jungle_cabinet_front_open,stdrot=true
|
|
||||||
block:id=%jungle_cabinet,state=facing:west/open:false,patch0=0:jungle_cabinet_top,patch1=0:jungle_cabinet_side,patch2=0:jungle_cabinet_front,stdrot=true
|
|
||||||
block:id=%jungle_cabinet,state=facing:east/open:true,patch0=0:jungle_cabinet_top,patch1=0:jungle_cabinet_side,patch2=0:jungle_cabinet_front_open,stdrot=true
|
|
||||||
block:id=%jungle_cabinet,state=facing:east/open:false,patch0=0:jungle_cabinet_top,patch1=0:jungle_cabinet_side,patch2=0:jungle_cabinet_front,stdrot=true
|
|
||||||
block:id=%acacia_cabinet,state=facing:north/open:true,patch0=0:acacia_cabinet_side,patch1=0:acacia_cabinet_top,patch2=0:acacia_cabinet_front_open,patch3=0:acacia_cabinet_side,patch4=0:acacia_cabinet_top,patch5=0:acacia_cabinet_side,stdrot=true
|
|
||||||
block:id=%acacia_cabinet,state=facing:north/open:false,patch0=0:acacia_cabinet_side,patch1=0:acacia_cabinet_top,patch2=0:acacia_cabinet_front,patch3=0:acacia_cabinet_side,patch4=0:acacia_cabinet_top,patch5=0:acacia_cabinet_side,stdrot=true
|
|
||||||
block:id=%acacia_cabinet,state=facing:south/open:true,patch0=0:acacia_cabinet_top,patch1=0:acacia_cabinet_side,patch2=0:acacia_cabinet_front_open,stdrot=true
|
|
||||||
block:id=%acacia_cabinet,state=facing:south/open:false,patch0=0:acacia_cabinet_top,patch1=0:acacia_cabinet_side,patch2=0:acacia_cabinet_front,stdrot=true
|
|
||||||
block:id=%acacia_cabinet,state=facing:west/open:true,patch0=0:acacia_cabinet_top,patch1=0:acacia_cabinet_side,patch2=0:acacia_cabinet_front_open,stdrot=true
|
|
||||||
block:id=%acacia_cabinet,state=facing:west/open:false,patch0=0:acacia_cabinet_top,patch1=0:acacia_cabinet_side,patch2=0:acacia_cabinet_front,stdrot=true
|
|
||||||
block:id=%acacia_cabinet,state=facing:east/open:true,patch0=0:acacia_cabinet_top,patch1=0:acacia_cabinet_side,patch2=0:acacia_cabinet_front_open,stdrot=true
|
|
||||||
block:id=%acacia_cabinet,state=facing:east/open:false,patch0=0:acacia_cabinet_top,patch1=0:acacia_cabinet_side,patch2=0:acacia_cabinet_front,stdrot=true
|
|
||||||
block:id=%dark_oak_cabinet,state=facing:north/open:true,patch0=0:dark_oak_cabinet_side,patch1=0:dark_oak_cabinet_top,patch2=0:dark_oak_cabinet_front_open,patch3=0:dark_oak_cabinet_side,patch4=0:dark_oak_cabinet_top,patch5=0:dark_oak_cabinet_side,stdrot=true
|
|
||||||
block:id=%dark_oak_cabinet,state=facing:north/open:false,patch0=0:dark_oak_cabinet_side,patch1=0:dark_oak_cabinet_top,patch2=0:dark_oak_cabinet_front,patch3=0:dark_oak_cabinet_side,patch4=0:dark_oak_cabinet_top,patch5=0:dark_oak_cabinet_side,stdrot=true
|
|
||||||
block:id=%dark_oak_cabinet,state=facing:south/open:true,patch0=0:dark_oak_cabinet_top,patch1=0:dark_oak_cabinet_side,patch2=0:dark_oak_cabinet_front_open,stdrot=true
|
|
||||||
block:id=%dark_oak_cabinet,state=facing:south/open:false,patch0=0:dark_oak_cabinet_top,patch1=0:dark_oak_cabinet_side,patch2=0:dark_oak_cabinet_front,stdrot=true
|
|
||||||
block:id=%dark_oak_cabinet,state=facing:west/open:true,patch0=0:dark_oak_cabinet_top,patch1=0:dark_oak_cabinet_side,patch2=0:dark_oak_cabinet_front_open,stdrot=true
|
|
||||||
block:id=%dark_oak_cabinet,state=facing:west/open:false,patch0=0:dark_oak_cabinet_top,patch1=0:dark_oak_cabinet_side,patch2=0:dark_oak_cabinet_front,stdrot=true
|
|
||||||
block:id=%dark_oak_cabinet,state=facing:east/open:true,patch0=0:dark_oak_cabinet_top,patch1=0:dark_oak_cabinet_side,patch2=0:dark_oak_cabinet_front_open,stdrot=true
|
|
||||||
block:id=%dark_oak_cabinet,state=facing:east/open:false,patch0=0:dark_oak_cabinet_top,patch1=0:dark_oak_cabinet_side,patch2=0:dark_oak_cabinet_front,stdrot=true
|
|
||||||
block:id=%crimson_cabinet,state=facing:north/open:true,patch0=0:crimson_cabinet_side,patch1=0:crimson_cabinet_top,patch2=0:crimson_cabinet_front_open,patch3=0:crimson_cabinet_side,patch4=0:crimson_cabinet_top,patch5=0:crimson_cabinet_side,stdrot=true
|
|
||||||
block:id=%crimson_cabinet,state=facing:north/open:false,patch0=0:crimson_cabinet_side,patch1=0:crimson_cabinet_top,patch2=0:crimson_cabinet_front,patch3=0:crimson_cabinet_side,patch4=0:crimson_cabinet_top,patch5=0:crimson_cabinet_side,stdrot=true
|
|
||||||
block:id=%crimson_cabinet,state=facing:south/open:true,patch0=0:crimson_cabinet_top,patch1=0:crimson_cabinet_side,patch2=0:crimson_cabinet_front_open,stdrot=true
|
|
||||||
block:id=%crimson_cabinet,state=facing:south/open:false,patch0=0:crimson_cabinet_top,patch1=0:crimson_cabinet_side,patch2=0:crimson_cabinet_front,stdrot=true
|
|
||||||
block:id=%crimson_cabinet,state=facing:west/open:true,patch0=0:crimson_cabinet_top,patch1=0:crimson_cabinet_side,patch2=0:crimson_cabinet_front_open,stdrot=true
|
|
||||||
block:id=%crimson_cabinet,state=facing:west/open:false,patch0=0:crimson_cabinet_top,patch1=0:crimson_cabinet_side,patch2=0:crimson_cabinet_front,stdrot=true
|
|
||||||
block:id=%crimson_cabinet,state=facing:east/open:true,patch0=0:crimson_cabinet_top,patch1=0:crimson_cabinet_side,patch2=0:crimson_cabinet_front_open,stdrot=true
|
|
||||||
block:id=%crimson_cabinet,state=facing:east/open:false,patch0=0:crimson_cabinet_top,patch1=0:crimson_cabinet_side,patch2=0:crimson_cabinet_front,stdrot=true
|
|
||||||
block:id=%warped_cabinet,state=facing:north/open:true,patch0=0:warped_cabinet_side,patch1=0:warped_cabinet_top,patch2=0:warped_cabinet_front_open,patch3=0:warped_cabinet_side,patch4=0:warped_cabinet_top,patch5=0:warped_cabinet_side,stdrot=true
|
|
||||||
block:id=%warped_cabinet,state=facing:north/open:false,patch0=0:warped_cabinet_side,patch1=0:warped_cabinet_top,patch2=0:warped_cabinet_front,patch3=0:warped_cabinet_side,patch4=0:warped_cabinet_top,patch5=0:warped_cabinet_side,stdrot=true
|
|
||||||
block:id=%warped_cabinet,state=facing:south/open:true,patch0=0:warped_cabinet_top,patch1=0:warped_cabinet_side,patch2=0:warped_cabinet_front_open,stdrot=true
|
|
||||||
block:id=%warped_cabinet,state=facing:south/open:false,patch0=0:warped_cabinet_top,patch1=0:warped_cabinet_side,patch2=0:warped_cabinet_front,stdrot=true
|
|
||||||
block:id=%warped_cabinet,state=facing:west/open:true,patch0=0:warped_cabinet_top,patch1=0:warped_cabinet_side,patch2=0:warped_cabinet_front_open,stdrot=true
|
|
||||||
block:id=%warped_cabinet,state=facing:west/open:false,patch0=0:warped_cabinet_top,patch1=0:warped_cabinet_side,patch2=0:warped_cabinet_front,stdrot=true
|
|
||||||
block:id=%warped_cabinet,state=facing:east/open:true,patch0=0:warped_cabinet_top,patch1=0:warped_cabinet_side,patch2=0:warped_cabinet_front_open,stdrot=true
|
|
||||||
block:id=%warped_cabinet,state=facing:east/open:false,patch0=0:warped_cabinet_top,patch1=0:warped_cabinet_side,patch2=0:warped_cabinet_front,stdrot=true
|
|
||||||
block:id=%canvas_rug,patch0=0:canvas_rug,patch1=0:canvas_rug_extrudes,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%tatami,state=facing:north/paired:true,patch0=0:tatami_mat_half,patch1=0:tatami_mat_odd,patch2=0:tatami_mat_even,stdrot=true
|
|
||||||
block:id=%tatami,state=facing:north/paired:false,patch0=0:tatami_mat_half,stdrot=true
|
|
||||||
block:id=%tatami,state=facing:east/paired:true,patch0=0:tatami_mat_half,patch1=0:tatami_mat_even,patch2=0:tatami_mat_odd,stdrot=true
|
|
||||||
block:id=%tatami,state=facing:east/paired:false,patch0=0:tatami_mat_half,stdrot=true
|
|
||||||
block:id=%tatami,state=facing:south/paired:true,patch0=0:tatami_mat_half,patch1=0:tatami_mat_even,patch2=0:tatami_mat_odd,stdrot=true
|
|
||||||
block:id=%tatami,state=facing:south/paired:false,patch0=0:tatami_mat_half,stdrot=true
|
|
||||||
block:id=%tatami,state=facing:west/paired:true,patch0=0:tatami_mat_half,patch1=0:tatami_mat_odd,patch2=0:tatami_mat_even,stdrot=true
|
|
||||||
block:id=%tatami,state=facing:west/paired:false,patch0=0:tatami_mat_half,stdrot=true
|
|
||||||
block:id=%tatami,state=facing:up/paired:true,patch0=0:tatami_mat_half,patch1=0:tatami_mat_even,patch2=0:tatami_mat_odd,stdrot=true
|
|
||||||
block:id=%tatami,state=facing:up/paired:false,patch0=0:tatami_mat_half,patch1=0:tatami_mat_half,patch2=0:tatami_mat_half,patch3=0:tatami_mat_half,patch4=0:tatami_mat_half,patch5=0:tatami_mat_half,stdrot=true
|
|
||||||
block:id=%tatami,state=facing:down/paired:true,patch0=0:tatami_mat_half,patch1=0:tatami_mat_odd,patch2=0:tatami_mat_even,stdrot=true
|
|
||||||
block:id=%tatami,state=facing:down/paired:false,patch0=0:tatami_mat_half,stdrot=true
|
|
||||||
block:id=%full_tatami_mat,state=facing:north/part:head,patch0=0:tatami_mat_even,patch1=0:tatami_mat_side,patch2=0:tatami_mat_odd,patch3=0:tatami_mat_half,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%full_tatami_mat,state=facing:north/part:foot,patch0=0:tatami_mat_odd,patch1=0:tatami_mat_side,patch2=0:tatami_mat_even,patch3=0:tatami_mat_half,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%full_tatami_mat,state=facing:south/part:head,patch0=0:tatami_mat_even,patch1=0:tatami_mat_side,patch2=0:tatami_mat_odd,patch3=0:tatami_mat_half,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%full_tatami_mat,state=facing:south/part:foot,patch0=0:tatami_mat_odd,patch1=0:tatami_mat_side,patch2=0:tatami_mat_even,patch3=0:tatami_mat_half,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%full_tatami_mat,state=facing:west/part:head,patch0=0:tatami_mat_even,patch1=0:tatami_mat_side,patch2=0:tatami_mat_odd,patch3=0:tatami_mat_half,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%full_tatami_mat,state=facing:west/part:foot,patch0=0:tatami_mat_odd,patch1=0:tatami_mat_side,patch2=0:tatami_mat_even,patch3=0:tatami_mat_half,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%full_tatami_mat,state=facing:east/part:head,patch0=0:tatami_mat_even,patch1=0:tatami_mat_side,patch2=0:tatami_mat_odd,patch3=0:tatami_mat_half,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%full_tatami_mat,state=facing:east/part:foot,patch0=0:tatami_mat_odd,patch1=0:tatami_mat_side,patch2=0:tatami_mat_even,patch3=0:tatami_mat_half,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%half_tatami_mat,state=facing:north,patch0=0:tatami_mat_half,patch1=0:tatami_mat_side,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%half_tatami_mat,state=facing:south,patch0=0:tatami_mat_half,patch1=0:tatami_mat_side,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%half_tatami_mat,state=facing:west,patch0=0:tatami_mat_half,patch1=0:tatami_mat_side,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%half_tatami_mat,state=facing:east,patch0=0:tatami_mat_half,patch1=0:tatami_mat_side,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%brown_mushroom_colony,state=age:0,patch0=0:brown_mushroom_colony_stage0,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%brown_mushroom_colony,state=age:1,patch0=0:brown_mushroom_colony_stage1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%brown_mushroom_colony,state=age:2,patch0=0:brown_mushroom_colony_stage2,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%brown_mushroom_colony,state=age:3,patch0=0:brown_mushroom_colony_stage3,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%red_mushroom_colony,state=age:0,patch0=0:red_mushroom_colony_stage0,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%red_mushroom_colony,state=age:1,patch0=0:red_mushroom_colony_stage1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%red_mushroom_colony,state=age:2,patch0=0:red_mushroom_colony_stage2,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%red_mushroom_colony,state=age:3,patch0=0:red_mushroom_colony_stage3,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%organic_compost,state=composting:0,patch0=0:organic_compost_stage0,patch1=0:organic_compost_stage0,patch2=0:organic_compost_stage0,patch3=0:organic_compost_stage0,patch4=0:organic_compost_stage0,patch5=0:organic_compost_stage0,stdrot=true
|
|
||||||
block:id=%organic_compost,state=composting:1,patch0=0:organic_compost_stage0,patch1=0:organic_compost_stage0,patch2=0:organic_compost_stage0,patch3=0:organic_compost_stage0,patch4=0:organic_compost_stage0,patch5=0:organic_compost_stage0,stdrot=true
|
|
||||||
block:id=%organic_compost,state=composting:2,patch0=0:organic_compost_stage1,patch1=0:organic_compost_stage1,patch2=0:organic_compost_stage1,patch3=0:organic_compost_stage1,patch4=0:organic_compost_stage1,patch5=0:organic_compost_stage1,stdrot=true
|
|
||||||
block:id=%organic_compost,state=composting:3,patch0=0:organic_compost_stage1,patch1=0:organic_compost_stage1,patch2=0:organic_compost_stage1,patch3=0:organic_compost_stage1,patch4=0:organic_compost_stage1,patch5=0:organic_compost_stage1,stdrot=true
|
|
||||||
block:id=%organic_compost,state=composting:4,patch0=0:organic_compost_stage2,patch1=0:organic_compost_stage2,patch2=0:organic_compost_stage2,patch3=0:organic_compost_stage2,patch4=0:organic_compost_stage2,patch5=0:organic_compost_stage2,stdrot=true
|
|
||||||
block:id=%organic_compost,state=composting:5,patch0=0:organic_compost_stage2,patch1=0:organic_compost_stage2,patch2=0:organic_compost_stage2,patch3=0:organic_compost_stage2,patch4=0:organic_compost_stage2,patch5=0:organic_compost_stage2,stdrot=true
|
|
||||||
block:id=%organic_compost,state=composting:6,patch0=0:organic_compost_stage3,patch1=0:organic_compost_stage3,patch2=0:organic_compost_stage3,patch3=0:organic_compost_stage3,patch4=0:organic_compost_stage3,patch5=0:organic_compost_stage3,stdrot=true
|
|
||||||
block:id=%organic_compost,state=composting:7,patch0=0:organic_compost_stage3,patch1=0:organic_compost_stage3,patch2=0:organic_compost_stage3,patch3=0:organic_compost_stage3,patch4=0:organic_compost_stage3,patch5=0:organic_compost_stage3,stdrot=true
|
|
||||||
block:id=%rich_soil,patch0=0:rich_soil,patch1=0:rich_soil,patch2=0:rich_soil,patch3=0:rich_soil,patch4=0:rich_soil,patch5=0:rich_soil,stdrot=true
|
|
||||||
block:id=%rich_soil_farmland,state=moisture:0,patch0=0:rich_soil_farmland,patch1=0:rich_soil,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%rich_soil_farmland,state=moisture:1,patch0=0:rich_soil_farmland,patch1=0:rich_soil,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%rich_soil_farmland,state=moisture:2,patch0=0:rich_soil_farmland,patch1=0:rich_soil,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%rich_soil_farmland,state=moisture:3,patch0=0:rich_soil_farmland,patch1=0:rich_soil,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%rich_soil_farmland,state=moisture:4,patch0=0:rich_soil_farmland,patch1=0:rich_soil,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%rich_soil_farmland,state=moisture:5,patch0=0:rich_soil_farmland,patch1=0:rich_soil,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%rich_soil_farmland,state=moisture:6,patch0=0:rich_soil_farmland,patch1=0:rich_soil,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%rich_soil_farmland,state=moisture:7,patch0=0:rich_soil_farmland_moist,patch1=0:rich_soil_farmland_moist_side,patch2=0:rich_soil,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%apple_pie,state=bites:0/facing:north,patch0=0:apple_pie_top,patch1=0:pie_side,patch2=0:pie_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%apple_pie,state=bites:0/facing:south,patch0=0:apple_pie_top,patch1=0:pie_side,patch2=0:pie_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%apple_pie,state=bites:0/facing:west,patch0=0:apple_pie_top,patch1=0:pie_side,patch2=0:pie_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%apple_pie,state=bites:0/facing:east,patch0=0:apple_pie_top,patch1=0:pie_side,patch2=0:pie_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%apple_pie,state=bites:1/facing:north,patch0=0:apple_pie_top,patch1=0:apple_pie_inner,patch2=0:pie_bottom,patch3=0:pie_side,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%apple_pie,state=bites:1/facing:south,patch0=0:apple_pie_top,patch1=0:apple_pie_inner,patch2=0:pie_bottom,patch3=0:pie_side,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%apple_pie,state=bites:1/facing:west,patch0=0:apple_pie_top,patch1=0:apple_pie_inner,patch2=0:pie_bottom,patch3=0:pie_side,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%apple_pie,state=bites:1/facing:east,patch0=0:apple_pie_top,patch1=0:apple_pie_inner,patch2=0:pie_bottom,patch3=0:pie_side,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%apple_pie,state=bites:2/facing:north,patch0=0:apple_pie_top,patch1=0:pie_side,patch2=0:pie_bottom,patch3=0:apple_pie_inner,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%apple_pie,state=bites:2/facing:south,patch0=0:apple_pie_top,patch1=0:pie_side,patch2=0:pie_bottom,patch3=0:apple_pie_inner,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%apple_pie,state=bites:2/facing:west,patch0=0:apple_pie_top,patch1=0:pie_side,patch2=0:pie_bottom,patch3=0:apple_pie_inner,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%apple_pie,state=bites:2/facing:east,patch0=0:apple_pie_top,patch1=0:pie_side,patch2=0:pie_bottom,patch3=0:apple_pie_inner,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%apple_pie,state=bites:3/facing:north,patch0=0:apple_pie_top,patch1=0:pie_side,patch2=0:pie_bottom,patch3=0:apple_pie_inner,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%apple_pie,state=bites:3/facing:south,patch0=0:apple_pie_top,patch1=0:pie_side,patch2=0:pie_bottom,patch3=0:apple_pie_inner,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%apple_pie,state=bites:3/facing:west,patch0=0:apple_pie_top,patch1=0:pie_side,patch2=0:pie_bottom,patch3=0:apple_pie_inner,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%apple_pie,state=bites:3/facing:east,patch0=0:apple_pie_top,patch1=0:pie_side,patch2=0:pie_bottom,patch3=0:apple_pie_inner,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%sweet_berry_cheesecake,state=bites:0/facing:north,patch0=0:sweet_berry_cheesecake_top,patch1=0:pie_side,patch2=0:pie_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%sweet_berry_cheesecake,state=bites:0/facing:south,patch0=0:sweet_berry_cheesecake_top,patch1=0:pie_side,patch2=0:pie_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%sweet_berry_cheesecake,state=bites:0/facing:west,patch0=0:sweet_berry_cheesecake_top,patch1=0:pie_side,patch2=0:pie_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%sweet_berry_cheesecake,state=bites:0/facing:east,patch0=0:sweet_berry_cheesecake_top,patch1=0:pie_side,patch2=0:pie_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%sweet_berry_cheesecake,state=bites:1/facing:north,patch0=0:sweet_berry_cheesecake_top,patch1=0:sweet_berry_cheesecake_inner,patch2=0:pie_bottom,patch3=0:pie_side,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%sweet_berry_cheesecake,state=bites:1/facing:south,patch0=0:sweet_berry_cheesecake_top,patch1=0:sweet_berry_cheesecake_inner,patch2=0:pie_bottom,patch3=0:pie_side,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%sweet_berry_cheesecake,state=bites:1/facing:west,patch0=0:sweet_berry_cheesecake_top,patch1=0:sweet_berry_cheesecake_inner,patch2=0:pie_bottom,patch3=0:pie_side,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%sweet_berry_cheesecake,state=bites:1/facing:east,patch0=0:sweet_berry_cheesecake_top,patch1=0:sweet_berry_cheesecake_inner,patch2=0:pie_bottom,patch3=0:pie_side,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%sweet_berry_cheesecake,state=bites:2/facing:north,patch0=0:sweet_berry_cheesecake_top,patch1=0:pie_side,patch2=0:pie_bottom,patch3=0:sweet_berry_cheesecake_inner,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%sweet_berry_cheesecake,state=bites:2/facing:south,patch0=0:sweet_berry_cheesecake_top,patch1=0:pie_side,patch2=0:pie_bottom,patch3=0:sweet_berry_cheesecake_inner,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%sweet_berry_cheesecake,state=bites:2/facing:west,patch0=0:sweet_berry_cheesecake_top,patch1=0:pie_side,patch2=0:pie_bottom,patch3=0:sweet_berry_cheesecake_inner,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%sweet_berry_cheesecake,state=bites:2/facing:east,patch0=0:sweet_berry_cheesecake_top,patch1=0:pie_side,patch2=0:pie_bottom,patch3=0:sweet_berry_cheesecake_inner,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%sweet_berry_cheesecake,state=bites:3/facing:north,patch0=0:sweet_berry_cheesecake_top,patch1=0:pie_side,patch2=0:pie_bottom,patch3=0:sweet_berry_cheesecake_inner,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%sweet_berry_cheesecake,state=bites:3/facing:south,patch0=0:sweet_berry_cheesecake_top,patch1=0:pie_side,patch2=0:pie_bottom,patch3=0:sweet_berry_cheesecake_inner,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%sweet_berry_cheesecake,state=bites:3/facing:west,patch0=0:sweet_berry_cheesecake_top,patch1=0:pie_side,patch2=0:pie_bottom,patch3=0:sweet_berry_cheesecake_inner,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%sweet_berry_cheesecake,state=bites:3/facing:east,patch0=0:sweet_berry_cheesecake_top,patch1=0:pie_side,patch2=0:pie_bottom,patch3=0:sweet_berry_cheesecake_inner,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%chocolate_pie,state=bites:0/facing:north,patch0=0:chocolate_pie_top,patch1=0:pie_side,patch2=0:pie_bottom,patch3=0:chocolate_pie_inner,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%chocolate_pie,state=bites:0/facing:south,patch0=0:chocolate_pie_top,patch1=0:pie_side,patch2=0:pie_bottom,patch3=0:chocolate_pie_inner,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%chocolate_pie,state=bites:0/facing:west,patch0=0:chocolate_pie_top,patch1=0:pie_side,patch2=0:pie_bottom,patch3=0:chocolate_pie_inner,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%chocolate_pie,state=bites:0/facing:east,patch0=0:chocolate_pie_top,patch1=0:pie_side,patch2=0:pie_bottom,patch3=0:chocolate_pie_inner,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%chocolate_pie,state=bites:1/facing:north,patch0=0:chocolate_pie_top,patch1=0:pie_side,patch2=0:pie_bottom,patch3=0:chocolate_pie_inner,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%chocolate_pie,state=bites:1/facing:south,patch0=0:chocolate_pie_top,patch1=0:pie_side,patch2=0:pie_bottom,patch3=0:chocolate_pie_inner,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%chocolate_pie,state=bites:1/facing:west,patch0=0:chocolate_pie_top,patch1=0:pie_side,patch2=0:pie_bottom,patch3=0:chocolate_pie_inner,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%chocolate_pie,state=bites:1/facing:east,patch0=0:chocolate_pie_top,patch1=0:pie_side,patch2=0:pie_bottom,patch3=0:chocolate_pie_inner,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%chocolate_pie,state=bites:2/facing:north,patch0=0:chocolate_pie_top,patch1=0:pie_side,patch2=0:pie_bottom,patch3=0:chocolate_pie_inner,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%chocolate_pie,state=bites:2/facing:south,patch0=0:chocolate_pie_top,patch1=0:pie_side,patch2=0:pie_bottom,patch3=0:chocolate_pie_inner,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%chocolate_pie,state=bites:2/facing:west,patch0=0:chocolate_pie_top,patch1=0:pie_side,patch2=0:pie_bottom,patch3=0:chocolate_pie_inner,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%chocolate_pie,state=bites:2/facing:east,patch0=0:chocolate_pie_top,patch1=0:pie_side,patch2=0:pie_bottom,patch3=0:chocolate_pie_inner,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%chocolate_pie,state=bites:3/facing:north,patch0=0:chocolate_pie_top,patch1=0:pie_side,patch2=0:pie_bottom,patch3=0:chocolate_pie_inner,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%chocolate_pie,state=bites:3/facing:south,patch0=0:chocolate_pie_top,patch1=0:pie_side,patch2=0:pie_bottom,patch3=0:chocolate_pie_inner,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%chocolate_pie,state=bites:3/facing:west,patch0=0:chocolate_pie_top,patch1=0:pie_side,patch2=0:pie_bottom,patch3=0:chocolate_pie_inner,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%chocolate_pie,state=bites:3/facing:east,patch0=0:chocolate_pie_top,patch1=0:pie_side,patch2=0:pie_bottom,patch3=0:chocolate_pie_inner,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%wild_cabbages,patch0=0:wild_cabbages,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%wild_onions,patch0=0:wild_onions,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%wild_tomatoes,patch0=0:wild_tomatoes,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%wild_carrots,patch0=0:wild_carrots,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%wild_potatoes,patch0=0:wild_potatoes,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%wild_beetroots,patch0=0:wild_beetroots,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%wild_rice,state=half:upper,patch0=0:wild_rice_top,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%wild_rice,state=half:lower,patch0=0:wild_rice_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%cabbages,state=age:0,patch0=0:cabbages_stage0,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%cabbages,state=age:1,patch0=0:cabbages_stage1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%cabbages,state=age:2,patch0=0:cabbages_stage2,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%cabbages,state=age:3,patch0=0:cabbages_stage3,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%cabbages,state=age:4,patch0=0:cabbages_stage4,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%cabbages,state=age:5,patch0=0:cabbages_stage5,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%cabbages,state=age:6,patch0=0:cabbages_stage6,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%cabbages,state=age:7,patch0=0:cabbages_stage7,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%onions,state=age:0,patch0=0:onions_stage0,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%onions,state=age:1,patch0=0:onions_stage0,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%onions,state=age:2,patch0=0:onions_stage1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%onions,state=age:3,patch0=0:onions_stage1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%onions,state=age:4,patch0=0:onions_stage2,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%onions,state=age:5,patch0=0:onions_stage2,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%onions,state=age:6,patch0=0:onions_stage2,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%onions,state=age:7,patch0=0:onions_stage3,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%tomatoes,state=age:0,patch0=0:tomatoes_stage0,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%tomatoes,state=age:1,patch0=0:tomatoes_stage0,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%tomatoes,state=age:2,patch0=0:tomatoes_stage1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%tomatoes,state=age:3,patch0=0:tomatoes_stage1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%tomatoes,state=age:4,patch0=0:tomatoes_stage2,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%tomatoes,state=age:5,patch0=0:tomatoes_stage2,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%tomatoes,state=age:6,patch0=0:tomatoes_stage3,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%tomatoes,state=age:7,patch0=0:tomatoes_stage4,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%rice,state=age:0/supporting:true,patch0=0:rice_stage0,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%rice,state=age:0/supporting:false,patch0=0:rice_stage0,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%rice,state=age:1/supporting:true,patch0=0:rice_stage1,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%rice,state=age:1/supporting:false,patch0=0:rice_stage1,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%rice,state=age:2/supporting:true,patch0=0:rice_stage2,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%rice,state=age:2/supporting:false,patch0=0:rice_stage2,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%rice,state=age:3/supporting:true,patch0=0:rice_supporting,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%rice,state=age:3/supporting:false,patch0=0:rice_stage3,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%rice_panicles,state=age:0,patch0=0:rice_panicles_stage0,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%rice_panicles,state=age:1,patch0=0:rice_panicles_stage1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%rice_panicles,state=age:2,patch0=0:rice_panicles_stage2,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%rice_panicles,state=age:3,patch0=0:rice_panicles_stage3,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%roast_chicken_block,state=facing:north/servings:0,patch0=0:roast_chicken_gibs,patch1=0:tray_top_leftover,patch2=0:tray_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%roast_chicken_block,state=facing:north/servings:1,patch0=0:roast_chicken_eaten,patch1=0:roast_chicken_gibs,patch2=0:tray_top_veggies,patch3=0:tray_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%roast_chicken_block,state=facing:north/servings:2,patch0=0:roast_chicken_eaten,patch1=0:roast_chicken_gibs,patch2=0:tray_top_veggies,patch3=0:tray_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%roast_chicken_block,state=facing:north/servings:3,patch0=0:roast_chicken_eaten,patch1=0:roast_chicken_gibs,patch2=0:tray_top_veggies,patch3=0:tray_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%roast_chicken_block,state=facing:north/servings:4,patch0=0:roast_chicken_body,patch1=0:roast_chicken_gibs,patch2=0:tray_top_veggies,patch3=0:tray_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%roast_chicken_block,state=facing:south/servings:0,patch0=0:roast_chicken_gibs,patch1=0:tray_top_leftover,patch2=0:tray_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%roast_chicken_block,state=facing:south/servings:1,patch0=0:roast_chicken_eaten,patch1=0:roast_chicken_gibs,patch2=0:tray_top_veggies,patch3=0:tray_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%roast_chicken_block,state=facing:south/servings:2,patch0=0:roast_chicken_eaten,patch1=0:roast_chicken_gibs,patch2=0:tray_top_veggies,patch3=0:tray_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%roast_chicken_block,state=facing:south/servings:3,patch0=0:roast_chicken_eaten,patch1=0:roast_chicken_gibs,patch2=0:tray_top_veggies,patch3=0:tray_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%roast_chicken_block,state=facing:south/servings:4,patch0=0:roast_chicken_body,patch1=0:roast_chicken_gibs,patch2=0:tray_top_veggies,patch3=0:tray_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%roast_chicken_block,state=facing:west/servings:0,patch0=0:roast_chicken_gibs,patch1=0:tray_top_leftover,patch2=0:tray_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%roast_chicken_block,state=facing:west/servings:1,patch0=0:roast_chicken_eaten,patch1=0:roast_chicken_gibs,patch2=0:tray_top_veggies,patch3=0:tray_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%roast_chicken_block,state=facing:west/servings:2,patch0=0:roast_chicken_eaten,patch1=0:roast_chicken_gibs,patch2=0:tray_top_veggies,patch3=0:tray_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%roast_chicken_block,state=facing:west/servings:3,patch0=0:roast_chicken_eaten,patch1=0:roast_chicken_gibs,patch2=0:tray_top_veggies,patch3=0:tray_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%roast_chicken_block,state=facing:west/servings:4,patch0=0:roast_chicken_body,patch1=0:roast_chicken_gibs,patch2=0:tray_top_veggies,patch3=0:tray_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%roast_chicken_block,state=facing:east/servings:0,patch0=0:roast_chicken_gibs,patch1=0:tray_top_leftover,patch2=0:tray_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%roast_chicken_block,state=facing:east/servings:1,patch0=0:roast_chicken_eaten,patch1=0:roast_chicken_gibs,patch2=0:tray_top_veggies,patch3=0:tray_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%roast_chicken_block,state=facing:east/servings:2,patch0=0:roast_chicken_eaten,patch1=0:roast_chicken_gibs,patch2=0:tray_top_veggies,patch3=0:tray_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%roast_chicken_block,state=facing:east/servings:3,patch0=0:roast_chicken_eaten,patch1=0:roast_chicken_gibs,patch2=0:tray_top_veggies,patch3=0:tray_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%roast_chicken_block,state=facing:east/servings:4,patch0=0:roast_chicken_body,patch1=0:roast_chicken_gibs,patch2=0:tray_top_veggies,patch3=0:tray_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%stuffed_pumpkin_block,state=facing:north/servings:0,patch0=0:stuffed_pumpkin_details,patch1=0:stuffed_pumpkin_top_eaten,patch2=0:stuffed_pumpkin_side,patch3=0:stuffed_pumpkin_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%stuffed_pumpkin_block,state=facing:north/servings:1,patch0=0:stuffed_pumpkin_details,patch1=0:stuffed_pumpkin_top_eaten,patch2=0:stuffed_pumpkin_side,patch3=0:stuffed_pumpkin_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%stuffed_pumpkin_block,state=facing:north/servings:2,patch0=0:stuffed_pumpkin_details,patch1=0:stuffed_pumpkin_top_eaten,patch2=0:stuffed_pumpkin_side,patch3=0:stuffed_pumpkin_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%stuffed_pumpkin_block,state=facing:north/servings:3,patch0=0:stuffed_pumpkin_details,patch1=0:stuffed_pumpkin_top_eaten,patch2=0:stuffed_pumpkin_side,patch3=0:stuffed_pumpkin_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%stuffed_pumpkin_block,state=facing:north/servings:4,patch0=0:stuffed_pumpkin_details,patch1=0:stuffed_pumpkin_top,patch2=0:stuffed_pumpkin_side,patch3=0:stuffed_pumpkin_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%stuffed_pumpkin_block,state=facing:south/servings:0,patch0=0:stuffed_pumpkin_details,patch1=0:stuffed_pumpkin_top_eaten,patch2=0:stuffed_pumpkin_side,patch3=0:stuffed_pumpkin_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%stuffed_pumpkin_block,state=facing:south/servings:1,patch0=0:stuffed_pumpkin_details,patch1=0:stuffed_pumpkin_top_eaten,patch2=0:stuffed_pumpkin_side,patch3=0:stuffed_pumpkin_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%stuffed_pumpkin_block,state=facing:south/servings:2,patch0=0:stuffed_pumpkin_details,patch1=0:stuffed_pumpkin_top_eaten,patch2=0:stuffed_pumpkin_side,patch3=0:stuffed_pumpkin_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%stuffed_pumpkin_block,state=facing:south/servings:3,patch0=0:stuffed_pumpkin_details,patch1=0:stuffed_pumpkin_top_eaten,patch2=0:stuffed_pumpkin_side,patch3=0:stuffed_pumpkin_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%stuffed_pumpkin_block,state=facing:south/servings:4,patch0=0:stuffed_pumpkin_details,patch1=0:stuffed_pumpkin_top,patch2=0:stuffed_pumpkin_side,patch3=0:stuffed_pumpkin_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%stuffed_pumpkin_block,state=facing:west/servings:0,patch0=0:stuffed_pumpkin_details,patch1=0:stuffed_pumpkin_top_eaten,patch2=0:stuffed_pumpkin_side,patch3=0:stuffed_pumpkin_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%stuffed_pumpkin_block,state=facing:west/servings:1,patch0=0:stuffed_pumpkin_details,patch1=0:stuffed_pumpkin_top_eaten,patch2=0:stuffed_pumpkin_side,patch3=0:stuffed_pumpkin_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%stuffed_pumpkin_block,state=facing:west/servings:2,patch0=0:stuffed_pumpkin_details,patch1=0:stuffed_pumpkin_top_eaten,patch2=0:stuffed_pumpkin_side,patch3=0:stuffed_pumpkin_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%stuffed_pumpkin_block,state=facing:west/servings:3,patch0=0:stuffed_pumpkin_details,patch1=0:stuffed_pumpkin_top_eaten,patch2=0:stuffed_pumpkin_side,patch3=0:stuffed_pumpkin_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%stuffed_pumpkin_block,state=facing:west/servings:4,patch0=0:stuffed_pumpkin_details,patch1=0:stuffed_pumpkin_top,patch2=0:stuffed_pumpkin_side,patch3=0:stuffed_pumpkin_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%stuffed_pumpkin_block,state=facing:east/servings:0,patch0=0:stuffed_pumpkin_details,patch1=0:stuffed_pumpkin_top_eaten,patch2=0:stuffed_pumpkin_side,patch3=0:stuffed_pumpkin_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%stuffed_pumpkin_block,state=facing:east/servings:1,patch0=0:stuffed_pumpkin_details,patch1=0:stuffed_pumpkin_top_eaten,patch2=0:stuffed_pumpkin_side,patch3=0:stuffed_pumpkin_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%stuffed_pumpkin_block,state=facing:east/servings:2,patch0=0:stuffed_pumpkin_details,patch1=0:stuffed_pumpkin_top_eaten,patch2=0:stuffed_pumpkin_side,patch3=0:stuffed_pumpkin_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%stuffed_pumpkin_block,state=facing:east/servings:3,patch0=0:stuffed_pumpkin_details,patch1=0:stuffed_pumpkin_top_eaten,patch2=0:stuffed_pumpkin_side,patch3=0:stuffed_pumpkin_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%stuffed_pumpkin_block,state=facing:east/servings:4,patch0=0:stuffed_pumpkin_details,patch1=0:stuffed_pumpkin_top,patch2=0:stuffed_pumpkin_side,patch3=0:stuffed_pumpkin_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%honey_glazed_ham_block,state=facing:north/servings:0,patch0=0:tray_rice_berry_leftover,patch1=0:tray_bottom,patch2=0:honey_glazed_ham_bone,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%honey_glazed_ham_block,state=facing:north/servings:1,patch0=0:tray_rice_berry_garnish,patch1=0:tray_bottom,patch2=0:honey_glazed_ham_body,patch3=0:honey_glazed_ham_bone,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%honey_glazed_ham_block,state=facing:north/servings:2,patch0=0:tray_rice_berry_garnish,patch1=0:tray_bottom,patch2=0:honey_glazed_ham_body,patch3=0:honey_glazed_ham_bone,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%honey_glazed_ham_block,state=facing:north/servings:3,patch0=0:tray_rice_berry_garnish,patch1=0:tray_bottom,patch2=0:honey_glazed_ham_body,patch3=0:honey_glazed_ham_bone,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%honey_glazed_ham_block,state=facing:north/servings:4,patch0=0:tray_rice_berry_garnish,patch1=0:tray_bottom,patch2=0:honey_glazed_ham_body,patch3=0:honey_glazed_ham_bone,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%honey_glazed_ham_block,state=facing:south/servings:0,patch0=0:tray_rice_berry_leftover,patch1=0:tray_bottom,patch2=0:honey_glazed_ham_bone,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%honey_glazed_ham_block,state=facing:south/servings:1,patch0=0:tray_rice_berry_garnish,patch1=0:tray_bottom,patch2=0:honey_glazed_ham_body,patch3=0:honey_glazed_ham_bone,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%honey_glazed_ham_block,state=facing:south/servings:2,patch0=0:tray_rice_berry_garnish,patch1=0:tray_bottom,patch2=0:honey_glazed_ham_body,patch3=0:honey_glazed_ham_bone,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%honey_glazed_ham_block,state=facing:south/servings:3,patch0=0:tray_rice_berry_garnish,patch1=0:tray_bottom,patch2=0:honey_glazed_ham_body,patch3=0:honey_glazed_ham_bone,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%honey_glazed_ham_block,state=facing:south/servings:4,patch0=0:tray_rice_berry_garnish,patch1=0:tray_bottom,patch2=0:honey_glazed_ham_body,patch3=0:honey_glazed_ham_bone,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%honey_glazed_ham_block,state=facing:west/servings:0,patch0=0:tray_rice_berry_leftover,patch1=0:tray_bottom,patch2=0:honey_glazed_ham_bone,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%honey_glazed_ham_block,state=facing:west/servings:1,patch0=0:tray_rice_berry_garnish,patch1=0:tray_bottom,patch2=0:honey_glazed_ham_body,patch3=0:honey_glazed_ham_bone,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%honey_glazed_ham_block,state=facing:west/servings:2,patch0=0:tray_rice_berry_garnish,patch1=0:tray_bottom,patch2=0:honey_glazed_ham_body,patch3=0:honey_glazed_ham_bone,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%honey_glazed_ham_block,state=facing:west/servings:3,patch0=0:tray_rice_berry_garnish,patch1=0:tray_bottom,patch2=0:honey_glazed_ham_body,patch3=0:honey_glazed_ham_bone,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%honey_glazed_ham_block,state=facing:west/servings:4,patch0=0:tray_rice_berry_garnish,patch1=0:tray_bottom,patch2=0:honey_glazed_ham_body,patch3=0:honey_glazed_ham_bone,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%honey_glazed_ham_block,state=facing:east/servings:0,patch0=0:tray_rice_berry_leftover,patch1=0:tray_bottom,patch2=0:honey_glazed_ham_bone,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%honey_glazed_ham_block,state=facing:east/servings:1,patch0=0:tray_rice_berry_garnish,patch1=0:tray_bottom,patch2=0:honey_glazed_ham_body,patch3=0:honey_glazed_ham_bone,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%honey_glazed_ham_block,state=facing:east/servings:2,patch0=0:tray_rice_berry_garnish,patch1=0:tray_bottom,patch2=0:honey_glazed_ham_body,patch3=0:honey_glazed_ham_bone,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%honey_glazed_ham_block,state=facing:east/servings:3,patch0=0:tray_rice_berry_garnish,patch1=0:tray_bottom,patch2=0:honey_glazed_ham_body,patch3=0:honey_glazed_ham_bone,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%honey_glazed_ham_block,state=facing:east/servings:4,patch0=0:tray_rice_berry_garnish,patch1=0:tray_bottom,patch2=0:honey_glazed_ham_body,patch3=0:honey_glazed_ham_bone,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%shepherds_pie_block,state=facing:north/servings:0,patch0=0:tray_pie_leftover,patch1=0:tray_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%shepherds_pie_block,state=facing:north/servings:1,patch0=0:tray_pie_leftover,patch1=0:tray_bottom,patch2=0:shepherds_pie_top,patch3=0:shepherds_pie_inner,patch4=0:shepherds_pie_side,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%shepherds_pie_block,state=facing:north/servings:2,patch0=0:tray_pie_leftover,patch1=0:tray_bottom,patch2=0:shepherds_pie_top,patch3=0:shepherds_pie_side,patch4=0:shepherds_pie_inner,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%shepherds_pie_block,state=facing:north/servings:3,patch0=0:tray_pie_leftover,patch1=0:tray_bottom,patch2=0:shepherds_pie_top,patch3=0:shepherds_pie_side,patch4=0:shepherds_pie_inner,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%shepherds_pie_block,state=facing:north/servings:4,patch0=0:tray_top,patch1=0:tray_bottom,patch2=0:shepherds_pie_top,patch3=0:shepherds_pie_side,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%shepherds_pie_block,state=facing:south/servings:0,patch0=0:tray_pie_leftover,patch1=0:tray_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%shepherds_pie_block,state=facing:south/servings:1,patch0=0:tray_pie_leftover,patch1=0:tray_bottom,patch2=0:shepherds_pie_top,patch3=0:shepherds_pie_inner,patch4=0:shepherds_pie_side,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%shepherds_pie_block,state=facing:south/servings:2,patch0=0:tray_pie_leftover,patch1=0:tray_bottom,patch2=0:shepherds_pie_top,patch3=0:shepherds_pie_side,patch4=0:shepherds_pie_inner,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%shepherds_pie_block,state=facing:south/servings:3,patch0=0:tray_pie_leftover,patch1=0:tray_bottom,patch2=0:shepherds_pie_top,patch3=0:shepherds_pie_side,patch4=0:shepherds_pie_inner,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%shepherds_pie_block,state=facing:south/servings:4,patch0=0:tray_top,patch1=0:tray_bottom,patch2=0:shepherds_pie_top,patch3=0:shepherds_pie_side,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%shepherds_pie_block,state=facing:west/servings:0,patch0=0:tray_pie_leftover,patch1=0:tray_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%shepherds_pie_block,state=facing:west/servings:1,patch0=0:tray_pie_leftover,patch1=0:tray_bottom,patch2=0:shepherds_pie_top,patch3=0:shepherds_pie_inner,patch4=0:shepherds_pie_side,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%shepherds_pie_block,state=facing:west/servings:2,patch0=0:tray_pie_leftover,patch1=0:tray_bottom,patch2=0:shepherds_pie_top,patch3=0:shepherds_pie_side,patch4=0:shepherds_pie_inner,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%shepherds_pie_block,state=facing:west/servings:3,patch0=0:tray_pie_leftover,patch1=0:tray_bottom,patch2=0:shepherds_pie_top,patch3=0:shepherds_pie_side,patch4=0:shepherds_pie_inner,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%shepherds_pie_block,state=facing:west/servings:4,patch0=0:tray_top,patch1=0:tray_bottom,patch2=0:shepherds_pie_top,patch3=0:shepherds_pie_side,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%shepherds_pie_block,state=facing:east/servings:0,patch0=0:tray_pie_leftover,patch1=0:tray_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%shepherds_pie_block,state=facing:east/servings:1,patch0=0:tray_pie_leftover,patch1=0:tray_bottom,patch2=0:shepherds_pie_top,patch3=0:shepherds_pie_inner,patch4=0:shepherds_pie_side,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%shepherds_pie_block,state=facing:east/servings:2,patch0=0:tray_pie_leftover,patch1=0:tray_bottom,patch2=0:shepherds_pie_top,patch3=0:shepherds_pie_side,patch4=0:shepherds_pie_inner,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%shepherds_pie_block,state=facing:east/servings:3,patch0=0:tray_pie_leftover,patch1=0:tray_bottom,patch2=0:shepherds_pie_top,patch3=0:shepherds_pie_side,patch4=0:shepherds_pie_inner,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%shepherds_pie_block,state=facing:east/servings:4,patch0=0:tray_top,patch1=0:tray_bottom,patch2=0:shepherds_pie_top,patch3=0:shepherds_pie_side,transparency=TRANSPARENT,stdrot=true
|
|
@ -1,162 +0,0 @@
|
|||||||
modname:farmersrespite
|
|
||||||
|
|
||||||
modellist:id=%kettle,state=facing:north/support:none/lid:true,box=3.000000/0.000000/3.000000:13.000000/7.000000/13.000000:u/0/2.500000/0.000000/5.000000/2.500000:s/0/7.500000/2.500000/10.000000/4.250000:w/0/5.000000/2.500000/7.500000/4.250000:e/0/0.000000/2.500000/2.500000/4.250000:d/0/5.000000/0.000000/7.500000/2.500000:n/0/2.500000/2.500000/5.000000/4.250000,box=7.000000/2.000000/1.000000:9.000000/8.000000/3.000000:u180/0/0.500000/0.000000/1.000000/0.500000:s/0/1.000000/0.000000/1.500000/1.500000:w/0/1.000000/0.500000/1.500000/2.000000:e/0/0.000000/0.500000/0.500000/2.000000:d/0/0.750000/0.000000/1.250000/0.500000:n/0/0.500000/0.500000/1.000000/2.000000,box=7.000000/6.000000/0.000000:9.000000/8.000000/1.000000:u/0/0.250000/5.250000/0.750000/5.500000:w/0/0.750000/5.500000/1.000000/6.000000:e/0/0.000000/5.500000/0.250000/6.000000:d/0/0.750000/5.250000/1.250000/5.500000:n/0/0.250000/5.500000/0.750000/6.000000,box=6.000000/7.000000/6.000000:10.000000/8.000000/10.000000:u180/0/6.000000/4.250000/7.000000/5.250000:s/0/8.000000/5.250000/9.000000/5.500000:w/0/5.000000/5.250000/6.000000/5.500000:e/0/7.000000/5.250000/8.000000/5.500000:d/0/6.000000/4.250000/7.000000/5.250000:n/0/6.000000/5.250000/7.000000/5.500000,box=8.000000/7.000000/4.000000:8.000000/11.000000/12.000000:w/0/0.000000/4.250000/2.000000/5.250000:e/0/0.000000/4.250000/2.000000/5.250000,box=7.000000/10.000000/5.000000:9.000000/12.000000/11.000000:u/0/4.000000/4.250000/4.500000/5.750000:s/0/5.250000/5.750000/5.750000/6.250000:w/0/2.500000/5.750000/4.000000/6.250000:e/0/4.500000/5.750000/6.000000/6.250000:d/0/4.500000/4.250000/5.000000/5.750000:n/0/5.500000/5.750000/6.000000/6.250000
|
|
||||||
modellist:id=%kettle,state=facing:north/support:tray/lid:true,box=7.000000/10.000000/5.000000:9.000000/12.000000/11.000000:u/0/4.000000/4.250000/4.500000/5.750000:s/0/5.250000/5.750000/5.750000/6.250000:w/0/2.500000/5.750000/4.000000/6.250000:e/0/4.500000/5.750000/6.000000/6.250000:d/0/4.500000/4.250000/5.000000/5.750000:n/0/5.500000/5.750000/6.000000/6.250000,box=8.000000/7.000000/4.000000:8.000000/11.000000/12.000000:w/0/0.000000/4.250000/2.000000/5.250000:e/0/0.000000/4.250000/2.000000/5.250000,box=7.000000/6.000000/0.000000:9.000000/8.000000/1.000000:u/0/0.250000/5.250000/0.750000/5.500000:w/0/0.750000/5.500000/1.000000/6.000000:e/0/0.000000/5.500000/0.250000/6.000000:d/0/0.750000/5.250000/1.250000/5.500000:n/0/0.250000/5.500000/0.750000/6.000000,box=6.000000/7.000000/6.000000:10.000000/8.000000/10.000000:u180/0/6.000000/4.250000/7.000000/5.250000:s/0/8.000000/5.250000/9.000000/5.500000:w/0/5.000000/5.250000/6.000000/5.500000:e/0/7.000000/5.250000/8.000000/5.500000:d/0/6.000000/4.250000/7.000000/5.250000:n/0/6.000000/5.250000/7.000000/5.500000,box=7.000000/2.000000/1.000000:9.000000/8.000000/3.000000:u180/0/0.500000/0.000000/1.000000/0.500000:s/0/1.000000/0.000000/1.500000/1.500000:w/0/1.000000/0.500000/1.500000/2.000000:e/0/0.000000/0.500000/0.500000/2.000000:d/0/0.750000/0.000000/1.250000/0.500000:n/0/0.500000/0.500000/1.000000/2.000000,box=3.000000/0.000000/3.000000:13.000000/7.000000/13.000000:u/0/2.500000/0.000000/5.000000/2.500000:s/0/7.500000/2.500000/10.000000/4.250000:w/0/5.000000/2.500000/7.500000/4.250000:e/0/0.000000/2.500000/2.500000/4.250000:d/0/5.000000/0.000000/7.500000/2.500000:n/0/2.500000/2.500000/5.000000/4.250000,box=0.000000/-1.000000/0.000000:16.000000/0.000000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:s/2/0.000000/0.000000/16.000000/1.000000:w/2/0.000000/0.000000/16.000000/1.000000:e/2/0.000000/0.000000/16.000000/1.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/2/0.000000/0.000000/16.000000/1.000000,box=15.000000/-16.000000/0.000000:16.000000/-1.000000/1.000000:u/2/0.000000/0.000000/0.250000/0.250000:s/2/15.000000/0.000000/16.000000/16.000000:w/2/0.000000/0.000000/1.000000/16.000000:e/2/15.000000/0.000000/16.000000/16.000000:d/2/0.000000/0.000000/0.250000/0.250000:n/2/0.000000/0.000000/1.000000/16.000000,box=0.000000/-16.000000/0.000000:1.000000/-1.000000/1.000000:u/2/0.000000/0.000000/0.250000/0.250000:s/2/0.000000/0.000000/1.000000/16.000000:w/2/0.000000/0.000000/1.000000/16.000000:e/2/15.000000/0.000000/16.000000/16.000000:d/2/0.000000/0.000000/0.250000/0.250000:n/2/15.000000/0.000000/16.000000/16.000000,box=0.000000/-16.000000/15.000000:1.000000/-1.000000/16.000000:u/2/0.000000/0.000000/0.250000/0.250000:s/2/15.000000/0.000000/16.000000/16.000000:w/2/0.000000/0.000000/1.000000/16.000000:e/2/15.000000/0.000000/16.000000/16.000000:d/2/0.000000/0.000000/0.250000/0.250000:n/2/0.000000/0.000000/1.000000/16.000000,box=15.000000/-16.000000/15.000000:16.000000/-1.000000/16.000000:u/2/0.000000/0.000000/0.250000/0.250000:s/2/15.000000/0.000000/16.000000/16.000000:w/2/15.000000/0.000000/16.000000/16.000000:e/2/0.000000/0.000000/1.000000/16.000000:d/2/0.000000/0.000000/0.250000/0.250000:n/2/0.000000/0.000000/1.000000/16.000000
|
|
||||||
modellist:id=%kettle,state=facing:north/support:handle/lid:true,box=3.000000/0.000000/3.000000:13.000000/7.000000/13.000000:u/0/2.500000/0.000000/5.000000/2.500000:s/0/7.500000/2.500000/10.000000/4.250000:w/0/5.000000/2.500000/7.500000/4.250000:e/0/0.000000/2.500000/2.500000/4.250000:d/0/5.000000/0.000000/7.500000/2.500000:n/0/2.500000/2.500000/5.000000/4.250000,box=7.000000/2.000000/1.000000:9.000000/8.000000/3.000000:u180/0/0.500000/0.000000/1.000000/0.500000:s/0/1.000000/0.000000/1.500000/1.500000:w/0/1.000000/0.500000/1.500000/2.000000:e/0/0.000000/0.500000/0.500000/2.000000:d/0/0.750000/0.000000/1.250000/0.500000:n/0/0.500000/0.500000/1.000000/2.000000,box=7.000000/6.000000/0.000000:9.000000/8.000000/1.000000:u/0/0.250000/5.250000/0.750000/5.500000:w/0/0.750000/5.500000/1.000000/6.000000:e/0/0.000000/5.500000/0.250000/6.000000:d/0/0.750000/5.250000/1.250000/5.500000:n/0/0.250000/5.500000/0.750000/6.000000,box=6.000000/7.000000/6.000000:10.000000/8.000000/10.000000:u180/0/6.000000/4.250000/7.000000/5.250000:s/0/8.000000/5.250000/9.000000/5.500000:w/0/5.000000/5.250000/6.000000/5.500000:e/0/7.000000/5.250000/8.000000/5.500000:d/0/6.000000/4.250000/7.000000/5.250000:n/0/6.000000/5.250000/7.000000/5.500000,box=8.000000/7.000000/4.000000:8.000000/11.000000/12.000000:w/0/0.000000/4.250000/2.000000/5.250000:e/0/0.000000/4.250000/2.000000/5.250000,box=7.000000/10.000000/5.000000:9.000000/12.000000/11.000000:u/0/4.000000/4.250000/4.500000/5.750000:s/0/5.250000/5.750000/5.750000/6.250000:w/0/2.500000/5.750000/4.000000/6.250000:e/0/4.500000/5.750000/6.000000/6.250000:d/0/4.500000/4.250000/5.000000/5.750000:n/0/5.500000/5.750000/6.000000/6.250000,box=6.000000/10.000000/8.000000:10.000000/16.000000/8.000000:s/1/1.000000/8.000000/5.000000/15.000000:n/1/1.000000/8.000000/5.000000/15.000000,box=6.000000/10.000000/7.000000:6.000000/16.000000/9.000000:w/1/0.000000/0.000000/2.000000/6.000000:e/1/0.000000/0.000000/2.000000/6.000000,box=10.000000/10.000000/7.000000:10.000000/16.000000/9.000000:w/1/0.000000/0.000000/2.000000/6.000000:e/1/0.000000/0.000000/2.000000/6.000000,box=6.000000/15.990000/7.000000:10.000000/15.990000/9.000000:u/1/0.000000/0.000000/4.000000/2.000000:d/1/0.000000/0.000000/4.000000/2.000000,box=6.000000/10.000000/7.000000:7.000000/10.000000/9.000000:u/1/3.000000/0.000000/4.000000/2.000000:d/1/3.000000/0.000000/4.000000/2.000000,box=9.000000/10.000000/7.000000:10.000000/10.000000/9.000000:u/1/0.000000/0.000000/1.000000/2.000000:d/1/0.000000/0.000000/1.000000/2.000000
|
|
||||||
modellist:id=%kettle,state=facing:north/support:none/lid:false,box=3.000000/0.000000/3.000000:13.000000/7.000000/13.000000:u/0/2.500000/0.000000/5.000000/2.500000:s/0/7.500000/2.500000/10.000000/4.250000:w/0/5.000000/2.500000/7.500000/4.250000:e/0/0.000000/2.500000/2.500000/4.250000:d/0/5.000000/0.000000/7.500000/2.500000:n/0/2.500000/2.500000/5.000000/4.250000,box=7.000000/2.000000/1.000000:9.000000/8.000000/3.000000:u180/0/0.500000/0.000000/1.000000/0.500000:s/0/1.000000/0.000000/1.500000/1.500000:w/0/1.000000/0.500000/1.500000/2.000000:e/0/0.000000/0.500000/0.500000/2.000000:d/0/0.750000/0.000000/1.250000/0.500000:n/0/0.500000/0.500000/1.000000/2.000000,box=7.000000/6.000000/0.000000:9.000000/8.000000/1.000000:u/0/0.250000/5.250000/0.750000/5.500000:w/0/0.750000/5.500000/1.000000/6.000000:e/0/0.000000/5.500000/0.250000/6.000000:d/0/0.750000/5.250000/1.250000/5.500000:n/0/0.250000/5.500000/0.750000/6.000000,box=8.000000/7.000000/4.000000:8.000000/11.000000/12.000000:w/0/0.000000/4.250000/2.000000/5.250000:e/0/0.000000/4.250000/2.000000/5.250000,box=7.000000/10.000000/5.000000:9.000000/12.000000/11.000000:u/0/4.000000/4.250000/4.500000/5.750000:s/0/5.250000/5.750000/5.750000/6.250000:w/0/2.500000/5.750000/4.000000/6.250000:e/0/4.500000/5.750000/6.000000/6.250000:d/0/4.500000/4.250000/5.000000/5.750000:n/0/5.500000/5.750000/6.000000/6.250000
|
|
||||||
modellist:id=%kettle,state=facing:north/support:tray/lid:false,box=7.000000/10.000000/5.000000:9.000000/12.000000/11.000000:u/0/4.000000/4.250000/4.500000/5.750000:s/0/5.250000/5.750000/5.750000/6.250000:w/0/2.500000/5.750000/4.000000/6.250000:e/0/4.500000/5.750000/6.000000/6.250000:d/0/4.500000/4.250000/5.000000/5.750000:n/0/5.500000/5.750000/6.000000/6.250000,box=8.000000/7.000000/4.000000:8.000000/11.000000/12.000000:w/0/0.000000/4.250000/2.000000/5.250000:e/0/0.000000/4.250000/2.000000/5.250000,box=7.000000/6.000000/0.000000:9.000000/8.000000/1.000000:u/0/0.250000/5.250000/0.750000/5.500000:w/0/0.750000/5.500000/1.000000/6.000000:e/0/0.000000/5.500000/0.250000/6.000000:d/0/0.750000/5.250000/1.250000/5.500000:n/0/0.250000/5.500000/0.750000/6.000000,box=7.000000/2.000000/1.000000:9.000000/8.000000/3.000000:u180/0/0.500000/0.000000/1.000000/0.500000:s/0/1.000000/0.000000/1.500000/1.500000:w/0/1.000000/0.500000/1.500000/2.000000:e/0/0.000000/0.500000/0.500000/2.000000:d/0/0.750000/0.000000/1.250000/0.500000:n/0/0.500000/0.500000/1.000000/2.000000,box=3.000000/0.000000/3.000000:13.000000/7.000000/13.000000:u/0/2.500000/0.000000/5.000000/2.500000:s/0/7.500000/2.500000/10.000000/4.250000:w/0/5.000000/2.500000/7.500000/4.250000:e/0/0.000000/2.500000/2.500000/4.250000:d/0/5.000000/0.000000/7.500000/2.500000:n/0/2.500000/2.500000/5.000000/4.250000,box=0.000000/-1.000000/0.000000:16.000000/0.000000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:s/2/0.000000/0.000000/16.000000/1.000000:w/2/0.000000/0.000000/16.000000/1.000000:e/2/0.000000/0.000000/16.000000/1.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/2/0.000000/0.000000/16.000000/1.000000,box=15.000000/-16.000000/0.000000:16.000000/-1.000000/1.000000:u/2/0.000000/0.000000/0.250000/0.250000:s/2/15.000000/0.000000/16.000000/16.000000:w/2/0.000000/0.000000/1.000000/16.000000:e/2/15.000000/0.000000/16.000000/16.000000:d/2/0.000000/0.000000/0.250000/0.250000:n/2/0.000000/0.000000/1.000000/16.000000,box=0.000000/-16.000000/0.000000:1.000000/-1.000000/1.000000:u/2/0.000000/0.000000/0.250000/0.250000:s/2/0.000000/0.000000/1.000000/16.000000:w/2/0.000000/0.000000/1.000000/16.000000:e/2/15.000000/0.000000/16.000000/16.000000:d/2/0.000000/0.000000/0.250000/0.250000:n/2/15.000000/0.000000/16.000000/16.000000,box=0.000000/-16.000000/15.000000:1.000000/-1.000000/16.000000:u/2/0.000000/0.000000/0.250000/0.250000:s/2/15.000000/0.000000/16.000000/16.000000:w/2/0.000000/0.000000/1.000000/16.000000:e/2/15.000000/0.000000/16.000000/16.000000:d/2/0.000000/0.000000/0.250000/0.250000:n/2/0.000000/0.000000/1.000000/16.000000,box=15.000000/-16.000000/15.000000:16.000000/-1.000000/16.000000:u/2/0.000000/0.000000/0.250000/0.250000:s/2/15.000000/0.000000/16.000000/16.000000:w/2/15.000000/0.000000/16.000000/16.000000:e/2/0.000000/0.000000/1.000000/16.000000:d/2/0.000000/0.000000/0.250000/0.250000:n/2/0.000000/0.000000/1.000000/16.000000
|
|
||||||
modellist:id=%kettle,state=facing:north/support:handle/lid:false,box=3.000000/0.000000/3.000000:13.000000/7.000000/13.000000:u/0/2.500000/0.000000/5.000000/2.500000:s/0/7.500000/2.500000/10.000000/4.250000:w/0/5.000000/2.500000/7.500000/4.250000:e/0/0.000000/2.500000/2.500000/4.250000:d/0/5.000000/0.000000/7.500000/2.500000:n/0/2.500000/2.500000/5.000000/4.250000,box=7.000000/2.000000/1.000000:9.000000/8.000000/3.000000:u180/0/0.500000/0.000000/1.000000/0.500000:s/0/1.000000/0.000000/1.500000/1.500000:w/0/1.000000/0.500000/1.500000/2.000000:e/0/0.000000/0.500000/0.500000/2.000000:d/0/0.750000/0.000000/1.250000/0.500000:n/0/0.500000/0.500000/1.000000/2.000000,box=7.000000/6.000000/0.000000:9.000000/8.000000/1.000000:u/0/0.250000/5.250000/0.750000/5.500000:w/0/0.750000/5.500000/1.000000/6.000000:e/0/0.000000/5.500000/0.250000/6.000000:d/0/0.750000/5.250000/1.250000/5.500000:n/0/0.250000/5.500000/0.750000/6.000000,box=8.000000/7.000000/4.000000:8.000000/11.000000/12.000000:w/0/0.000000/4.250000/2.000000/5.250000:e/0/0.000000/4.250000/2.000000/5.250000,box=7.000000/10.000000/5.000000:9.000000/12.000000/11.000000:u/0/4.000000/4.250000/4.500000/5.750000:s/0/5.250000/5.750000/5.750000/6.250000:w/0/2.500000/5.750000/4.000000/6.250000:e/0/4.500000/5.750000/6.000000/6.250000:d/0/4.500000/4.250000/5.000000/5.750000:n/0/5.500000/5.750000/6.000000/6.250000,box=6.000000/10.000000/8.000000:10.000000/16.000000/8.000000:s/1/1.000000/8.000000/5.000000/15.000000:n/1/1.000000/8.000000/5.000000/15.000000,box=6.000000/10.000000/7.000000:6.000000/16.000000/9.000000:w/1/0.000000/0.000000/2.000000/6.000000:e/1/0.000000/0.000000/2.000000/6.000000,box=10.000000/10.000000/7.000000:10.000000/16.000000/9.000000:w/1/0.000000/0.000000/2.000000/6.000000:e/1/0.000000/0.000000/2.000000/6.000000,box=6.000000/15.990000/7.000000:10.000000/15.990000/9.000000:u/1/0.000000/0.000000/4.000000/2.000000:d/1/0.000000/0.000000/4.000000/2.000000,box=6.000000/10.000000/7.000000:7.000000/10.000000/9.000000:u/1/4.000000/0.000000/4.000000/2.000000:d/1/3.000000/0.000000/4.000000/2.000000,box=9.000000/10.000000/7.000000:10.000000/10.000000/9.000000:u/1/0.000000/0.000000/1.000000/2.000000:d/1/0.000000/0.000000/1.000000/2.000000
|
|
||||||
modellist:id=%kettle,state=facing:south/support:none/lid:true,box=3.000000/0.000000/3.000000:13.000000/7.000000/13.000000:u/0/2.500000/0.000000/5.000000/2.500000:s/0/7.500000/2.500000/10.000000/4.250000:w/0/5.000000/2.500000/7.500000/4.250000:e/0/0.000000/2.500000/2.500000/4.250000:d/0/5.000000/0.000000/7.500000/2.500000:n/0/2.500000/2.500000/5.000000/4.250000:R/0/180/0,box=7.000000/2.000000/1.000000:9.000000/8.000000/3.000000:u180/0/0.500000/0.000000/1.000000/0.500000:s/0/1.000000/0.000000/1.500000/1.500000:w/0/1.000000/0.500000/1.500000/2.000000:e/0/0.000000/0.500000/0.500000/2.000000:d/0/0.750000/0.000000/1.250000/0.500000:n/0/0.500000/0.500000/1.000000/2.000000:R/0/180/0,box=7.000000/6.000000/0.000000:9.000000/8.000000/1.000000:u/0/0.250000/5.250000/0.750000/5.500000:w/0/0.750000/5.500000/1.000000/6.000000:e/0/0.000000/5.500000/0.250000/6.000000:d/0/0.750000/5.250000/1.250000/5.500000:n/0/0.250000/5.500000/0.750000/6.000000:R/0/180/0,box=6.000000/7.000000/6.000000:10.000000/8.000000/10.000000:u180/0/6.000000/4.250000/7.000000/5.250000:s/0/8.000000/5.250000/9.000000/5.500000:w/0/5.000000/5.250000/6.000000/5.500000:e/0/7.000000/5.250000/8.000000/5.500000:d/0/6.000000/4.250000/7.000000/5.250000:n/0/6.000000/5.250000/7.000000/5.500000:R/0/180/0,box=8.000000/7.000000/4.000000:8.000000/11.000000/12.000000:w/0/0.000000/4.250000/2.000000/5.250000:e/0/0.000000/4.250000/2.000000/5.250000:R/0/180/0,box=7.000000/10.000000/5.000000:9.000000/12.000000/11.000000:u/0/4.000000/4.250000/4.500000/5.750000:s/0/5.250000/5.750000/5.750000/6.250000:w/0/2.500000/5.750000/4.000000/6.250000:e/0/4.500000/5.750000/6.000000/6.250000:d/0/4.500000/4.250000/5.000000/5.750000:n/0/5.500000/5.750000/6.000000/6.250000:R/0/180/0
|
|
||||||
modellist:id=%kettle,state=facing:south/support:tray/lid:true,box=7.000000/10.000000/5.000000:9.000000/12.000000/11.000000:u/0/4.000000/4.250000/4.500000/5.750000:s/0/5.250000/5.750000/5.750000/6.250000:w/0/2.500000/5.750000/4.000000/6.250000:e/0/4.500000/5.750000/6.000000/6.250000:d/0/4.500000/4.250000/5.000000/5.750000:n/0/5.500000/5.750000/6.000000/6.250000:R/0/180/0,box=8.000000/7.000000/4.000000:8.000000/11.000000/12.000000:w/0/0.000000/4.250000/2.000000/5.250000:e/0/0.000000/4.250000/2.000000/5.250000:R/0/180/0,box=7.000000/6.000000/0.000000:9.000000/8.000000/1.000000:u/0/0.250000/5.250000/0.750000/5.500000:w/0/0.750000/5.500000/1.000000/6.000000:e/0/0.000000/5.500000/0.250000/6.000000:d/0/0.750000/5.250000/1.250000/5.500000:n/0/0.250000/5.500000/0.750000/6.000000:R/0/180/0,box=6.000000/7.000000/6.000000:10.000000/8.000000/10.000000:u180/0/6.000000/4.250000/7.000000/5.250000:s/0/8.000000/5.250000/9.000000/5.500000:w/0/5.000000/5.250000/6.000000/5.500000:e/0/7.000000/5.250000/8.000000/5.500000:d/0/6.000000/4.250000/7.000000/5.250000:n/0/6.000000/5.250000/7.000000/5.500000:R/0/180/0,box=7.000000/2.000000/1.000000:9.000000/8.000000/3.000000:u180/0/0.500000/0.000000/1.000000/0.500000:s/0/1.000000/0.000000/1.500000/1.500000:w/0/1.000000/0.500000/1.500000/2.000000:e/0/0.000000/0.500000/0.500000/2.000000:d/0/0.750000/0.000000/1.250000/0.500000:n/0/0.500000/0.500000/1.000000/2.000000:R/0/180/0,box=3.000000/0.000000/3.000000:13.000000/7.000000/13.000000:u/0/2.500000/0.000000/5.000000/2.500000:s/0/7.500000/2.500000/10.000000/4.250000:w/0/5.000000/2.500000/7.500000/4.250000:e/0/0.000000/2.500000/2.500000/4.250000:d/0/5.000000/0.000000/7.500000/2.500000:n/0/2.500000/2.500000/5.000000/4.250000:R/0/180/0,box=0.000000/-1.000000/0.000000:16.000000/0.000000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:s/2/0.000000/0.000000/16.000000/1.000000:w/2/0.000000/0.000000/16.000000/1.000000:e/2/0.000000/0.000000/16.000000/1.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/2/0.000000/0.000000/16.000000/1.000000:R/0/180/0,box=15.000000/-16.000000/0.000000:16.000000/-1.000000/1.000000:u/2/0.000000/0.000000/0.250000/0.250000:s/2/15.000000/0.000000/16.000000/16.000000:w/2/0.000000/0.000000/1.000000/16.000000:e/2/15.000000/0.000000/16.000000/16.000000:d/2/0.000000/0.000000/0.250000/0.250000:n/2/0.000000/0.000000/1.000000/16.000000:R/0/180/0,box=0.000000/-16.000000/0.000000:1.000000/-1.000000/1.000000:u/2/0.000000/0.000000/0.250000/0.250000:s/2/0.000000/0.000000/1.000000/16.000000:w/2/0.000000/0.000000/1.000000/16.000000:e/2/15.000000/0.000000/16.000000/16.000000:d/2/0.000000/0.000000/0.250000/0.250000:n/2/15.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/-16.000000/15.000000:1.000000/-1.000000/16.000000:u/2/0.000000/0.000000/0.250000/0.250000:s/2/15.000000/0.000000/16.000000/16.000000:w/2/0.000000/0.000000/1.000000/16.000000:e/2/15.000000/0.000000/16.000000/16.000000:d/2/0.000000/0.000000/0.250000/0.250000:n/2/0.000000/0.000000/1.000000/16.000000:R/0/180/0,box=15.000000/-16.000000/15.000000:16.000000/-1.000000/16.000000:u/2/0.000000/0.000000/0.250000/0.250000:s/2/15.000000/0.000000/16.000000/16.000000:w/2/15.000000/0.000000/16.000000/16.000000:e/2/0.000000/0.000000/1.000000/16.000000:d/2/0.000000/0.000000/0.250000/0.250000:n/2/0.000000/0.000000/1.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%kettle,state=facing:south/support:handle/lid:true,box=3.000000/0.000000/3.000000:13.000000/7.000000/13.000000:u/0/2.500000/0.000000/5.000000/2.500000:s/0/7.500000/2.500000/10.000000/4.250000:w/0/5.000000/2.500000/7.500000/4.250000:e/0/0.000000/2.500000/2.500000/4.250000:d/0/5.000000/0.000000/7.500000/2.500000:n/0/2.500000/2.500000/5.000000/4.250000:R/0/180/0,box=7.000000/2.000000/1.000000:9.000000/8.000000/3.000000:u180/0/0.500000/0.000000/1.000000/0.500000:s/0/1.000000/0.000000/1.500000/1.500000:w/0/1.000000/0.500000/1.500000/2.000000:e/0/0.000000/0.500000/0.500000/2.000000:d/0/0.750000/0.000000/1.250000/0.500000:n/0/0.500000/0.500000/1.000000/2.000000:R/0/180/0,box=7.000000/6.000000/0.000000:9.000000/8.000000/1.000000:u/0/0.250000/5.250000/0.750000/5.500000:w/0/0.750000/5.500000/1.000000/6.000000:e/0/0.000000/5.500000/0.250000/6.000000:d/0/0.750000/5.250000/1.250000/5.500000:n/0/0.250000/5.500000/0.750000/6.000000:R/0/180/0,box=6.000000/7.000000/6.000000:10.000000/8.000000/10.000000:u180/0/6.000000/4.250000/7.000000/5.250000:s/0/8.000000/5.250000/9.000000/5.500000:w/0/5.000000/5.250000/6.000000/5.500000:e/0/7.000000/5.250000/8.000000/5.500000:d/0/6.000000/4.250000/7.000000/5.250000:n/0/6.000000/5.250000/7.000000/5.500000:R/0/180/0,box=8.000000/7.000000/4.000000:8.000000/11.000000/12.000000:w/0/0.000000/4.250000/2.000000/5.250000:e/0/0.000000/4.250000/2.000000/5.250000:R/0/180/0,box=7.000000/10.000000/5.000000:9.000000/12.000000/11.000000:u/0/4.000000/4.250000/4.500000/5.750000:s/0/5.250000/5.750000/5.750000/6.250000:w/0/2.500000/5.750000/4.000000/6.250000:e/0/4.500000/5.750000/6.000000/6.250000:d/0/4.500000/4.250000/5.000000/5.750000:n/0/5.500000/5.750000/6.000000/6.250000:R/0/180/0,box=6.000000/10.000000/8.000000:10.000000/16.000000/8.000000:s/1/1.000000/8.000000/5.000000/15.000000:n/1/1.000000/8.000000/5.000000/15.000000:R/0/180/0,box=6.000000/10.000000/7.000000:6.000000/16.000000/9.000000:w/1/0.000000/0.000000/2.000000/6.000000:e/1/0.000000/0.000000/2.000000/6.000000:R/0/180/0,box=10.000000/10.000000/7.000000:10.000000/16.000000/9.000000:w/1/0.000000/0.000000/2.000000/6.000000:e/1/0.000000/0.000000/2.000000/6.000000:R/0/180/0,box=6.000000/15.990000/7.000000:10.000000/15.990000/9.000000:u/1/0.000000/0.000000/4.000000/2.000000:d/1/0.000000/0.000000/4.000000/2.000000:R/0/180/0,box=6.000000/10.000000/7.000000:7.000000/10.000000/9.000000:u/1/3.000000/0.000000/4.000000/2.000000:d/1/3.000000/0.000000/4.000000/2.000000:R/0/180/0,box=9.000000/10.000000/7.000000:10.000000/10.000000/9.000000:u/1/0.000000/0.000000/1.000000/2.000000:d/1/0.000000/0.000000/1.000000/2.000000:R/0/180/0
|
|
||||||
modellist:id=%kettle,state=facing:south/support:none/lid:false,box=3.000000/0.000000/3.000000:13.000000/7.000000/13.000000:u/0/2.500000/0.000000/5.000000/2.500000:s/0/7.500000/2.500000/10.000000/4.250000:w/0/5.000000/2.500000/7.500000/4.250000:e/0/0.000000/2.500000/2.500000/4.250000:d/0/5.000000/0.000000/7.500000/2.500000:n/0/2.500000/2.500000/5.000000/4.250000:R/0/180/0,box=7.000000/2.000000/1.000000:9.000000/8.000000/3.000000:u180/0/0.500000/0.000000/1.000000/0.500000:s/0/1.000000/0.000000/1.500000/1.500000:w/0/1.000000/0.500000/1.500000/2.000000:e/0/0.000000/0.500000/0.500000/2.000000:d/0/0.750000/0.000000/1.250000/0.500000:n/0/0.500000/0.500000/1.000000/2.000000:R/0/180/0,box=7.000000/6.000000/0.000000:9.000000/8.000000/1.000000:u/0/0.250000/5.250000/0.750000/5.500000:w/0/0.750000/5.500000/1.000000/6.000000:e/0/0.000000/5.500000/0.250000/6.000000:d/0/0.750000/5.250000/1.250000/5.500000:n/0/0.250000/5.500000/0.750000/6.000000:R/0/180/0,box=8.000000/7.000000/4.000000:8.000000/11.000000/12.000000:w/0/0.000000/4.250000/2.000000/5.250000:e/0/0.000000/4.250000/2.000000/5.250000:R/0/180/0,box=7.000000/10.000000/5.000000:9.000000/12.000000/11.000000:u/0/4.000000/4.250000/4.500000/5.750000:s/0/5.250000/5.750000/5.750000/6.250000:w/0/2.500000/5.750000/4.000000/6.250000:e/0/4.500000/5.750000/6.000000/6.250000:d/0/4.500000/4.250000/5.000000/5.750000:n/0/5.500000/5.750000/6.000000/6.250000:R/0/180/0
|
|
||||||
modellist:id=%kettle,state=facing:south/support:tray/lid:false,box=7.000000/10.000000/5.000000:9.000000/12.000000/11.000000:u/0/4.000000/4.250000/4.500000/5.750000:s/0/5.250000/5.750000/5.750000/6.250000:w/0/2.500000/5.750000/4.000000/6.250000:e/0/4.500000/5.750000/6.000000/6.250000:d/0/4.500000/4.250000/5.000000/5.750000:n/0/5.500000/5.750000/6.000000/6.250000:R/0/180/0,box=8.000000/7.000000/4.000000:8.000000/11.000000/12.000000:w/0/0.000000/4.250000/2.000000/5.250000:e/0/0.000000/4.250000/2.000000/5.250000:R/0/180/0,box=7.000000/6.000000/0.000000:9.000000/8.000000/1.000000:u/0/0.250000/5.250000/0.750000/5.500000:w/0/0.750000/5.500000/1.000000/6.000000:e/0/0.000000/5.500000/0.250000/6.000000:d/0/0.750000/5.250000/1.250000/5.500000:n/0/0.250000/5.500000/0.750000/6.000000:R/0/180/0,box=7.000000/2.000000/1.000000:9.000000/8.000000/3.000000:u180/0/0.500000/0.000000/1.000000/0.500000:s/0/1.000000/0.000000/1.500000/1.500000:w/0/1.000000/0.500000/1.500000/2.000000:e/0/0.000000/0.500000/0.500000/2.000000:d/0/0.750000/0.000000/1.250000/0.500000:n/0/0.500000/0.500000/1.000000/2.000000:R/0/180/0,box=3.000000/0.000000/3.000000:13.000000/7.000000/13.000000:u/0/2.500000/0.000000/5.000000/2.500000:s/0/7.500000/2.500000/10.000000/4.250000:w/0/5.000000/2.500000/7.500000/4.250000:e/0/0.000000/2.500000/2.500000/4.250000:d/0/5.000000/0.000000/7.500000/2.500000:n/0/2.500000/2.500000/5.000000/4.250000:R/0/180/0,box=0.000000/-1.000000/0.000000:16.000000/0.000000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:s/2/0.000000/0.000000/16.000000/1.000000:w/2/0.000000/0.000000/16.000000/1.000000:e/2/0.000000/0.000000/16.000000/1.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/2/0.000000/0.000000/16.000000/1.000000:R/0/180/0,box=15.000000/-16.000000/0.000000:16.000000/-1.000000/1.000000:u/2/0.000000/0.000000/0.250000/0.250000:s/2/15.000000/0.000000/16.000000/16.000000:w/2/0.000000/0.000000/1.000000/16.000000:e/2/15.000000/0.000000/16.000000/16.000000:d/2/0.000000/0.000000/0.250000/0.250000:n/2/0.000000/0.000000/1.000000/16.000000:R/0/180/0,box=0.000000/-16.000000/0.000000:1.000000/-1.000000/1.000000:u/2/0.000000/0.000000/0.250000/0.250000:s/2/0.000000/0.000000/1.000000/16.000000:w/2/0.000000/0.000000/1.000000/16.000000:e/2/15.000000/0.000000/16.000000/16.000000:d/2/0.000000/0.000000/0.250000/0.250000:n/2/15.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/-16.000000/15.000000:1.000000/-1.000000/16.000000:u/2/0.000000/0.000000/0.250000/0.250000:s/2/15.000000/0.000000/16.000000/16.000000:w/2/0.000000/0.000000/1.000000/16.000000:e/2/15.000000/0.000000/16.000000/16.000000:d/2/0.000000/0.000000/0.250000/0.250000:n/2/0.000000/0.000000/1.000000/16.000000:R/0/180/0,box=15.000000/-16.000000/15.000000:16.000000/-1.000000/16.000000:u/2/0.000000/0.000000/0.250000/0.250000:s/2/15.000000/0.000000/16.000000/16.000000:w/2/15.000000/0.000000/16.000000/16.000000:e/2/0.000000/0.000000/1.000000/16.000000:d/2/0.000000/0.000000/0.250000/0.250000:n/2/0.000000/0.000000/1.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%kettle,state=facing:south/support:handle/lid:false,box=3.000000/0.000000/3.000000:13.000000/7.000000/13.000000:u/0/2.500000/0.000000/5.000000/2.500000:s/0/7.500000/2.500000/10.000000/4.250000:w/0/5.000000/2.500000/7.500000/4.250000:e/0/0.000000/2.500000/2.500000/4.250000:d/0/5.000000/0.000000/7.500000/2.500000:n/0/2.500000/2.500000/5.000000/4.250000:R/0/180/0,box=7.000000/2.000000/1.000000:9.000000/8.000000/3.000000:u180/0/0.500000/0.000000/1.000000/0.500000:s/0/1.000000/0.000000/1.500000/1.500000:w/0/1.000000/0.500000/1.500000/2.000000:e/0/0.000000/0.500000/0.500000/2.000000:d/0/0.750000/0.000000/1.250000/0.500000:n/0/0.500000/0.500000/1.000000/2.000000:R/0/180/0,box=7.000000/6.000000/0.000000:9.000000/8.000000/1.000000:u/0/0.250000/5.250000/0.750000/5.500000:w/0/0.750000/5.500000/1.000000/6.000000:e/0/0.000000/5.500000/0.250000/6.000000:d/0/0.750000/5.250000/1.250000/5.500000:n/0/0.250000/5.500000/0.750000/6.000000:R/0/180/0,box=8.000000/7.000000/4.000000:8.000000/11.000000/12.000000:w/0/0.000000/4.250000/2.000000/5.250000:e/0/0.000000/4.250000/2.000000/5.250000:R/0/180/0,box=7.000000/10.000000/5.000000:9.000000/12.000000/11.000000:u/0/4.000000/4.250000/4.500000/5.750000:s/0/5.250000/5.750000/5.750000/6.250000:w/0/2.500000/5.750000/4.000000/6.250000:e/0/4.500000/5.750000/6.000000/6.250000:d/0/4.500000/4.250000/5.000000/5.750000:n/0/5.500000/5.750000/6.000000/6.250000:R/0/180/0,box=6.000000/10.000000/8.000000:10.000000/16.000000/8.000000:s/1/1.000000/8.000000/5.000000/15.000000:n/1/1.000000/8.000000/5.000000/15.000000:R/0/180/0,box=6.000000/10.000000/7.000000:6.000000/16.000000/9.000000:w/1/0.000000/0.000000/2.000000/6.000000:e/1/0.000000/0.000000/2.000000/6.000000:R/0/180/0,box=10.000000/10.000000/7.000000:10.000000/16.000000/9.000000:w/1/0.000000/0.000000/2.000000/6.000000:e/1/0.000000/0.000000/2.000000/6.000000:R/0/180/0,box=6.000000/15.990000/7.000000:10.000000/15.990000/9.000000:u/1/0.000000/0.000000/4.000000/2.000000:d/1/0.000000/0.000000/4.000000/2.000000:R/0/180/0,box=6.000000/10.000000/7.000000:7.000000/10.000000/9.000000:u/1/4.000000/0.000000/4.000000/2.000000:d/1/3.000000/0.000000/4.000000/2.000000:R/0/180/0,box=9.000000/10.000000/7.000000:10.000000/10.000000/9.000000:u/1/0.000000/0.000000/1.000000/2.000000:d/1/0.000000/0.000000/1.000000/2.000000:R/0/180/0
|
|
||||||
modellist:id=%kettle,state=facing:west/support:none/lid:true,box=3.000000/0.000000/3.000000:13.000000/7.000000/13.000000:u/0/2.500000/0.000000/5.000000/2.500000:s/0/7.500000/2.500000/10.000000/4.250000:w/0/5.000000/2.500000/7.500000/4.250000:e/0/0.000000/2.500000/2.500000/4.250000:d/0/5.000000/0.000000/7.500000/2.500000:n/0/2.500000/2.500000/5.000000/4.250000:R/0/270/0,box=7.000000/2.000000/1.000000:9.000000/8.000000/3.000000:u180/0/0.500000/0.000000/1.000000/0.500000:s/0/1.000000/0.000000/1.500000/1.500000:w/0/1.000000/0.500000/1.500000/2.000000:e/0/0.000000/0.500000/0.500000/2.000000:d/0/0.750000/0.000000/1.250000/0.500000:n/0/0.500000/0.500000/1.000000/2.000000:R/0/270/0,box=7.000000/6.000000/0.000000:9.000000/8.000000/1.000000:u/0/0.250000/5.250000/0.750000/5.500000:w/0/0.750000/5.500000/1.000000/6.000000:e/0/0.000000/5.500000/0.250000/6.000000:d/0/0.750000/5.250000/1.250000/5.500000:n/0/0.250000/5.500000/0.750000/6.000000:R/0/270/0,box=6.000000/7.000000/6.000000:10.000000/8.000000/10.000000:u180/0/6.000000/4.250000/7.000000/5.250000:s/0/8.000000/5.250000/9.000000/5.500000:w/0/5.000000/5.250000/6.000000/5.500000:e/0/7.000000/5.250000/8.000000/5.500000:d/0/6.000000/4.250000/7.000000/5.250000:n/0/6.000000/5.250000/7.000000/5.500000:R/0/270/0,box=8.000000/7.000000/4.000000:8.000000/11.000000/12.000000:w/0/0.000000/4.250000/2.000000/5.250000:e/0/0.000000/4.250000/2.000000/5.250000:R/0/270/0,box=7.000000/10.000000/5.000000:9.000000/12.000000/11.000000:u/0/4.000000/4.250000/4.500000/5.750000:s/0/5.250000/5.750000/5.750000/6.250000:w/0/2.500000/5.750000/4.000000/6.250000:e/0/4.500000/5.750000/6.000000/6.250000:d/0/4.500000/4.250000/5.000000/5.750000:n/0/5.500000/5.750000/6.000000/6.250000:R/0/270/0
|
|
||||||
modellist:id=%kettle,state=facing:west/support:tray/lid:true,box=7.000000/10.000000/5.000000:9.000000/12.000000/11.000000:u/0/4.000000/4.250000/4.500000/5.750000:s/0/5.250000/5.750000/5.750000/6.250000:w/0/2.500000/5.750000/4.000000/6.250000:e/0/4.500000/5.750000/6.000000/6.250000:d/0/4.500000/4.250000/5.000000/5.750000:n/0/5.500000/5.750000/6.000000/6.250000:R/0/270/0,box=8.000000/7.000000/4.000000:8.000000/11.000000/12.000000:w/0/0.000000/4.250000/2.000000/5.250000:e/0/0.000000/4.250000/2.000000/5.250000:R/0/270/0,box=7.000000/6.000000/0.000000:9.000000/8.000000/1.000000:u/0/0.250000/5.250000/0.750000/5.500000:w/0/0.750000/5.500000/1.000000/6.000000:e/0/0.000000/5.500000/0.250000/6.000000:d/0/0.750000/5.250000/1.250000/5.500000:n/0/0.250000/5.500000/0.750000/6.000000:R/0/270/0,box=6.000000/7.000000/6.000000:10.000000/8.000000/10.000000:u180/0/6.000000/4.250000/7.000000/5.250000:s/0/8.000000/5.250000/9.000000/5.500000:w/0/5.000000/5.250000/6.000000/5.500000:e/0/7.000000/5.250000/8.000000/5.500000:d/0/6.000000/4.250000/7.000000/5.250000:n/0/6.000000/5.250000/7.000000/5.500000:R/0/270/0,box=7.000000/2.000000/1.000000:9.000000/8.000000/3.000000:u180/0/0.500000/0.000000/1.000000/0.500000:s/0/1.000000/0.000000/1.500000/1.500000:w/0/1.000000/0.500000/1.500000/2.000000:e/0/0.000000/0.500000/0.500000/2.000000:d/0/0.750000/0.000000/1.250000/0.500000:n/0/0.500000/0.500000/1.000000/2.000000:R/0/270/0,box=3.000000/0.000000/3.000000:13.000000/7.000000/13.000000:u/0/2.500000/0.000000/5.000000/2.500000:s/0/7.500000/2.500000/10.000000/4.250000:w/0/5.000000/2.500000/7.500000/4.250000:e/0/0.000000/2.500000/2.500000/4.250000:d/0/5.000000/0.000000/7.500000/2.500000:n/0/2.500000/2.500000/5.000000/4.250000:R/0/270/0,box=0.000000/-1.000000/0.000000:16.000000/0.000000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:s/2/0.000000/0.000000/16.000000/1.000000:w/2/0.000000/0.000000/16.000000/1.000000:e/2/0.000000/0.000000/16.000000/1.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/2/0.000000/0.000000/16.000000/1.000000:R/0/270/0,box=15.000000/-16.000000/0.000000:16.000000/-1.000000/1.000000:u/2/0.000000/0.000000/0.250000/0.250000:s/2/15.000000/0.000000/16.000000/16.000000:w/2/0.000000/0.000000/1.000000/16.000000:e/2/15.000000/0.000000/16.000000/16.000000:d/2/0.000000/0.000000/0.250000/0.250000:n/2/0.000000/0.000000/1.000000/16.000000:R/0/270/0,box=0.000000/-16.000000/0.000000:1.000000/-1.000000/1.000000:u/2/0.000000/0.000000/0.250000/0.250000:s/2/0.000000/0.000000/1.000000/16.000000:w/2/0.000000/0.000000/1.000000/16.000000:e/2/15.000000/0.000000/16.000000/16.000000:d/2/0.000000/0.000000/0.250000/0.250000:n/2/15.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/-16.000000/15.000000:1.000000/-1.000000/16.000000:u/2/0.000000/0.000000/0.250000/0.250000:s/2/15.000000/0.000000/16.000000/16.000000:w/2/0.000000/0.000000/1.000000/16.000000:e/2/15.000000/0.000000/16.000000/16.000000:d/2/0.000000/0.000000/0.250000/0.250000:n/2/0.000000/0.000000/1.000000/16.000000:R/0/270/0,box=15.000000/-16.000000/15.000000:16.000000/-1.000000/16.000000:u/2/0.000000/0.000000/0.250000/0.250000:s/2/15.000000/0.000000/16.000000/16.000000:w/2/15.000000/0.000000/16.000000/16.000000:e/2/0.000000/0.000000/1.000000/16.000000:d/2/0.000000/0.000000/0.250000/0.250000:n/2/0.000000/0.000000/1.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%kettle,state=facing:west/support:handle/lid:true,box=3.000000/0.000000/3.000000:13.000000/7.000000/13.000000:u/0/2.500000/0.000000/5.000000/2.500000:s/0/7.500000/2.500000/10.000000/4.250000:w/0/5.000000/2.500000/7.500000/4.250000:e/0/0.000000/2.500000/2.500000/4.250000:d/0/5.000000/0.000000/7.500000/2.500000:n/0/2.500000/2.500000/5.000000/4.250000:R/0/270/0,box=7.000000/2.000000/1.000000:9.000000/8.000000/3.000000:u180/0/0.500000/0.000000/1.000000/0.500000:s/0/1.000000/0.000000/1.500000/1.500000:w/0/1.000000/0.500000/1.500000/2.000000:e/0/0.000000/0.500000/0.500000/2.000000:d/0/0.750000/0.000000/1.250000/0.500000:n/0/0.500000/0.500000/1.000000/2.000000:R/0/270/0,box=7.000000/6.000000/0.000000:9.000000/8.000000/1.000000:u/0/0.250000/5.250000/0.750000/5.500000:w/0/0.750000/5.500000/1.000000/6.000000:e/0/0.000000/5.500000/0.250000/6.000000:d/0/0.750000/5.250000/1.250000/5.500000:n/0/0.250000/5.500000/0.750000/6.000000:R/0/270/0,box=6.000000/7.000000/6.000000:10.000000/8.000000/10.000000:u180/0/6.000000/4.250000/7.000000/5.250000:s/0/8.000000/5.250000/9.000000/5.500000:w/0/5.000000/5.250000/6.000000/5.500000:e/0/7.000000/5.250000/8.000000/5.500000:d/0/6.000000/4.250000/7.000000/5.250000:n/0/6.000000/5.250000/7.000000/5.500000:R/0/270/0,box=8.000000/7.000000/4.000000:8.000000/11.000000/12.000000:w/0/0.000000/4.250000/2.000000/5.250000:e/0/0.000000/4.250000/2.000000/5.250000:R/0/270/0,box=7.000000/10.000000/5.000000:9.000000/12.000000/11.000000:u/0/4.000000/4.250000/4.500000/5.750000:s/0/5.250000/5.750000/5.750000/6.250000:w/0/2.500000/5.750000/4.000000/6.250000:e/0/4.500000/5.750000/6.000000/6.250000:d/0/4.500000/4.250000/5.000000/5.750000:n/0/5.500000/5.750000/6.000000/6.250000:R/0/270/0,box=6.000000/10.000000/8.000000:10.000000/16.000000/8.000000:s/1/1.000000/8.000000/5.000000/15.000000:n/1/1.000000/8.000000/5.000000/15.000000:R/0/270/0,box=6.000000/10.000000/7.000000:6.000000/16.000000/9.000000:w/1/0.000000/0.000000/2.000000/6.000000:e/1/0.000000/0.000000/2.000000/6.000000:R/0/270/0,box=10.000000/10.000000/7.000000:10.000000/16.000000/9.000000:w/1/0.000000/0.000000/2.000000/6.000000:e/1/0.000000/0.000000/2.000000/6.000000:R/0/270/0,box=6.000000/15.990000/7.000000:10.000000/15.990000/9.000000:u/1/0.000000/0.000000/4.000000/2.000000:d/1/0.000000/0.000000/4.000000/2.000000:R/0/270/0,box=6.000000/10.000000/7.000000:7.000000/10.000000/9.000000:u/1/3.000000/0.000000/4.000000/2.000000:d/1/3.000000/0.000000/4.000000/2.000000:R/0/270/0,box=9.000000/10.000000/7.000000:10.000000/10.000000/9.000000:u/1/0.000000/0.000000/1.000000/2.000000:d/1/0.000000/0.000000/1.000000/2.000000:R/0/270/0
|
|
||||||
modellist:id=%kettle,state=facing:west/support:none/lid:false,box=3.000000/0.000000/3.000000:13.000000/7.000000/13.000000:u/0/2.500000/0.000000/5.000000/2.500000:s/0/7.500000/2.500000/10.000000/4.250000:w/0/5.000000/2.500000/7.500000/4.250000:e/0/0.000000/2.500000/2.500000/4.250000:d/0/5.000000/0.000000/7.500000/2.500000:n/0/2.500000/2.500000/5.000000/4.250000:R/0/270/0,box=7.000000/2.000000/1.000000:9.000000/8.000000/3.000000:u180/0/0.500000/0.000000/1.000000/0.500000:s/0/1.000000/0.000000/1.500000/1.500000:w/0/1.000000/0.500000/1.500000/2.000000:e/0/0.000000/0.500000/0.500000/2.000000:d/0/0.750000/0.000000/1.250000/0.500000:n/0/0.500000/0.500000/1.000000/2.000000:R/0/270/0,box=7.000000/6.000000/0.000000:9.000000/8.000000/1.000000:u/0/0.250000/5.250000/0.750000/5.500000:w/0/0.750000/5.500000/1.000000/6.000000:e/0/0.000000/5.500000/0.250000/6.000000:d/0/0.750000/5.250000/1.250000/5.500000:n/0/0.250000/5.500000/0.750000/6.000000:R/0/270/0,box=8.000000/7.000000/4.000000:8.000000/11.000000/12.000000:w/0/0.000000/4.250000/2.000000/5.250000:e/0/0.000000/4.250000/2.000000/5.250000:R/0/270/0,box=7.000000/10.000000/5.000000:9.000000/12.000000/11.000000:u/0/4.000000/4.250000/4.500000/5.750000:s/0/5.250000/5.750000/5.750000/6.250000:w/0/2.500000/5.750000/4.000000/6.250000:e/0/4.500000/5.750000/6.000000/6.250000:d/0/4.500000/4.250000/5.000000/5.750000:n/0/5.500000/5.750000/6.000000/6.250000:R/0/270/0
|
|
||||||
modellist:id=%kettle,state=facing:west/support:tray/lid:false,box=7.000000/10.000000/5.000000:9.000000/12.000000/11.000000:u/0/4.000000/4.250000/4.500000/5.750000:s/0/5.250000/5.750000/5.750000/6.250000:w/0/2.500000/5.750000/4.000000/6.250000:e/0/4.500000/5.750000/6.000000/6.250000:d/0/4.500000/4.250000/5.000000/5.750000:n/0/5.500000/5.750000/6.000000/6.250000:R/0/270/0,box=8.000000/7.000000/4.000000:8.000000/11.000000/12.000000:w/0/0.000000/4.250000/2.000000/5.250000:e/0/0.000000/4.250000/2.000000/5.250000:R/0/270/0,box=7.000000/6.000000/0.000000:9.000000/8.000000/1.000000:u/0/0.250000/5.250000/0.750000/5.500000:w/0/0.750000/5.500000/1.000000/6.000000:e/0/0.000000/5.500000/0.250000/6.000000:d/0/0.750000/5.250000/1.250000/5.500000:n/0/0.250000/5.500000/0.750000/6.000000:R/0/270/0,box=7.000000/2.000000/1.000000:9.000000/8.000000/3.000000:u180/0/0.500000/0.000000/1.000000/0.500000:s/0/1.000000/0.000000/1.500000/1.500000:w/0/1.000000/0.500000/1.500000/2.000000:e/0/0.000000/0.500000/0.500000/2.000000:d/0/0.750000/0.000000/1.250000/0.500000:n/0/0.500000/0.500000/1.000000/2.000000:R/0/270/0,box=3.000000/0.000000/3.000000:13.000000/7.000000/13.000000:u/0/2.500000/0.000000/5.000000/2.500000:s/0/7.500000/2.500000/10.000000/4.250000:w/0/5.000000/2.500000/7.500000/4.250000:e/0/0.000000/2.500000/2.500000/4.250000:d/0/5.000000/0.000000/7.500000/2.500000:n/0/2.500000/2.500000/5.000000/4.250000:R/0/270/0,box=0.000000/-1.000000/0.000000:16.000000/0.000000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:s/2/0.000000/0.000000/16.000000/1.000000:w/2/0.000000/0.000000/16.000000/1.000000:e/2/0.000000/0.000000/16.000000/1.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/2/0.000000/0.000000/16.000000/1.000000:R/0/270/0,box=15.000000/-16.000000/0.000000:16.000000/-1.000000/1.000000:u/2/0.000000/0.000000/0.250000/0.250000:s/2/15.000000/0.000000/16.000000/16.000000:w/2/0.000000/0.000000/1.000000/16.000000:e/2/15.000000/0.000000/16.000000/16.000000:d/2/0.000000/0.000000/0.250000/0.250000:n/2/0.000000/0.000000/1.000000/16.000000:R/0/270/0,box=0.000000/-16.000000/0.000000:1.000000/-1.000000/1.000000:u/2/0.000000/0.000000/0.250000/0.250000:s/2/0.000000/0.000000/1.000000/16.000000:w/2/0.000000/0.000000/1.000000/16.000000:e/2/15.000000/0.000000/16.000000/16.000000:d/2/0.000000/0.000000/0.250000/0.250000:n/2/15.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/-16.000000/15.000000:1.000000/-1.000000/16.000000:u/2/0.000000/0.000000/0.250000/0.250000:s/2/15.000000/0.000000/16.000000/16.000000:w/2/0.000000/0.000000/1.000000/16.000000:e/2/15.000000/0.000000/16.000000/16.000000:d/2/0.000000/0.000000/0.250000/0.250000:n/2/0.000000/0.000000/1.000000/16.000000:R/0/270/0,box=15.000000/-16.000000/15.000000:16.000000/-1.000000/16.000000:u/2/0.000000/0.000000/0.250000/0.250000:s/2/15.000000/0.000000/16.000000/16.000000:w/2/15.000000/0.000000/16.000000/16.000000:e/2/0.000000/0.000000/1.000000/16.000000:d/2/0.000000/0.000000/0.250000/0.250000:n/2/0.000000/0.000000/1.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%kettle,state=facing:west/support:handle/lid:false,box=3.000000/0.000000/3.000000:13.000000/7.000000/13.000000:u/0/2.500000/0.000000/5.000000/2.500000:s/0/7.500000/2.500000/10.000000/4.250000:w/0/5.000000/2.500000/7.500000/4.250000:e/0/0.000000/2.500000/2.500000/4.250000:d/0/5.000000/0.000000/7.500000/2.500000:n/0/2.500000/2.500000/5.000000/4.250000:R/0/270/0,box=7.000000/2.000000/1.000000:9.000000/8.000000/3.000000:u180/0/0.500000/0.000000/1.000000/0.500000:s/0/1.000000/0.000000/1.500000/1.500000:w/0/1.000000/0.500000/1.500000/2.000000:e/0/0.000000/0.500000/0.500000/2.000000:d/0/0.750000/0.000000/1.250000/0.500000:n/0/0.500000/0.500000/1.000000/2.000000:R/0/270/0,box=7.000000/6.000000/0.000000:9.000000/8.000000/1.000000:u/0/0.250000/5.250000/0.750000/5.500000:w/0/0.750000/5.500000/1.000000/6.000000:e/0/0.000000/5.500000/0.250000/6.000000:d/0/0.750000/5.250000/1.250000/5.500000:n/0/0.250000/5.500000/0.750000/6.000000:R/0/270/0,box=8.000000/7.000000/4.000000:8.000000/11.000000/12.000000:w/0/0.000000/4.250000/2.000000/5.250000:e/0/0.000000/4.250000/2.000000/5.250000:R/0/270/0,box=7.000000/10.000000/5.000000:9.000000/12.000000/11.000000:u/0/4.000000/4.250000/4.500000/5.750000:s/0/5.250000/5.750000/5.750000/6.250000:w/0/2.500000/5.750000/4.000000/6.250000:e/0/4.500000/5.750000/6.000000/6.250000:d/0/4.500000/4.250000/5.000000/5.750000:n/0/5.500000/5.750000/6.000000/6.250000:R/0/270/0,box=6.000000/10.000000/8.000000:10.000000/16.000000/8.000000:s/1/1.000000/8.000000/5.000000/15.000000:n/1/1.000000/8.000000/5.000000/15.000000:R/0/270/0,box=6.000000/10.000000/7.000000:6.000000/16.000000/9.000000:w/1/0.000000/0.000000/2.000000/6.000000:e/1/0.000000/0.000000/2.000000/6.000000:R/0/270/0,box=10.000000/10.000000/7.000000:10.000000/16.000000/9.000000:w/1/0.000000/0.000000/2.000000/6.000000:e/1/0.000000/0.000000/2.000000/6.000000:R/0/270/0,box=6.000000/15.990000/7.000000:10.000000/15.990000/9.000000:u/1/0.000000/0.000000/4.000000/2.000000:d/1/0.000000/0.000000/4.000000/2.000000:R/0/270/0,box=6.000000/10.000000/7.000000:7.000000/10.000000/9.000000:u/1/4.000000/0.000000/4.000000/2.000000:d/1/3.000000/0.000000/4.000000/2.000000:R/0/270/0,box=9.000000/10.000000/7.000000:10.000000/10.000000/9.000000:u/1/0.000000/0.000000/1.000000/2.000000:d/1/0.000000/0.000000/1.000000/2.000000:R/0/270/0
|
|
||||||
modellist:id=%kettle,state=facing:east/support:none/lid:true,box=3.000000/0.000000/3.000000:13.000000/7.000000/13.000000:u/0/2.500000/0.000000/5.000000/2.500000:s/0/7.500000/2.500000/10.000000/4.250000:w/0/5.000000/2.500000/7.500000/4.250000:e/0/0.000000/2.500000/2.500000/4.250000:d/0/5.000000/0.000000/7.500000/2.500000:n/0/2.500000/2.500000/5.000000/4.250000:R/0/90/0,box=7.000000/2.000000/1.000000:9.000000/8.000000/3.000000:u180/0/0.500000/0.000000/1.000000/0.500000:s/0/1.000000/0.000000/1.500000/1.500000:w/0/1.000000/0.500000/1.500000/2.000000:e/0/0.000000/0.500000/0.500000/2.000000:d/0/0.750000/0.000000/1.250000/0.500000:n/0/0.500000/0.500000/1.000000/2.000000:R/0/90/0,box=7.000000/6.000000/0.000000:9.000000/8.000000/1.000000:u/0/0.250000/5.250000/0.750000/5.500000:w/0/0.750000/5.500000/1.000000/6.000000:e/0/0.000000/5.500000/0.250000/6.000000:d/0/0.750000/5.250000/1.250000/5.500000:n/0/0.250000/5.500000/0.750000/6.000000:R/0/90/0,box=6.000000/7.000000/6.000000:10.000000/8.000000/10.000000:u180/0/6.000000/4.250000/7.000000/5.250000:s/0/8.000000/5.250000/9.000000/5.500000:w/0/5.000000/5.250000/6.000000/5.500000:e/0/7.000000/5.250000/8.000000/5.500000:d/0/6.000000/4.250000/7.000000/5.250000:n/0/6.000000/5.250000/7.000000/5.500000:R/0/90/0,box=8.000000/7.000000/4.000000:8.000000/11.000000/12.000000:w/0/0.000000/4.250000/2.000000/5.250000:e/0/0.000000/4.250000/2.000000/5.250000:R/0/90/0,box=7.000000/10.000000/5.000000:9.000000/12.000000/11.000000:u/0/4.000000/4.250000/4.500000/5.750000:s/0/5.250000/5.750000/5.750000/6.250000:w/0/2.500000/5.750000/4.000000/6.250000:e/0/4.500000/5.750000/6.000000/6.250000:d/0/4.500000/4.250000/5.000000/5.750000:n/0/5.500000/5.750000/6.000000/6.250000:R/0/90/0
|
|
||||||
modellist:id=%kettle,state=facing:east/support:tray/lid:true,box=7.000000/10.000000/5.000000:9.000000/12.000000/11.000000:u/0/4.000000/4.250000/4.500000/5.750000:s/0/5.250000/5.750000/5.750000/6.250000:w/0/2.500000/5.750000/4.000000/6.250000:e/0/4.500000/5.750000/6.000000/6.250000:d/0/4.500000/4.250000/5.000000/5.750000:n/0/5.500000/5.750000/6.000000/6.250000:R/0/90/0,box=8.000000/7.000000/4.000000:8.000000/11.000000/12.000000:w/0/0.000000/4.250000/2.000000/5.250000:e/0/0.000000/4.250000/2.000000/5.250000:R/0/90/0,box=7.000000/6.000000/0.000000:9.000000/8.000000/1.000000:u/0/0.250000/5.250000/0.750000/5.500000:w/0/0.750000/5.500000/1.000000/6.000000:e/0/0.000000/5.500000/0.250000/6.000000:d/0/0.750000/5.250000/1.250000/5.500000:n/0/0.250000/5.500000/0.750000/6.000000:R/0/90/0,box=6.000000/7.000000/6.000000:10.000000/8.000000/10.000000:u180/0/6.000000/4.250000/7.000000/5.250000:s/0/8.000000/5.250000/9.000000/5.500000:w/0/5.000000/5.250000/6.000000/5.500000:e/0/7.000000/5.250000/8.000000/5.500000:d/0/6.000000/4.250000/7.000000/5.250000:n/0/6.000000/5.250000/7.000000/5.500000:R/0/90/0,box=7.000000/2.000000/1.000000:9.000000/8.000000/3.000000:u180/0/0.500000/0.000000/1.000000/0.500000:s/0/1.000000/0.000000/1.500000/1.500000:w/0/1.000000/0.500000/1.500000/2.000000:e/0/0.000000/0.500000/0.500000/2.000000:d/0/0.750000/0.000000/1.250000/0.500000:n/0/0.500000/0.500000/1.000000/2.000000:R/0/90/0,box=3.000000/0.000000/3.000000:13.000000/7.000000/13.000000:u/0/2.500000/0.000000/5.000000/2.500000:s/0/7.500000/2.500000/10.000000/4.250000:w/0/5.000000/2.500000/7.500000/4.250000:e/0/0.000000/2.500000/2.500000/4.250000:d/0/5.000000/0.000000/7.500000/2.500000:n/0/2.500000/2.500000/5.000000/4.250000:R/0/90/0,box=0.000000/-1.000000/0.000000:16.000000/0.000000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:s/2/0.000000/0.000000/16.000000/1.000000:w/2/0.000000/0.000000/16.000000/1.000000:e/2/0.000000/0.000000/16.000000/1.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/2/0.000000/0.000000/16.000000/1.000000:R/0/90/0,box=15.000000/-16.000000/0.000000:16.000000/-1.000000/1.000000:u/2/0.000000/0.000000/0.250000/0.250000:s/2/15.000000/0.000000/16.000000/16.000000:w/2/0.000000/0.000000/1.000000/16.000000:e/2/15.000000/0.000000/16.000000/16.000000:d/2/0.000000/0.000000/0.250000/0.250000:n/2/0.000000/0.000000/1.000000/16.000000:R/0/90/0,box=0.000000/-16.000000/0.000000:1.000000/-1.000000/1.000000:u/2/0.000000/0.000000/0.250000/0.250000:s/2/0.000000/0.000000/1.000000/16.000000:w/2/0.000000/0.000000/1.000000/16.000000:e/2/15.000000/0.000000/16.000000/16.000000:d/2/0.000000/0.000000/0.250000/0.250000:n/2/15.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/-16.000000/15.000000:1.000000/-1.000000/16.000000:u/2/0.000000/0.000000/0.250000/0.250000:s/2/15.000000/0.000000/16.000000/16.000000:w/2/0.000000/0.000000/1.000000/16.000000:e/2/15.000000/0.000000/16.000000/16.000000:d/2/0.000000/0.000000/0.250000/0.250000:n/2/0.000000/0.000000/1.000000/16.000000:R/0/90/0,box=15.000000/-16.000000/15.000000:16.000000/-1.000000/16.000000:u/2/0.000000/0.000000/0.250000/0.250000:s/2/15.000000/0.000000/16.000000/16.000000:w/2/15.000000/0.000000/16.000000/16.000000:e/2/0.000000/0.000000/1.000000/16.000000:d/2/0.000000/0.000000/0.250000/0.250000:n/2/0.000000/0.000000/1.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%kettle,state=facing:east/support:handle/lid:true,box=3.000000/0.000000/3.000000:13.000000/7.000000/13.000000:u/0/2.500000/0.000000/5.000000/2.500000:s/0/7.500000/2.500000/10.000000/4.250000:w/0/5.000000/2.500000/7.500000/4.250000:e/0/0.000000/2.500000/2.500000/4.250000:d/0/5.000000/0.000000/7.500000/2.500000:n/0/2.500000/2.500000/5.000000/4.250000:R/0/90/0,box=7.000000/2.000000/1.000000:9.000000/8.000000/3.000000:u180/0/0.500000/0.000000/1.000000/0.500000:s/0/1.000000/0.000000/1.500000/1.500000:w/0/1.000000/0.500000/1.500000/2.000000:e/0/0.000000/0.500000/0.500000/2.000000:d/0/0.750000/0.000000/1.250000/0.500000:n/0/0.500000/0.500000/1.000000/2.000000:R/0/90/0,box=7.000000/6.000000/0.000000:9.000000/8.000000/1.000000:u/0/0.250000/5.250000/0.750000/5.500000:w/0/0.750000/5.500000/1.000000/6.000000:e/0/0.000000/5.500000/0.250000/6.000000:d/0/0.750000/5.250000/1.250000/5.500000:n/0/0.250000/5.500000/0.750000/6.000000:R/0/90/0,box=6.000000/7.000000/6.000000:10.000000/8.000000/10.000000:u180/0/6.000000/4.250000/7.000000/5.250000:s/0/8.000000/5.250000/9.000000/5.500000:w/0/5.000000/5.250000/6.000000/5.500000:e/0/7.000000/5.250000/8.000000/5.500000:d/0/6.000000/4.250000/7.000000/5.250000:n/0/6.000000/5.250000/7.000000/5.500000:R/0/90/0,box=8.000000/7.000000/4.000000:8.000000/11.000000/12.000000:w/0/0.000000/4.250000/2.000000/5.250000:e/0/0.000000/4.250000/2.000000/5.250000:R/0/90/0,box=7.000000/10.000000/5.000000:9.000000/12.000000/11.000000:u/0/4.000000/4.250000/4.500000/5.750000:s/0/5.250000/5.750000/5.750000/6.250000:w/0/2.500000/5.750000/4.000000/6.250000:e/0/4.500000/5.750000/6.000000/6.250000:d/0/4.500000/4.250000/5.000000/5.750000:n/0/5.500000/5.750000/6.000000/6.250000:R/0/90/0,box=6.000000/10.000000/8.000000:10.000000/16.000000/8.000000:s/1/1.000000/8.000000/5.000000/15.000000:n/1/1.000000/8.000000/5.000000/15.000000:R/0/90/0,box=6.000000/10.000000/7.000000:6.000000/16.000000/9.000000:w/1/0.000000/0.000000/2.000000/6.000000:e/1/0.000000/0.000000/2.000000/6.000000:R/0/90/0,box=10.000000/10.000000/7.000000:10.000000/16.000000/9.000000:w/1/0.000000/0.000000/2.000000/6.000000:e/1/0.000000/0.000000/2.000000/6.000000:R/0/90/0,box=6.000000/15.990000/7.000000:10.000000/15.990000/9.000000:u/1/0.000000/0.000000/4.000000/2.000000:d/1/0.000000/0.000000/4.000000/2.000000:R/0/90/0,box=6.000000/10.000000/7.000000:7.000000/10.000000/9.000000:u/1/3.000000/0.000000/4.000000/2.000000:d/1/3.000000/0.000000/4.000000/2.000000:R/0/90/0,box=9.000000/10.000000/7.000000:10.000000/10.000000/9.000000:u/1/0.000000/0.000000/1.000000/2.000000:d/1/0.000000/0.000000/1.000000/2.000000:R/0/90/0
|
|
||||||
modellist:id=%kettle,state=facing:east/support:none/lid:false,box=3.000000/0.000000/3.000000:13.000000/7.000000/13.000000:u/0/2.500000/0.000000/5.000000/2.500000:s/0/7.500000/2.500000/10.000000/4.250000:w/0/5.000000/2.500000/7.500000/4.250000:e/0/0.000000/2.500000/2.500000/4.250000:d/0/5.000000/0.000000/7.500000/2.500000:n/0/2.500000/2.500000/5.000000/4.250000:R/0/90/0,box=7.000000/2.000000/1.000000:9.000000/8.000000/3.000000:u180/0/0.500000/0.000000/1.000000/0.500000:s/0/1.000000/0.000000/1.500000/1.500000:w/0/1.000000/0.500000/1.500000/2.000000:e/0/0.000000/0.500000/0.500000/2.000000:d/0/0.750000/0.000000/1.250000/0.500000:n/0/0.500000/0.500000/1.000000/2.000000:R/0/90/0,box=7.000000/6.000000/0.000000:9.000000/8.000000/1.000000:u/0/0.250000/5.250000/0.750000/5.500000:w/0/0.750000/5.500000/1.000000/6.000000:e/0/0.000000/5.500000/0.250000/6.000000:d/0/0.750000/5.250000/1.250000/5.500000:n/0/0.250000/5.500000/0.750000/6.000000:R/0/90/0,box=8.000000/7.000000/4.000000:8.000000/11.000000/12.000000:w/0/0.000000/4.250000/2.000000/5.250000:e/0/0.000000/4.250000/2.000000/5.250000:R/0/90/0,box=7.000000/10.000000/5.000000:9.000000/12.000000/11.000000:u/0/4.000000/4.250000/4.500000/5.750000:s/0/5.250000/5.750000/5.750000/6.250000:w/0/2.500000/5.750000/4.000000/6.250000:e/0/4.500000/5.750000/6.000000/6.250000:d/0/4.500000/4.250000/5.000000/5.750000:n/0/5.500000/5.750000/6.000000/6.250000:R/0/90/0
|
|
||||||
modellist:id=%kettle,state=facing:east/support:tray/lid:false,box=7.000000/10.000000/5.000000:9.000000/12.000000/11.000000:u/0/4.000000/4.250000/4.500000/5.750000:s/0/5.250000/5.750000/5.750000/6.250000:w/0/2.500000/5.750000/4.000000/6.250000:e/0/4.500000/5.750000/6.000000/6.250000:d/0/4.500000/4.250000/5.000000/5.750000:n/0/5.500000/5.750000/6.000000/6.250000:R/0/90/0,box=8.000000/7.000000/4.000000:8.000000/11.000000/12.000000:w/0/0.000000/4.250000/2.000000/5.250000:e/0/0.000000/4.250000/2.000000/5.250000:R/0/90/0,box=7.000000/6.000000/0.000000:9.000000/8.000000/1.000000:u/0/0.250000/5.250000/0.750000/5.500000:w/0/0.750000/5.500000/1.000000/6.000000:e/0/0.000000/5.500000/0.250000/6.000000:d/0/0.750000/5.250000/1.250000/5.500000:n/0/0.250000/5.500000/0.750000/6.000000:R/0/90/0,box=7.000000/2.000000/1.000000:9.000000/8.000000/3.000000:u180/0/0.500000/0.000000/1.000000/0.500000:s/0/1.000000/0.000000/1.500000/1.500000:w/0/1.000000/0.500000/1.500000/2.000000:e/0/0.000000/0.500000/0.500000/2.000000:d/0/0.750000/0.000000/1.250000/0.500000:n/0/0.500000/0.500000/1.000000/2.000000:R/0/90/0,box=3.000000/0.000000/3.000000:13.000000/7.000000/13.000000:u/0/2.500000/0.000000/5.000000/2.500000:s/0/7.500000/2.500000/10.000000/4.250000:w/0/5.000000/2.500000/7.500000/4.250000:e/0/0.000000/2.500000/2.500000/4.250000:d/0/5.000000/0.000000/7.500000/2.500000:n/0/2.500000/2.500000/5.000000/4.250000:R/0/90/0,box=0.000000/-1.000000/0.000000:16.000000/0.000000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:s/2/0.000000/0.000000/16.000000/1.000000:w/2/0.000000/0.000000/16.000000/1.000000:e/2/0.000000/0.000000/16.000000/1.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/2/0.000000/0.000000/16.000000/1.000000:R/0/90/0,box=15.000000/-16.000000/0.000000:16.000000/-1.000000/1.000000:u/2/0.000000/0.000000/0.250000/0.250000:s/2/15.000000/0.000000/16.000000/16.000000:w/2/0.000000/0.000000/1.000000/16.000000:e/2/15.000000/0.000000/16.000000/16.000000:d/2/0.000000/0.000000/0.250000/0.250000:n/2/0.000000/0.000000/1.000000/16.000000:R/0/90/0,box=0.000000/-16.000000/0.000000:1.000000/-1.000000/1.000000:u/2/0.000000/0.000000/0.250000/0.250000:s/2/0.000000/0.000000/1.000000/16.000000:w/2/0.000000/0.000000/1.000000/16.000000:e/2/15.000000/0.000000/16.000000/16.000000:d/2/0.000000/0.000000/0.250000/0.250000:n/2/15.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/-16.000000/15.000000:1.000000/-1.000000/16.000000:u/2/0.000000/0.000000/0.250000/0.250000:s/2/15.000000/0.000000/16.000000/16.000000:w/2/0.000000/0.000000/1.000000/16.000000:e/2/15.000000/0.000000/16.000000/16.000000:d/2/0.000000/0.000000/0.250000/0.250000:n/2/0.000000/0.000000/1.000000/16.000000:R/0/90/0,box=15.000000/-16.000000/15.000000:16.000000/-1.000000/16.000000:u/2/0.000000/0.000000/0.250000/0.250000:s/2/15.000000/0.000000/16.000000/16.000000:w/2/15.000000/0.000000/16.000000/16.000000:e/2/0.000000/0.000000/1.000000/16.000000:d/2/0.000000/0.000000/0.250000/0.250000:n/2/0.000000/0.000000/1.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%kettle,state=facing:east/support:handle/lid:false,box=3.000000/0.000000/3.000000:13.000000/7.000000/13.000000:u/0/2.500000/0.000000/5.000000/2.500000:s/0/7.500000/2.500000/10.000000/4.250000:w/0/5.000000/2.500000/7.500000/4.250000:e/0/0.000000/2.500000/2.500000/4.250000:d/0/5.000000/0.000000/7.500000/2.500000:n/0/2.500000/2.500000/5.000000/4.250000:R/0/90/0,box=7.000000/2.000000/1.000000:9.000000/8.000000/3.000000:u180/0/0.500000/0.000000/1.000000/0.500000:s/0/1.000000/0.000000/1.500000/1.500000:w/0/1.000000/0.500000/1.500000/2.000000:e/0/0.000000/0.500000/0.500000/2.000000:d/0/0.750000/0.000000/1.250000/0.500000:n/0/0.500000/0.500000/1.000000/2.000000:R/0/90/0,box=7.000000/6.000000/0.000000:9.000000/8.000000/1.000000:u/0/0.250000/5.250000/0.750000/5.500000:w/0/0.750000/5.500000/1.000000/6.000000:e/0/0.000000/5.500000/0.250000/6.000000:d/0/0.750000/5.250000/1.250000/5.500000:n/0/0.250000/5.500000/0.750000/6.000000:R/0/90/0,box=8.000000/7.000000/4.000000:8.000000/11.000000/12.000000:w/0/0.000000/4.250000/2.000000/5.250000:e/0/0.000000/4.250000/2.000000/5.250000:R/0/90/0,box=7.000000/10.000000/5.000000:9.000000/12.000000/11.000000:u/0/4.000000/4.250000/4.500000/5.750000:s/0/5.250000/5.750000/5.750000/6.250000:w/0/2.500000/5.750000/4.000000/6.250000:e/0/4.500000/5.750000/6.000000/6.250000:d/0/4.500000/4.250000/5.000000/5.750000:n/0/5.500000/5.750000/6.000000/6.250000:R/0/90/0,box=6.000000/10.000000/8.000000:10.000000/16.000000/8.000000:s/1/1.000000/8.000000/5.000000/15.000000:n/1/1.000000/8.000000/5.000000/15.000000:R/0/90/0,box=6.000000/10.000000/7.000000:6.000000/16.000000/9.000000:w/1/0.000000/0.000000/2.000000/6.000000:e/1/0.000000/0.000000/2.000000/6.000000:R/0/90/0,box=10.000000/10.000000/7.000000:10.000000/16.000000/9.000000:w/1/0.000000/0.000000/2.000000/6.000000:e/1/0.000000/0.000000/2.000000/6.000000:R/0/90/0,box=6.000000/15.990000/7.000000:10.000000/15.990000/9.000000:u/1/0.000000/0.000000/4.000000/2.000000:d/1/0.000000/0.000000/4.000000/2.000000:R/0/90/0,box=6.000000/10.000000/7.000000:7.000000/10.000000/9.000000:u/1/4.000000/0.000000/4.000000/2.000000:d/1/3.000000/0.000000/4.000000/2.000000:R/0/90/0,box=9.000000/10.000000/7.000000:10.000000/10.000000/9.000000:u/1/0.000000/0.000000/1.000000/2.000000:d/1/0.000000/0.000000/1.000000/2.000000:R/0/90/0
|
|
||||||
modellist:id=%tea_bush,state=age:0/half:upper,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.000000/0.000000:16.000000/8.000000/0.010000:s/1/16.000000/0.000000/0.000000/8.000000:n/1/0.000000/0.000000/16.000000/8.000000,box=0.000000/0.000000/15.990000:16.000000/8.000000/16.000000:s/1/0.000000/0.000000/16.000000/8.000000:n/1/16.000000/0.000000/0.000000/8.000000,box=0.000000/0.000000/0.000000:0.010000/8.000000/16.000000:w/1/0.000000/0.000000/16.000000/8.000000:e/1/16.000000/0.000000/0.000000/8.000000,box=15.990000/0.000000/0.000000:16.000000/8.000000/16.000000:w/1/16.000000/0.000000/0.000000/8.000000:e/1/0.000000/0.000000/16.000000/8.000000,box=0.100000/0.000000/8.000000:15.900000/7.900000/8.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:s/2/0.000000/0.000000/16.000000/8.000000:n/2/0.000000/0.000000/16.000000/8.000000,box=8.000000/0.000000/0.100000:8.000000/7.900000/15.900000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:w/2/0.000000/0.000000/16.000000/8.000000:e/2/0.000000/0.000000/16.000000/8.000000
|
|
||||||
modellist:id=%tea_bush,state=age:0/half:lower,box=0.000000/11.000000/0.000000:16.000000/16.000000/0.010000:s/0/16.000000/8.000000/0.000000/13.000000:n/0/0.000000/8.000000/16.000000/13.000000,box=0.000000/11.000000/15.990000:16.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/13.000000:n/0/16.000000/8.000000/0.000000/13.000000,box=0.000000/11.000000/0.000000:0.010000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/13.000000:e/0/16.000000/8.000000/0.000000/13.000000,box=15.990000/11.000000/0.000000:16.000000/16.000000/16.000000:w/0/16.000000/8.000000/0.000000/13.000000:e/0/0.000000/8.000000/16.000000/13.000000,box=0.100000/0.000000/8.000000:15.900000/16.000000/8.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/16.000000,box=8.000000/0.000000/0.100000:8.000000/16.000000/15.900000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:w/1/0.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%tea_bush,state=age:1/half:upper,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.000000/0.000000:16.000000/8.000000/0.010000:s/1/16.000000/0.000000/0.000000/8.000000:n/1/0.000000/0.000000/16.000000/8.000000,box=0.000000/0.000000/15.990000:16.000000/8.000000/16.000000:s/1/0.000000/0.000000/16.000000/8.000000:n/1/16.000000/0.000000/0.000000/8.000000,box=0.000000/0.000000/0.000000:0.010000/8.000000/16.000000:w/1/0.000000/0.000000/16.000000/8.000000:e/1/16.000000/0.000000/0.000000/8.000000,box=15.990000/0.000000/0.000000:16.000000/8.000000/16.000000:w/1/16.000000/0.000000/0.000000/8.000000:e/1/0.000000/0.000000/16.000000/8.000000,box=0.100000/0.000000/8.000000:15.900000/7.900000/8.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:s/2/0.000000/0.000000/16.000000/8.000000:n/2/0.000000/0.000000/16.000000/8.000000,box=8.000000/0.000000/0.100000:8.000000/7.900000/15.900000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:w/2/0.000000/0.000000/16.000000/8.000000:e/2/0.000000/0.000000/16.000000/8.000000
|
|
||||||
modellist:id=%tea_bush,state=age:1/half:lower,box=0.000000/11.000000/0.000000:16.000000/16.000000/0.010000:s/0/16.000000/8.000000/0.000000/13.000000:n/0/0.000000/8.000000/16.000000/13.000000,box=0.000000/11.000000/15.990000:16.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/13.000000:n/0/16.000000/8.000000/0.000000/13.000000,box=0.000000/11.000000/0.000000:0.010000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/13.000000:e/0/16.000000/8.000000/0.000000/13.000000,box=15.990000/11.000000/0.000000:16.000000/16.000000/16.000000:w/0/16.000000/8.000000/0.000000/13.000000:e/0/0.000000/8.000000/16.000000/13.000000,box=0.100000/0.000000/8.000000:15.900000/16.000000/8.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/16.000000,box=8.000000/0.000000/0.100000:8.000000/16.000000/15.900000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:w/1/0.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%tea_bush,state=age:2/half:upper,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.000000/0.000000:16.000000/8.000000/0.010000:s/1/16.000000/0.000000/0.000000/8.000000:n/1/0.000000/0.000000/16.000000/8.000000,box=0.000000/0.000000/15.990000:16.000000/8.000000/16.000000:s/1/0.000000/0.000000/16.000000/8.000000:n/1/16.000000/0.000000/0.000000/8.000000,box=0.000000/0.000000/0.000000:0.010000/8.000000/16.000000:w/1/0.000000/0.000000/16.000000/8.000000:e/1/16.000000/0.000000/0.000000/8.000000,box=15.990000/0.000000/0.000000:16.000000/8.000000/16.000000:w/1/16.000000/0.000000/0.000000/8.000000:e/1/0.000000/0.000000/16.000000/8.000000,box=0.100000/0.000000/8.000000:15.900000/7.900000/8.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:s/2/0.000000/0.000000/16.000000/8.000000:n/2/0.000000/0.000000/16.000000/8.000000,box=8.000000/0.000000/0.100000:8.000000/7.900000/15.900000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:w/2/0.000000/0.000000/16.000000/8.000000:e/2/0.000000/0.000000/16.000000/8.000000
|
|
||||||
modellist:id=%tea_bush,state=age:2/half:lower,box=0.000000/11.000000/0.000000:16.000000/16.000000/0.010000:s/0/16.000000/8.000000/0.000000/13.000000:n/0/0.000000/8.000000/16.000000/13.000000,box=0.000000/11.000000/15.990000:16.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/13.000000:n/0/16.000000/8.000000/0.000000/13.000000,box=0.000000/11.000000/0.000000:0.010000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/13.000000:e/0/16.000000/8.000000/0.000000/13.000000,box=15.990000/11.000000/0.000000:16.000000/16.000000/16.000000:w/0/16.000000/8.000000/0.000000/13.000000:e/0/0.000000/8.000000/16.000000/13.000000,box=0.100000/0.000000/8.000000:15.900000/16.000000/8.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/16.000000,box=8.000000/0.000000/0.100000:8.000000/16.000000/15.900000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:w/1/0.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%tea_bush,state=age:3/half:upper,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.000000/0.000000:16.000000/8.000000/0.010000:s/1/16.000000/0.000000/0.000000/8.000000:n/1/0.000000/0.000000/16.000000/8.000000,box=0.000000/0.000000/15.990000:16.000000/8.000000/16.000000:s/1/0.000000/0.000000/16.000000/8.000000:n/1/16.000000/0.000000/0.000000/8.000000,box=0.000000/0.000000/0.000000:0.010000/8.000000/16.000000:w/1/0.000000/0.000000/16.000000/8.000000:e/1/16.000000/0.000000/0.000000/8.000000,box=15.990000/0.000000/0.000000:16.000000/8.000000/16.000000:w/1/16.000000/0.000000/0.000000/8.000000:e/1/0.000000/0.000000/16.000000/8.000000,box=0.100000/0.000000/8.000000:15.900000/7.900000/8.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:s/2/0.000000/0.000000/16.000000/8.000000:n/2/0.000000/0.000000/16.000000/8.000000,box=8.000000/0.000000/0.100000:8.000000/7.900000/15.900000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:w/2/0.000000/0.000000/16.000000/8.000000:e/2/0.000000/0.000000/16.000000/8.000000
|
|
||||||
modellist:id=%tea_bush,state=age:3/half:lower,box=0.000000/11.000000/0.000000:16.000000/16.000000/0.010000:s/0/16.000000/8.000000/0.000000/13.000000:n/0/0.000000/8.000000/16.000000/13.000000,box=0.000000/11.000000/15.990000:16.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/13.000000:n/0/16.000000/8.000000/0.000000/13.000000,box=0.000000/11.000000/0.000000:0.010000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/13.000000:e/0/16.000000/8.000000/0.000000/13.000000,box=15.990000/11.000000/0.000000:16.000000/16.000000/16.000000:w/0/16.000000/8.000000/0.000000/13.000000:e/0/0.000000/8.000000/16.000000/13.000000,box=0.100000/0.000000/8.000000:15.900000/16.000000/8.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:s/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/16.000000,box=8.000000/0.000000/0.100000:8.000000/16.000000/15.900000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:w/1/0.000000/0.000000/16.000000/16.000000:e/1/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%small_tea_bush,box=8.000000/0.000000/4.000000:8.000000/11.000000/12.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:w/0/3.000000/5.000000/13.000000/16.000000:e/0/3.000000/5.000000/13.000000/16.000000,box=4.000000/0.000000/8.000000:12.000000/11.000000/8.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:s/0/3.000000/5.000000/13.000000/16.000000:n/0/3.000000/5.000000/13.000000/16.000000,box=4.000000/11.000000/4.000000:12.000000/11.000000/12.000000:u/1/4.000000/4.000000/12.000000/12.000000:d/1/4.000000/12.000000/12.000000/4.000000,box=11.990000/3.000000/4.000000:12.000000/11.000000/12.000000:w/2/4.000000/3.000000/12.000000/12.000000:e/2/4.000000/3.000000/12.000000/12.000000,box=4.000000/2.000000/4.000000:4.010000/11.000000/12.000000:w/2/4.000000/3.000000/12.000000/12.000000:e/2/4.000000/3.000000/12.000000/12.000000,box=4.000000/2.000000/4.000000:12.000000/11.000000/4.010000:s/2/4.000000/3.000000/12.000000/12.000000:n/2/4.000000/3.000000/12.000000/12.000000,box=4.000000/2.000000/11.990000:12.000000/11.000000/12.000000:s/2/4.000000/3.000000/12.000000/12.000000:n/2/4.000000/3.000000/12.000000/12.000000
|
|
||||||
modellist:id=%wild_tea_bush,box=8.000000/0.000000/4.000000:8.000000/11.000000/12.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:w/0/3.000000/5.000000/13.000000/16.000000:e/0/3.000000/5.000000/13.000000/16.000000,box=4.000000/0.000000/8.000000:12.000000/11.000000/8.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:s/0/3.000000/5.000000/13.000000/16.000000:n/0/3.000000/5.000000/13.000000/16.000000,box=4.000000/11.000000/4.000000:12.000000/11.000000/12.000000:u/1/4.000000/4.000000/12.000000/12.000000:d/1/4.000000/12.000000/12.000000/4.000000,box=11.990000/3.000000/4.000000:12.000000/11.000000/12.000000:w/2/4.000000/3.000000/12.000000/12.000000:e/2/4.000000/3.000000/12.000000/12.000000,box=4.000000/2.000000/4.000000:4.010000/11.000000/12.000000:w/2/4.000000/3.000000/12.000000/12.000000:e/2/4.000000/3.000000/12.000000/12.000000,box=4.000000/2.000000/4.000000:12.000000/11.000000/4.010000:s/2/4.000000/3.000000/12.000000/12.000000:n/2/4.000000/3.000000/12.000000/12.000000,box=4.000000/2.000000/11.990000:12.000000/11.000000/12.000000:s/2/4.000000/3.000000/12.000000/12.000000:n/2/4.000000/3.000000/12.000000/12.000000
|
|
||||||
modellist:id=%coffee_bush,state=half:upper,box=0.000000/2.000000/0.000000:16.000000/2.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000,box=0.100000/0.000000/0.000000:0.100000/2.000000/16.000000:w/1/0.000000/0.000000/16.000000/2.000000:e/1/0.000000/0.000000/16.000000/2.000000,box=15.900000/0.000000/0.000000:15.900000/2.000000/16.000000:w/1/0.000000/0.000000/16.000000/2.000000:e/1/0.000000/0.000000/16.000000/2.000000,box=0.000000/0.000000/8.000000:16.000000/2.000000/8.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:s/1/0.000000/0.000000/16.000000/2.000000:n/1/0.000000/0.000000/16.000000/2.000000,box=0.000000/0.000000/8.000000:16.000000/2.000000/8.000000/0.000000/-45.000000/0.000000/8.000000/8.000000/8.000000:s/1/0.000000/0.000000/16.000000/2.000000:n/1/0.000000/0.000000/16.000000/2.000000,box=0.000000/0.000000/0.100000:16.000000/2.000000/0.100000:s/1/0.000000/0.000000/16.000000/2.000000:n/1/0.000000/0.000000/16.000000/2.000000,box=0.000000/0.000000/15.900000:16.000000/2.000000/15.900000:s/1/0.000000/0.000000/16.000000/2.000000:n/1/0.000000/0.000000/16.000000/2.000000,box=0.000000/2.000000/8.000000:16.000000/11.000000/8.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:s/2/0.000000/7.000000/16.000000/16.000000:n/2/0.000000/7.000000/16.000000/16.000000,box=8.000000/2.000000/0.000000:8.000000/11.000000/16.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:w/2/0.000000/7.000000/16.000000/16.000000:e/2/0.000000/7.000000/16.000000/16.000000
|
|
||||||
modellist:id=%coffee_bush,state=half:lower,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000,box=10.000000/0.000000/8.000000:13.000000/4.000000/8.000000:s/0/7.000000/4.000000/4.000000/8.000000:n/0/4.000000/4.000000/7.000000/8.000000,box=3.000000/0.000000/8.000000:6.000000/3.000000/8.000000:s/0/7.000000/8.000000/4.000000/11.000000:n/0/4.000000/8.000000/7.000000/11.000000,box=8.000000/0.000000/3.000000:8.000000/4.000000/6.000000:w/0/4.000000/4.000000/7.000000/8.000000:e/0/7.000000/4.000000/4.000000/8.000000,box=8.000000/0.000000/10.000000:8.000000/3.000000/13.000000:w/0/4.000000/8.000000/7.000000/11.000000:e/0/7.000000/8.000000/4.000000/11.000000,box=0.000000/5.000000/0.100000:16.000000/16.000000/0.100000:s/1/0.000000/2.000000/16.000000/13.000000:n/1/0.000000/2.000000/16.000000/13.000000,box=0.000000/5.000000/15.900000:16.000000/16.000000/15.900000:s/1/0.000000/2.000000/16.000000/13.000000:n/1/0.000000/2.000000/16.000000/13.000000,box=0.100000/5.000000/0.000000:0.100000/16.000000/16.000000:s/1/0.000000/0.000000/0.000000/11.000000:w/1/0.000000/2.000000/16.000000/13.000000:e/1/0.000000/2.000000/16.000000/13.000000:n/1/0.000000/0.000000/0.000000/11.000000,box=15.900000/5.000000/0.000000:15.900000/16.000000/16.000000:s/1/0.000000/0.000000/0.000000/11.000000:w/1/0.000000/2.000000/16.000000/13.000000:e/1/0.000000/2.000000/16.000000/13.000000:n/1/0.000000/0.000000/0.000000/11.000000,box=8.000000/5.000000/0.000000:8.000000/16.000000/16.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:w/1/0.000000/2.000000/16.000000/13.000000:e/1/0.000000/2.000000/16.000000/13.000000,box=0.000000/5.000000/8.000000:16.000000/16.000000/8.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:s/1/0.000000/2.000000/16.000000/13.000000:n/1/0.000000/2.000000/16.000000/13.000000
|
|
||||||
modellist:id=%coffee_stem,state=facing:north/age:0,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000,box=10.000000/0.000000/8.000000:13.000000/4.000000/8.000000:s/0/7.000000/4.000000/4.000000/8.000000:n/0/4.000000/4.000000/7.000000/8.000000,box=3.000000/0.000000/8.000000:6.000000/3.000000/8.000000:s/0/7.000000/8.000000/4.000000/11.000000:n/0/4.000000/8.000000/7.000000/11.000000,box=8.000000/0.000000/3.000000:8.000000/4.000000/6.000000:w/0/4.000000/4.000000/7.000000/8.000000:e/0/7.000000/4.000000/4.000000/8.000000,box=8.000000/0.000000/10.000000:8.000000/3.000000/13.000000:w/0/4.000000/8.000000/7.000000/11.000000:e/0/7.000000/8.000000/4.000000/11.000000,box=8.000000/8.000000/10.000000:8.000000/17.000000/24.000000:w/1/2.000000/4.000000/15.000000/13.000000:e/1/15.000000/4.000000/2.000000/13.000000
|
|
||||||
modellist:id=%coffee_stem,state=facing:south/age:0,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/180/0,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/180/0,box=10.000000/0.000000/8.000000:13.000000/4.000000/8.000000:s/0/7.000000/4.000000/4.000000/8.000000:n/0/4.000000/4.000000/7.000000/8.000000:R/0/180/0,box=3.000000/0.000000/8.000000:6.000000/3.000000/8.000000:s/0/7.000000/8.000000/4.000000/11.000000:n/0/4.000000/8.000000/7.000000/11.000000:R/0/180/0,box=8.000000/0.000000/3.000000:8.000000/4.000000/6.000000:w/0/4.000000/4.000000/7.000000/8.000000:e/0/7.000000/4.000000/4.000000/8.000000:R/0/180/0,box=8.000000/0.000000/10.000000:8.000000/3.000000/13.000000:w/0/4.000000/8.000000/7.000000/11.000000:e/0/7.000000/8.000000/4.000000/11.000000:R/0/180/0,box=8.000000/8.000000/10.000000:8.000000/17.000000/24.000000:w/1/2.000000/4.000000/15.000000/13.000000:e/1/15.000000/4.000000/2.000000/13.000000:R/0/180/0
|
|
||||||
modellist:id=%coffee_stem,state=facing:west/age:0,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/270/0,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/270/0,box=10.000000/0.000000/8.000000:13.000000/4.000000/8.000000:s/0/7.000000/4.000000/4.000000/8.000000:n/0/4.000000/4.000000/7.000000/8.000000:R/0/270/0,box=3.000000/0.000000/8.000000:6.000000/3.000000/8.000000:s/0/7.000000/8.000000/4.000000/11.000000:n/0/4.000000/8.000000/7.000000/11.000000:R/0/270/0,box=8.000000/0.000000/3.000000:8.000000/4.000000/6.000000:w/0/4.000000/4.000000/7.000000/8.000000:e/0/7.000000/4.000000/4.000000/8.000000:R/0/270/0,box=8.000000/0.000000/10.000000:8.000000/3.000000/13.000000:w/0/4.000000/8.000000/7.000000/11.000000:e/0/7.000000/8.000000/4.000000/11.000000:R/0/270/0,box=8.000000/8.000000/10.000000:8.000000/17.000000/24.000000:w/1/2.000000/4.000000/15.000000/13.000000:e/1/15.000000/4.000000/2.000000/13.000000:R/0/270/0
|
|
||||||
modellist:id=%coffee_stem,state=facing:east/age:0,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/90/0,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/90/0,box=10.000000/0.000000/8.000000:13.000000/4.000000/8.000000:s/0/7.000000/4.000000/4.000000/8.000000:n/0/4.000000/4.000000/7.000000/8.000000:R/0/90/0,box=3.000000/0.000000/8.000000:6.000000/3.000000/8.000000:s/0/7.000000/8.000000/4.000000/11.000000:n/0/4.000000/8.000000/7.000000/11.000000:R/0/90/0,box=8.000000/0.000000/3.000000:8.000000/4.000000/6.000000:w/0/4.000000/4.000000/7.000000/8.000000:e/0/7.000000/4.000000/4.000000/8.000000:R/0/90/0,box=8.000000/0.000000/10.000000:8.000000/3.000000/13.000000:w/0/4.000000/8.000000/7.000000/11.000000:e/0/7.000000/8.000000/4.000000/11.000000:R/0/90/0,box=8.000000/8.000000/10.000000:8.000000/17.000000/24.000000:w/1/2.000000/4.000000/15.000000/13.000000:e/1/15.000000/4.000000/2.000000/13.000000:R/0/90/0
|
|
||||||
modellist:id=%coffee_stem,state=facing:north/age:1,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000,box=10.000000/0.000000/8.000000:13.000000/4.000000/8.000000:s/0/7.000000/4.000000/4.000000/8.000000:n/0/4.000000/4.000000/7.000000/8.000000,box=3.000000/0.000000/8.000000:6.000000/3.000000/8.000000:s/0/7.000000/8.000000/4.000000/11.000000:n/0/4.000000/8.000000/7.000000/11.000000,box=8.000000/0.000000/3.000000:8.000000/4.000000/6.000000:w/0/4.000000/4.000000/7.000000/8.000000:e/0/7.000000/4.000000/4.000000/8.000000,box=8.000000/0.000000/10.000000:8.000000/3.000000/13.000000:w/0/4.000000/8.000000/7.000000/11.000000:e/0/7.000000/8.000000/4.000000/11.000000,box=8.000000/8.000000/10.000000:8.000000/17.000000/24.000000:w/1/2.000000/4.000000/15.000000/13.000000:e/1/15.000000/4.000000/2.000000/13.000000
|
|
||||||
modellist:id=%coffee_stem,state=facing:south/age:1,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/180/0,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/180/0,box=10.000000/0.000000/8.000000:13.000000/4.000000/8.000000:s/0/7.000000/4.000000/4.000000/8.000000:n/0/4.000000/4.000000/7.000000/8.000000:R/0/180/0,box=3.000000/0.000000/8.000000:6.000000/3.000000/8.000000:s/0/7.000000/8.000000/4.000000/11.000000:n/0/4.000000/8.000000/7.000000/11.000000:R/0/180/0,box=8.000000/0.000000/3.000000:8.000000/4.000000/6.000000:w/0/4.000000/4.000000/7.000000/8.000000:e/0/7.000000/4.000000/4.000000/8.000000:R/0/180/0,box=8.000000/0.000000/10.000000:8.000000/3.000000/13.000000:w/0/4.000000/8.000000/7.000000/11.000000:e/0/7.000000/8.000000/4.000000/11.000000:R/0/180/0,box=8.000000/8.000000/10.000000:8.000000/17.000000/24.000000:w/1/2.000000/4.000000/15.000000/13.000000:e/1/15.000000/4.000000/2.000000/13.000000:R/0/180/0
|
|
||||||
modellist:id=%coffee_stem,state=facing:west/age:1,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/270/0,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/270/0,box=10.000000/0.000000/8.000000:13.000000/4.000000/8.000000:s/0/7.000000/4.000000/4.000000/8.000000:n/0/4.000000/4.000000/7.000000/8.000000:R/0/270/0,box=3.000000/0.000000/8.000000:6.000000/3.000000/8.000000:s/0/7.000000/8.000000/4.000000/11.000000:n/0/4.000000/8.000000/7.000000/11.000000:R/0/270/0,box=8.000000/0.000000/3.000000:8.000000/4.000000/6.000000:w/0/4.000000/4.000000/7.000000/8.000000:e/0/7.000000/4.000000/4.000000/8.000000:R/0/270/0,box=8.000000/0.000000/10.000000:8.000000/3.000000/13.000000:w/0/4.000000/8.000000/7.000000/11.000000:e/0/7.000000/8.000000/4.000000/11.000000:R/0/270/0,box=8.000000/8.000000/10.000000:8.000000/17.000000/24.000000:w/1/2.000000/4.000000/15.000000/13.000000:e/1/15.000000/4.000000/2.000000/13.000000:R/0/270/0
|
|
||||||
modellist:id=%coffee_stem,state=facing:east/age:1,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/90/0,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/90/0,box=10.000000/0.000000/8.000000:13.000000/4.000000/8.000000:s/0/7.000000/4.000000/4.000000/8.000000:n/0/4.000000/4.000000/7.000000/8.000000:R/0/90/0,box=3.000000/0.000000/8.000000:6.000000/3.000000/8.000000:s/0/7.000000/8.000000/4.000000/11.000000:n/0/4.000000/8.000000/7.000000/11.000000:R/0/90/0,box=8.000000/0.000000/3.000000:8.000000/4.000000/6.000000:w/0/4.000000/4.000000/7.000000/8.000000:e/0/7.000000/4.000000/4.000000/8.000000:R/0/90/0,box=8.000000/0.000000/10.000000:8.000000/3.000000/13.000000:w/0/4.000000/8.000000/7.000000/11.000000:e/0/7.000000/8.000000/4.000000/11.000000:R/0/90/0,box=8.000000/8.000000/10.000000:8.000000/17.000000/24.000000:w/1/2.000000/4.000000/15.000000/13.000000:e/1/15.000000/4.000000/2.000000/13.000000:R/0/90/0
|
|
||||||
modellist:id=%coffee_stem,state=facing:north/age:2,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000,box=10.000000/0.000000/8.000000:13.000000/4.000000/8.000000:s/0/7.000000/4.000000/4.000000/8.000000:n/0/4.000000/4.000000/7.000000/8.000000,box=3.000000/0.000000/8.000000:6.000000/3.000000/8.000000:s/0/7.000000/8.000000/4.000000/11.000000:n/0/4.000000/8.000000/7.000000/11.000000,box=8.000000/0.000000/3.000000:8.000000/4.000000/6.000000:w/0/4.000000/4.000000/7.000000/8.000000:e/0/7.000000/4.000000/4.000000/8.000000,box=8.000000/0.000000/10.000000:8.000000/3.000000/13.000000:w/0/4.000000/8.000000/7.000000/11.000000:e/0/7.000000/8.000000/4.000000/11.000000,box=8.000000/8.000000/10.000000:8.000000/17.000000/24.000000:w/1/2.000000/4.000000/15.000000/13.000000:e/1/15.000000/4.000000/2.000000/13.000000
|
|
||||||
modellist:id=%coffee_stem,state=facing:south/age:2,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/180/0,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/180/0,box=10.000000/0.000000/8.000000:13.000000/4.000000/8.000000:s/0/7.000000/4.000000/4.000000/8.000000:n/0/4.000000/4.000000/7.000000/8.000000:R/0/180/0,box=3.000000/0.000000/8.000000:6.000000/3.000000/8.000000:s/0/7.000000/8.000000/4.000000/11.000000:n/0/4.000000/8.000000/7.000000/11.000000:R/0/180/0,box=8.000000/0.000000/3.000000:8.000000/4.000000/6.000000:w/0/4.000000/4.000000/7.000000/8.000000:e/0/7.000000/4.000000/4.000000/8.000000:R/0/180/0,box=8.000000/0.000000/10.000000:8.000000/3.000000/13.000000:w/0/4.000000/8.000000/7.000000/11.000000:e/0/7.000000/8.000000/4.000000/11.000000:R/0/180/0,box=8.000000/8.000000/10.000000:8.000000/17.000000/24.000000:w/1/2.000000/4.000000/15.000000/13.000000:e/1/15.000000/4.000000/2.000000/13.000000:R/0/180/0
|
|
||||||
modellist:id=%coffee_stem,state=facing:west/age:2,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/270/0,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/270/0,box=10.000000/0.000000/8.000000:13.000000/4.000000/8.000000:s/0/7.000000/4.000000/4.000000/8.000000:n/0/4.000000/4.000000/7.000000/8.000000:R/0/270/0,box=3.000000/0.000000/8.000000:6.000000/3.000000/8.000000:s/0/7.000000/8.000000/4.000000/11.000000:n/0/4.000000/8.000000/7.000000/11.000000:R/0/270/0,box=8.000000/0.000000/3.000000:8.000000/4.000000/6.000000:w/0/4.000000/4.000000/7.000000/8.000000:e/0/7.000000/4.000000/4.000000/8.000000:R/0/270/0,box=8.000000/0.000000/10.000000:8.000000/3.000000/13.000000:w/0/4.000000/8.000000/7.000000/11.000000:e/0/7.000000/8.000000/4.000000/11.000000:R/0/270/0,box=8.000000/8.000000/10.000000:8.000000/17.000000/24.000000:w/1/2.000000/4.000000/15.000000/13.000000:e/1/15.000000/4.000000/2.000000/13.000000:R/0/270/0
|
|
||||||
modellist:id=%coffee_stem,state=facing:east/age:2,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/90/0,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/90/0,box=10.000000/0.000000/8.000000:13.000000/4.000000/8.000000:s/0/7.000000/4.000000/4.000000/8.000000:n/0/4.000000/4.000000/7.000000/8.000000:R/0/90/0,box=3.000000/0.000000/8.000000:6.000000/3.000000/8.000000:s/0/7.000000/8.000000/4.000000/11.000000:n/0/4.000000/8.000000/7.000000/11.000000:R/0/90/0,box=8.000000/0.000000/3.000000:8.000000/4.000000/6.000000:w/0/4.000000/4.000000/7.000000/8.000000:e/0/7.000000/4.000000/4.000000/8.000000:R/0/90/0,box=8.000000/0.000000/10.000000:8.000000/3.000000/13.000000:w/0/4.000000/8.000000/7.000000/11.000000:e/0/7.000000/8.000000/4.000000/11.000000:R/0/90/0,box=8.000000/8.000000/10.000000:8.000000/17.000000/24.000000:w/1/2.000000/4.000000/15.000000/13.000000:e/1/15.000000/4.000000/2.000000/13.000000:R/0/90/0
|
|
||||||
modellist:id=%coffee_bush_top,state=half:upper,box=0.000000/2.000000/0.000000:16.000000/2.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000,box=0.100000/0.000000/0.000000:0.100000/2.000000/16.000000:w/1/0.000000/0.000000/16.000000/2.000000:e/1/0.000000/0.000000/16.000000/2.000000,box=15.900000/0.000000/0.000000:15.900000/2.000000/16.000000:w/1/0.000000/0.000000/16.000000/2.000000:e/1/0.000000/0.000000/16.000000/2.000000,box=0.000000/0.000000/8.000000:16.000000/2.000000/8.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:s/1/0.000000/0.000000/16.000000/2.000000:n/1/0.000000/0.000000/16.000000/2.000000,box=0.000000/0.000000/8.000000:16.000000/2.000000/8.000000/0.000000/-45.000000/0.000000/8.000000/8.000000/8.000000:s/1/0.000000/0.000000/16.000000/2.000000:n/1/0.000000/0.000000/16.000000/2.000000,box=0.000000/0.000000/0.100000:16.000000/2.000000/0.100000:s/1/0.000000/0.000000/16.000000/2.000000:n/1/0.000000/0.000000/16.000000/2.000000,box=0.000000/0.000000/15.900000:16.000000/2.000000/15.900000:s/1/0.000000/0.000000/16.000000/2.000000:n/1/0.000000/0.000000/16.000000/2.000000,box=0.000000/2.000000/8.000000:16.000000/11.000000/8.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:s/2/0.000000/7.000000/16.000000/16.000000:n/2/0.000000/7.000000/16.000000/16.000000,box=8.000000/2.000000/0.000000:8.000000/11.000000/16.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:w/2/0.000000/7.000000/16.000000/16.000000:e/2/0.000000/7.000000/16.000000/16.000000
|
|
||||||
modellist:id=%coffee_bush_top,state=half:lower,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000,box=0.000000/5.000000/0.100000:16.000000/16.000000/0.100000:s/1/0.000000/2.000000/16.000000/13.000000:n/1/0.000000/2.000000/16.000000/13.000000,box=0.000000/5.000000/15.900000:16.000000/16.000000/15.900000:s/1/0.000000/2.000000/16.000000/13.000000:n/1/0.000000/2.000000/16.000000/13.000000,box=0.100000/5.000000/0.000000:0.100000/16.000000/16.000000:s/1/0.000000/0.000000/0.000000/11.000000:w/1/0.000000/2.000000/16.000000/13.000000:e/1/0.000000/2.000000/16.000000/13.000000:n/1/0.000000/0.000000/0.000000/11.000000,box=15.900000/5.000000/0.000000:15.900000/16.000000/16.000000:s/1/0.000000/0.000000/0.000000/11.000000:w/1/0.000000/2.000000/16.000000/13.000000:e/1/0.000000/2.000000/16.000000/13.000000:n/1/0.000000/0.000000/0.000000/11.000000,box=8.000000/5.000000/0.000000:8.000000/16.000000/16.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:w/1/0.000000/2.000000/16.000000/13.000000:e/1/0.000000/2.000000/16.000000/13.000000,box=0.000000/5.000000/8.000000:16.000000/16.000000/8.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:s/1/0.000000/2.000000/16.000000/13.000000:n/1/0.000000/2.000000/16.000000/13.000000
|
|
||||||
modellist:id=%coffee_stem_double,state=facing:north/age:0/age1:0,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000,box=10.000000/0.000000/8.000000:13.000000/4.000000/8.000000:s/0/7.000000/4.000000/4.000000/8.000000:n/0/4.000000/4.000000/7.000000/8.000000,box=3.000000/0.000000/8.000000:6.000000/3.000000/8.000000:s/0/7.000000/8.000000/4.000000/11.000000:n/0/4.000000/8.000000/7.000000/11.000000,box=8.000000/0.000000/3.000000:8.000000/4.000000/6.000000:w/0/4.000000/4.000000/7.000000/8.000000:e/0/7.000000/4.000000/4.000000/8.000000,box=8.000000/0.000000/10.000000:8.000000/3.000000/13.000000:w/0/4.000000/8.000000/7.000000/11.000000:e/0/7.000000/8.000000/4.000000/11.000000,box=8.000000/8.000000/10.000000:8.000000/17.000000/24.000000:w/1/2.000000/4.000000/15.000000/13.000000:e/1/15.000000/4.000000/2.000000/13.000000,box=8.000000/8.000000/-8.000000:8.000000/17.000000/6.000000:w/1/15.000000/4.000000/2.000000/13.000000:e/1/2.000000/4.000000/15.000000/13.000000
|
|
||||||
modellist:id=%coffee_stem_double,state=facing:south/age:0/age1:0,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/180/0,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/180/0,box=10.000000/0.000000/8.000000:13.000000/4.000000/8.000000:s/0/7.000000/4.000000/4.000000/8.000000:n/0/4.000000/4.000000/7.000000/8.000000:R/0/180/0,box=3.000000/0.000000/8.000000:6.000000/3.000000/8.000000:s/0/7.000000/8.000000/4.000000/11.000000:n/0/4.000000/8.000000/7.000000/11.000000:R/0/180/0,box=8.000000/0.000000/3.000000:8.000000/4.000000/6.000000:w/0/4.000000/4.000000/7.000000/8.000000:e/0/7.000000/4.000000/4.000000/8.000000:R/0/180/0,box=8.000000/0.000000/10.000000:8.000000/3.000000/13.000000:w/0/4.000000/8.000000/7.000000/11.000000:e/0/7.000000/8.000000/4.000000/11.000000:R/0/180/0,box=8.000000/8.000000/10.000000:8.000000/17.000000/24.000000:w/1/2.000000/4.000000/15.000000/13.000000:e/1/15.000000/4.000000/2.000000/13.000000:R/0/180/0,box=8.000000/8.000000/-8.000000:8.000000/17.000000/6.000000:w/1/15.000000/4.000000/2.000000/13.000000:e/1/2.000000/4.000000/15.000000/13.000000:R/0/180/0
|
|
||||||
modellist:id=%coffee_stem_double,state=facing:west/age:0/age1:0,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/270/0,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/270/0,box=10.000000/0.000000/8.000000:13.000000/4.000000/8.000000:s/0/7.000000/4.000000/4.000000/8.000000:n/0/4.000000/4.000000/7.000000/8.000000:R/0/270/0,box=3.000000/0.000000/8.000000:6.000000/3.000000/8.000000:s/0/7.000000/8.000000/4.000000/11.000000:n/0/4.000000/8.000000/7.000000/11.000000:R/0/270/0,box=8.000000/0.000000/3.000000:8.000000/4.000000/6.000000:w/0/4.000000/4.000000/7.000000/8.000000:e/0/7.000000/4.000000/4.000000/8.000000:R/0/270/0,box=8.000000/0.000000/10.000000:8.000000/3.000000/13.000000:w/0/4.000000/8.000000/7.000000/11.000000:e/0/7.000000/8.000000/4.000000/11.000000:R/0/270/0,box=8.000000/8.000000/10.000000:8.000000/17.000000/24.000000:w/1/2.000000/4.000000/15.000000/13.000000:e/1/15.000000/4.000000/2.000000/13.000000:R/0/270/0,box=8.000000/8.000000/-8.000000:8.000000/17.000000/6.000000:w/1/15.000000/4.000000/2.000000/13.000000:e/1/2.000000/4.000000/15.000000/13.000000:R/0/270/0
|
|
||||||
modellist:id=%coffee_stem_double,state=facing:east/age:0/age1:0,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/90/0,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/90/0,box=10.000000/0.000000/8.000000:13.000000/4.000000/8.000000:s/0/7.000000/4.000000/4.000000/8.000000:n/0/4.000000/4.000000/7.000000/8.000000:R/0/90/0,box=3.000000/0.000000/8.000000:6.000000/3.000000/8.000000:s/0/7.000000/8.000000/4.000000/11.000000:n/0/4.000000/8.000000/7.000000/11.000000:R/0/90/0,box=8.000000/0.000000/3.000000:8.000000/4.000000/6.000000:w/0/4.000000/4.000000/7.000000/8.000000:e/0/7.000000/4.000000/4.000000/8.000000:R/0/90/0,box=8.000000/0.000000/10.000000:8.000000/3.000000/13.000000:w/0/4.000000/8.000000/7.000000/11.000000:e/0/7.000000/8.000000/4.000000/11.000000:R/0/90/0,box=8.000000/8.000000/10.000000:8.000000/17.000000/24.000000:w/1/2.000000/4.000000/15.000000/13.000000:e/1/15.000000/4.000000/2.000000/13.000000:R/0/90/0,box=8.000000/8.000000/-8.000000:8.000000/17.000000/6.000000:w/1/15.000000/4.000000/2.000000/13.000000:e/1/2.000000/4.000000/15.000000/13.000000:R/0/90/0
|
|
||||||
modellist:id=%coffee_stem_double,state=facing:north/age:0/age1:1,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000,box=10.000000/0.000000/8.000000:13.000000/4.000000/8.000000:s/0/7.000000/4.000000/4.000000/8.000000:n/0/4.000000/4.000000/7.000000/8.000000,box=3.000000/0.000000/8.000000:6.000000/3.000000/8.000000:s/0/7.000000/8.000000/4.000000/11.000000:n/0/4.000000/8.000000/7.000000/11.000000,box=8.000000/0.000000/3.000000:8.000000/4.000000/6.000000:w/0/4.000000/4.000000/7.000000/8.000000:e/0/7.000000/4.000000/4.000000/8.000000,box=8.000000/0.000000/10.000000:8.000000/3.000000/13.000000:w/0/4.000000/8.000000/7.000000/11.000000:e/0/7.000000/8.000000/4.000000/11.000000,box=8.000000/8.000000/10.000000:8.000000/17.000000/24.000000:w/1/2.000000/4.000000/15.000000/13.000000:e/1/15.000000/4.000000/2.000000/13.000000,box=8.000000/8.000000/-8.000000:8.000000/17.000000/6.000000:w/2/15.000000/4.000000/2.000000/13.000000:e/2/2.000000/4.000000/15.000000/13.000000
|
|
||||||
modellist:id=%coffee_stem_double,state=facing:south/age:0/age1:1,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/180/0,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/180/0,box=10.000000/0.000000/8.000000:13.000000/4.000000/8.000000:s/0/7.000000/4.000000/4.000000/8.000000:n/0/4.000000/4.000000/7.000000/8.000000:R/0/180/0,box=3.000000/0.000000/8.000000:6.000000/3.000000/8.000000:s/0/7.000000/8.000000/4.000000/11.000000:n/0/4.000000/8.000000/7.000000/11.000000:R/0/180/0,box=8.000000/0.000000/3.000000:8.000000/4.000000/6.000000:w/0/4.000000/4.000000/7.000000/8.000000:e/0/7.000000/4.000000/4.000000/8.000000:R/0/180/0,box=8.000000/0.000000/10.000000:8.000000/3.000000/13.000000:w/0/4.000000/8.000000/7.000000/11.000000:e/0/7.000000/8.000000/4.000000/11.000000:R/0/180/0,box=8.000000/8.000000/10.000000:8.000000/17.000000/24.000000:w/1/2.000000/4.000000/15.000000/13.000000:e/1/15.000000/4.000000/2.000000/13.000000:R/0/180/0,box=8.000000/8.000000/-8.000000:8.000000/17.000000/6.000000:w/2/15.000000/4.000000/2.000000/13.000000:e/2/2.000000/4.000000/15.000000/13.000000:R/0/180/0
|
|
||||||
modellist:id=%coffee_stem_double,state=facing:west/age:0/age1:1,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/270/0,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/270/0,box=10.000000/0.000000/8.000000:13.000000/4.000000/8.000000:s/0/7.000000/4.000000/4.000000/8.000000:n/0/4.000000/4.000000/7.000000/8.000000:R/0/270/0,box=3.000000/0.000000/8.000000:6.000000/3.000000/8.000000:s/0/7.000000/8.000000/4.000000/11.000000:n/0/4.000000/8.000000/7.000000/11.000000:R/0/270/0,box=8.000000/0.000000/3.000000:8.000000/4.000000/6.000000:w/0/4.000000/4.000000/7.000000/8.000000:e/0/7.000000/4.000000/4.000000/8.000000:R/0/270/0,box=8.000000/0.000000/10.000000:8.000000/3.000000/13.000000:w/0/4.000000/8.000000/7.000000/11.000000:e/0/7.000000/8.000000/4.000000/11.000000:R/0/270/0,box=8.000000/8.000000/10.000000:8.000000/17.000000/24.000000:w/1/2.000000/4.000000/15.000000/13.000000:e/1/15.000000/4.000000/2.000000/13.000000:R/0/270/0,box=8.000000/8.000000/-8.000000:8.000000/17.000000/6.000000:w/2/15.000000/4.000000/2.000000/13.000000:e/2/2.000000/4.000000/15.000000/13.000000:R/0/270/0
|
|
||||||
modellist:id=%coffee_stem_double,state=facing:east/age:0/age1:1,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/90/0,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/90/0,box=10.000000/0.000000/8.000000:13.000000/4.000000/8.000000:s/0/7.000000/4.000000/4.000000/8.000000:n/0/4.000000/4.000000/7.000000/8.000000:R/0/90/0,box=3.000000/0.000000/8.000000:6.000000/3.000000/8.000000:s/0/7.000000/8.000000/4.000000/11.000000:n/0/4.000000/8.000000/7.000000/11.000000:R/0/90/0,box=8.000000/0.000000/3.000000:8.000000/4.000000/6.000000:w/0/4.000000/4.000000/7.000000/8.000000:e/0/7.000000/4.000000/4.000000/8.000000:R/0/90/0,box=8.000000/0.000000/10.000000:8.000000/3.000000/13.000000:w/0/4.000000/8.000000/7.000000/11.000000:e/0/7.000000/8.000000/4.000000/11.000000:R/0/90/0,box=8.000000/8.000000/10.000000:8.000000/17.000000/24.000000:w/1/2.000000/4.000000/15.000000/13.000000:e/1/15.000000/4.000000/2.000000/13.000000:R/0/90/0,box=8.000000/8.000000/-8.000000:8.000000/17.000000/6.000000:w/2/15.000000/4.000000/2.000000/13.000000:e/2/2.000000/4.000000/15.000000/13.000000:R/0/90/0
|
|
||||||
modellist:id=%coffee_stem_double,state=facing:north/age:0/age1:2,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000,box=10.000000/0.000000/8.000000:13.000000/4.000000/8.000000:s/0/7.000000/4.000000/4.000000/8.000000:n/0/4.000000/4.000000/7.000000/8.000000,box=3.000000/0.000000/8.000000:6.000000/3.000000/8.000000:s/0/7.000000/8.000000/4.000000/11.000000:n/0/4.000000/8.000000/7.000000/11.000000,box=8.000000/0.000000/3.000000:8.000000/4.000000/6.000000:w/0/4.000000/4.000000/7.000000/8.000000:e/0/7.000000/4.000000/4.000000/8.000000,box=8.000000/0.000000/10.000000:8.000000/3.000000/13.000000:w/0/4.000000/8.000000/7.000000/11.000000:e/0/7.000000/8.000000/4.000000/11.000000,box=8.000000/8.000000/10.000000:8.000000/17.000000/24.000000:w/1/2.000000/4.000000/15.000000/13.000000:e/1/15.000000/4.000000/2.000000/13.000000,box=8.000000/8.000000/-8.000000:8.000000/17.000000/6.000000:w/2/15.000000/4.000000/2.000000/13.000000:e/2/2.000000/4.000000/15.000000/13.000000
|
|
||||||
modellist:id=%coffee_stem_double,state=facing:south/age:0/age1:2,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/180/0,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/180/0,box=10.000000/0.000000/8.000000:13.000000/4.000000/8.000000:s/0/7.000000/4.000000/4.000000/8.000000:n/0/4.000000/4.000000/7.000000/8.000000:R/0/180/0,box=3.000000/0.000000/8.000000:6.000000/3.000000/8.000000:s/0/7.000000/8.000000/4.000000/11.000000:n/0/4.000000/8.000000/7.000000/11.000000:R/0/180/0,box=8.000000/0.000000/3.000000:8.000000/4.000000/6.000000:w/0/4.000000/4.000000/7.000000/8.000000:e/0/7.000000/4.000000/4.000000/8.000000:R/0/180/0,box=8.000000/0.000000/10.000000:8.000000/3.000000/13.000000:w/0/4.000000/8.000000/7.000000/11.000000:e/0/7.000000/8.000000/4.000000/11.000000:R/0/180/0,box=8.000000/8.000000/10.000000:8.000000/17.000000/24.000000:w/1/2.000000/4.000000/15.000000/13.000000:e/1/15.000000/4.000000/2.000000/13.000000:R/0/180/0,box=8.000000/8.000000/-8.000000:8.000000/17.000000/6.000000:w/2/15.000000/4.000000/2.000000/13.000000:e/2/2.000000/4.000000/15.000000/13.000000:R/0/180/0
|
|
||||||
modellist:id=%coffee_stem_double,state=facing:west/age:0/age1:2,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/270/0,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/270/0,box=10.000000/0.000000/8.000000:13.000000/4.000000/8.000000:s/0/7.000000/4.000000/4.000000/8.000000:n/0/4.000000/4.000000/7.000000/8.000000:R/0/270/0,box=3.000000/0.000000/8.000000:6.000000/3.000000/8.000000:s/0/7.000000/8.000000/4.000000/11.000000:n/0/4.000000/8.000000/7.000000/11.000000:R/0/270/0,box=8.000000/0.000000/3.000000:8.000000/4.000000/6.000000:w/0/4.000000/4.000000/7.000000/8.000000:e/0/7.000000/4.000000/4.000000/8.000000:R/0/270/0,box=8.000000/0.000000/10.000000:8.000000/3.000000/13.000000:w/0/4.000000/8.000000/7.000000/11.000000:e/0/7.000000/8.000000/4.000000/11.000000:R/0/270/0,box=8.000000/8.000000/10.000000:8.000000/17.000000/24.000000:w/1/2.000000/4.000000/15.000000/13.000000:e/1/15.000000/4.000000/2.000000/13.000000:R/0/270/0,box=8.000000/8.000000/-8.000000:8.000000/17.000000/6.000000:w/2/15.000000/4.000000/2.000000/13.000000:e/2/2.000000/4.000000/15.000000/13.000000:R/0/270/0
|
|
||||||
modellist:id=%coffee_stem_double,state=facing:east/age:0/age1:2,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/90/0,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/90/0,box=10.000000/0.000000/8.000000:13.000000/4.000000/8.000000:s/0/7.000000/4.000000/4.000000/8.000000:n/0/4.000000/4.000000/7.000000/8.000000:R/0/90/0,box=3.000000/0.000000/8.000000:6.000000/3.000000/8.000000:s/0/7.000000/8.000000/4.000000/11.000000:n/0/4.000000/8.000000/7.000000/11.000000:R/0/90/0,box=8.000000/0.000000/3.000000:8.000000/4.000000/6.000000:w/0/4.000000/4.000000/7.000000/8.000000:e/0/7.000000/4.000000/4.000000/8.000000:R/0/90/0,box=8.000000/0.000000/10.000000:8.000000/3.000000/13.000000:w/0/4.000000/8.000000/7.000000/11.000000:e/0/7.000000/8.000000/4.000000/11.000000:R/0/90/0,box=8.000000/8.000000/10.000000:8.000000/17.000000/24.000000:w/1/2.000000/4.000000/15.000000/13.000000:e/1/15.000000/4.000000/2.000000/13.000000:R/0/90/0,box=8.000000/8.000000/-8.000000:8.000000/17.000000/6.000000:w/2/15.000000/4.000000/2.000000/13.000000:e/2/2.000000/4.000000/15.000000/13.000000:R/0/90/0
|
|
||||||
modellist:id=%coffee_stem_double,state=facing:north/age:1/age1:0,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000,box=10.000000/0.000000/8.000000:13.000000/4.000000/8.000000:s/0/7.000000/4.000000/4.000000/8.000000:n/0/4.000000/4.000000/7.000000/8.000000,box=3.000000/0.000000/8.000000:6.000000/3.000000/8.000000:s/0/7.000000/8.000000/4.000000/11.000000:n/0/4.000000/8.000000/7.000000/11.000000,box=8.000000/0.000000/3.000000:8.000000/4.000000/6.000000:w/0/4.000000/4.000000/7.000000/8.000000:e/0/7.000000/4.000000/4.000000/8.000000,box=8.000000/0.000000/10.000000:8.000000/3.000000/13.000000:w/0/4.000000/8.000000/7.000000/11.000000:e/0/7.000000/8.000000/4.000000/11.000000,box=8.000000/8.000000/10.000000:8.000000/17.000000/24.000000:w/1/2.000000/4.000000/15.000000/13.000000:e/1/15.000000/4.000000/2.000000/13.000000,box=8.000000/8.000000/-8.000000:8.000000/17.000000/6.000000:w/2/15.000000/4.000000/2.000000/13.000000:e/2/2.000000/4.000000/15.000000/13.000000
|
|
||||||
modellist:id=%coffee_stem_double,state=facing:south/age:1/age1:0,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/180/0,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/180/0,box=10.000000/0.000000/8.000000:13.000000/4.000000/8.000000:s/0/7.000000/4.000000/4.000000/8.000000:n/0/4.000000/4.000000/7.000000/8.000000:R/0/180/0,box=3.000000/0.000000/8.000000:6.000000/3.000000/8.000000:s/0/7.000000/8.000000/4.000000/11.000000:n/0/4.000000/8.000000/7.000000/11.000000:R/0/180/0,box=8.000000/0.000000/3.000000:8.000000/4.000000/6.000000:w/0/4.000000/4.000000/7.000000/8.000000:e/0/7.000000/4.000000/4.000000/8.000000:R/0/180/0,box=8.000000/0.000000/10.000000:8.000000/3.000000/13.000000:w/0/4.000000/8.000000/7.000000/11.000000:e/0/7.000000/8.000000/4.000000/11.000000:R/0/180/0,box=8.000000/8.000000/10.000000:8.000000/17.000000/24.000000:w/1/2.000000/4.000000/15.000000/13.000000:e/1/15.000000/4.000000/2.000000/13.000000:R/0/180/0,box=8.000000/8.000000/-8.000000:8.000000/17.000000/6.000000:w/2/15.000000/4.000000/2.000000/13.000000:e/2/2.000000/4.000000/15.000000/13.000000:R/0/180/0
|
|
||||||
modellist:id=%coffee_stem_double,state=facing:west/age:1/age1:0,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/270/0,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/270/0,box=10.000000/0.000000/8.000000:13.000000/4.000000/8.000000:s/0/7.000000/4.000000/4.000000/8.000000:n/0/4.000000/4.000000/7.000000/8.000000:R/0/270/0,box=3.000000/0.000000/8.000000:6.000000/3.000000/8.000000:s/0/7.000000/8.000000/4.000000/11.000000:n/0/4.000000/8.000000/7.000000/11.000000:R/0/270/0,box=8.000000/0.000000/3.000000:8.000000/4.000000/6.000000:w/0/4.000000/4.000000/7.000000/8.000000:e/0/7.000000/4.000000/4.000000/8.000000:R/0/270/0,box=8.000000/0.000000/10.000000:8.000000/3.000000/13.000000:w/0/4.000000/8.000000/7.000000/11.000000:e/0/7.000000/8.000000/4.000000/11.000000:R/0/270/0,box=8.000000/8.000000/10.000000:8.000000/17.000000/24.000000:w/1/2.000000/4.000000/15.000000/13.000000:e/1/15.000000/4.000000/2.000000/13.000000:R/0/270/0,box=8.000000/8.000000/-8.000000:8.000000/17.000000/6.000000:w/2/15.000000/4.000000/2.000000/13.000000:e/2/2.000000/4.000000/15.000000/13.000000:R/0/270/0
|
|
||||||
modellist:id=%coffee_stem_double,state=facing:east/age:1/age1:0,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/90/0,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/90/0,box=10.000000/0.000000/8.000000:13.000000/4.000000/8.000000:s/0/7.000000/4.000000/4.000000/8.000000:n/0/4.000000/4.000000/7.000000/8.000000:R/0/90/0,box=3.000000/0.000000/8.000000:6.000000/3.000000/8.000000:s/0/7.000000/8.000000/4.000000/11.000000:n/0/4.000000/8.000000/7.000000/11.000000:R/0/90/0,box=8.000000/0.000000/3.000000:8.000000/4.000000/6.000000:w/0/4.000000/4.000000/7.000000/8.000000:e/0/7.000000/4.000000/4.000000/8.000000:R/0/90/0,box=8.000000/0.000000/10.000000:8.000000/3.000000/13.000000:w/0/4.000000/8.000000/7.000000/11.000000:e/0/7.000000/8.000000/4.000000/11.000000:R/0/90/0,box=8.000000/8.000000/10.000000:8.000000/17.000000/24.000000:w/1/2.000000/4.000000/15.000000/13.000000:e/1/15.000000/4.000000/2.000000/13.000000:R/0/90/0,box=8.000000/8.000000/-8.000000:8.000000/17.000000/6.000000:w/2/15.000000/4.000000/2.000000/13.000000:e/2/2.000000/4.000000/15.000000/13.000000:R/0/90/0
|
|
||||||
modellist:id=%coffee_stem_double,state=facing:north/age:1/age1:1,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000,box=10.000000/0.000000/8.000000:13.000000/4.000000/8.000000:s/0/7.000000/4.000000/4.000000/8.000000:n/0/4.000000/4.000000/7.000000/8.000000,box=3.000000/0.000000/8.000000:6.000000/3.000000/8.000000:s/0/7.000000/8.000000/4.000000/11.000000:n/0/4.000000/8.000000/7.000000/11.000000,box=8.000000/0.000000/3.000000:8.000000/4.000000/6.000000:w/0/4.000000/4.000000/7.000000/8.000000:e/0/7.000000/4.000000/4.000000/8.000000,box=8.000000/0.000000/10.000000:8.000000/3.000000/13.000000:w/0/4.000000/8.000000/7.000000/11.000000:e/0/7.000000/8.000000/4.000000/11.000000,box=8.000000/8.000000/10.000000:8.000000/17.000000/24.000000:w/1/2.000000/4.000000/15.000000/13.000000:e/1/15.000000/4.000000/2.000000/13.000000,box=8.000000/8.000000/-8.000000:8.000000/17.000000/6.000000:w/1/15.000000/4.000000/2.000000/13.000000:e/1/2.000000/4.000000/15.000000/13.000000
|
|
||||||
modellist:id=%coffee_stem_double,state=facing:south/age:1/age1:1,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/180/0,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/180/0,box=10.000000/0.000000/8.000000:13.000000/4.000000/8.000000:s/0/7.000000/4.000000/4.000000/8.000000:n/0/4.000000/4.000000/7.000000/8.000000:R/0/180/0,box=3.000000/0.000000/8.000000:6.000000/3.000000/8.000000:s/0/7.000000/8.000000/4.000000/11.000000:n/0/4.000000/8.000000/7.000000/11.000000:R/0/180/0,box=8.000000/0.000000/3.000000:8.000000/4.000000/6.000000:w/0/4.000000/4.000000/7.000000/8.000000:e/0/7.000000/4.000000/4.000000/8.000000:R/0/180/0,box=8.000000/0.000000/10.000000:8.000000/3.000000/13.000000:w/0/4.000000/8.000000/7.000000/11.000000:e/0/7.000000/8.000000/4.000000/11.000000:R/0/180/0,box=8.000000/8.000000/10.000000:8.000000/17.000000/24.000000:w/1/2.000000/4.000000/15.000000/13.000000:e/1/15.000000/4.000000/2.000000/13.000000:R/0/180/0,box=8.000000/8.000000/-8.000000:8.000000/17.000000/6.000000:w/1/15.000000/4.000000/2.000000/13.000000:e/1/2.000000/4.000000/15.000000/13.000000:R/0/180/0
|
|
||||||
modellist:id=%coffee_stem_double,state=facing:west/age:1/age1:1,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/270/0,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/270/0,box=10.000000/0.000000/8.000000:13.000000/4.000000/8.000000:s/0/7.000000/4.000000/4.000000/8.000000:n/0/4.000000/4.000000/7.000000/8.000000:R/0/270/0,box=3.000000/0.000000/8.000000:6.000000/3.000000/8.000000:s/0/7.000000/8.000000/4.000000/11.000000:n/0/4.000000/8.000000/7.000000/11.000000:R/0/270/0,box=8.000000/0.000000/3.000000:8.000000/4.000000/6.000000:w/0/4.000000/4.000000/7.000000/8.000000:e/0/7.000000/4.000000/4.000000/8.000000:R/0/270/0,box=8.000000/0.000000/10.000000:8.000000/3.000000/13.000000:w/0/4.000000/8.000000/7.000000/11.000000:e/0/7.000000/8.000000/4.000000/11.000000:R/0/270/0,box=8.000000/8.000000/10.000000:8.000000/17.000000/24.000000:w/1/2.000000/4.000000/15.000000/13.000000:e/1/15.000000/4.000000/2.000000/13.000000:R/0/270/0,box=8.000000/8.000000/-8.000000:8.000000/17.000000/6.000000:w/1/15.000000/4.000000/2.000000/13.000000:e/1/2.000000/4.000000/15.000000/13.000000:R/0/270/0
|
|
||||||
modellist:id=%coffee_stem_double,state=facing:east/age:1/age1:1,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/90/0,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/90/0,box=10.000000/0.000000/8.000000:13.000000/4.000000/8.000000:s/0/7.000000/4.000000/4.000000/8.000000:n/0/4.000000/4.000000/7.000000/8.000000:R/0/90/0,box=3.000000/0.000000/8.000000:6.000000/3.000000/8.000000:s/0/7.000000/8.000000/4.000000/11.000000:n/0/4.000000/8.000000/7.000000/11.000000:R/0/90/0,box=8.000000/0.000000/3.000000:8.000000/4.000000/6.000000:w/0/4.000000/4.000000/7.000000/8.000000:e/0/7.000000/4.000000/4.000000/8.000000:R/0/90/0,box=8.000000/0.000000/10.000000:8.000000/3.000000/13.000000:w/0/4.000000/8.000000/7.000000/11.000000:e/0/7.000000/8.000000/4.000000/11.000000:R/0/90/0,box=8.000000/8.000000/10.000000:8.000000/17.000000/24.000000:w/1/2.000000/4.000000/15.000000/13.000000:e/1/15.000000/4.000000/2.000000/13.000000:R/0/90/0,box=8.000000/8.000000/-8.000000:8.000000/17.000000/6.000000:w/1/15.000000/4.000000/2.000000/13.000000:e/1/2.000000/4.000000/15.000000/13.000000:R/0/90/0
|
|
||||||
modellist:id=%coffee_stem_double,state=facing:north/age:1/age1:2,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000,box=10.000000/0.000000/8.000000:13.000000/4.000000/8.000000:s/0/7.000000/4.000000/4.000000/8.000000:n/0/4.000000/4.000000/7.000000/8.000000,box=3.000000/0.000000/8.000000:6.000000/3.000000/8.000000:s/0/7.000000/8.000000/4.000000/11.000000:n/0/4.000000/8.000000/7.000000/11.000000,box=8.000000/0.000000/3.000000:8.000000/4.000000/6.000000:w/0/4.000000/4.000000/7.000000/8.000000:e/0/7.000000/4.000000/4.000000/8.000000,box=8.000000/0.000000/10.000000:8.000000/3.000000/13.000000:w/0/4.000000/8.000000/7.000000/11.000000:e/0/7.000000/8.000000/4.000000/11.000000,box=8.000000/8.000000/10.000000:8.000000/17.000000/24.000000:w/1/2.000000/4.000000/15.000000/13.000000:e/1/15.000000/4.000000/2.000000/13.000000,box=8.000000/8.000000/-8.000000:8.000000/17.000000/6.000000:w/2/15.000000/4.000000/2.000000/13.000000:e/2/2.000000/4.000000/15.000000/13.000000
|
|
||||||
modellist:id=%coffee_stem_double,state=facing:south/age:1/age1:2,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/180/0,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/180/0,box=10.000000/0.000000/8.000000:13.000000/4.000000/8.000000:s/0/7.000000/4.000000/4.000000/8.000000:n/0/4.000000/4.000000/7.000000/8.000000:R/0/180/0,box=3.000000/0.000000/8.000000:6.000000/3.000000/8.000000:s/0/7.000000/8.000000/4.000000/11.000000:n/0/4.000000/8.000000/7.000000/11.000000:R/0/180/0,box=8.000000/0.000000/3.000000:8.000000/4.000000/6.000000:w/0/4.000000/4.000000/7.000000/8.000000:e/0/7.000000/4.000000/4.000000/8.000000:R/0/180/0,box=8.000000/0.000000/10.000000:8.000000/3.000000/13.000000:w/0/4.000000/8.000000/7.000000/11.000000:e/0/7.000000/8.000000/4.000000/11.000000:R/0/180/0,box=8.000000/8.000000/10.000000:8.000000/17.000000/24.000000:w/1/2.000000/4.000000/15.000000/13.000000:e/1/15.000000/4.000000/2.000000/13.000000:R/0/180/0,box=8.000000/8.000000/-8.000000:8.000000/17.000000/6.000000:w/2/15.000000/4.000000/2.000000/13.000000:e/2/2.000000/4.000000/15.000000/13.000000:R/0/180/0
|
|
||||||
modellist:id=%coffee_stem_double,state=facing:west/age:1/age1:2,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/270/0,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/270/0,box=10.000000/0.000000/8.000000:13.000000/4.000000/8.000000:s/0/7.000000/4.000000/4.000000/8.000000:n/0/4.000000/4.000000/7.000000/8.000000:R/0/270/0,box=3.000000/0.000000/8.000000:6.000000/3.000000/8.000000:s/0/7.000000/8.000000/4.000000/11.000000:n/0/4.000000/8.000000/7.000000/11.000000:R/0/270/0,box=8.000000/0.000000/3.000000:8.000000/4.000000/6.000000:w/0/4.000000/4.000000/7.000000/8.000000:e/0/7.000000/4.000000/4.000000/8.000000:R/0/270/0,box=8.000000/0.000000/10.000000:8.000000/3.000000/13.000000:w/0/4.000000/8.000000/7.000000/11.000000:e/0/7.000000/8.000000/4.000000/11.000000:R/0/270/0,box=8.000000/8.000000/10.000000:8.000000/17.000000/24.000000:w/1/2.000000/4.000000/15.000000/13.000000:e/1/15.000000/4.000000/2.000000/13.000000:R/0/270/0,box=8.000000/8.000000/-8.000000:8.000000/17.000000/6.000000:w/2/15.000000/4.000000/2.000000/13.000000:e/2/2.000000/4.000000/15.000000/13.000000:R/0/270/0
|
|
||||||
modellist:id=%coffee_stem_double,state=facing:east/age:1/age1:2,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/90/0,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/90/0,box=10.000000/0.000000/8.000000:13.000000/4.000000/8.000000:s/0/7.000000/4.000000/4.000000/8.000000:n/0/4.000000/4.000000/7.000000/8.000000:R/0/90/0,box=3.000000/0.000000/8.000000:6.000000/3.000000/8.000000:s/0/7.000000/8.000000/4.000000/11.000000:n/0/4.000000/8.000000/7.000000/11.000000:R/0/90/0,box=8.000000/0.000000/3.000000:8.000000/4.000000/6.000000:w/0/4.000000/4.000000/7.000000/8.000000:e/0/7.000000/4.000000/4.000000/8.000000:R/0/90/0,box=8.000000/0.000000/10.000000:8.000000/3.000000/13.000000:w/0/4.000000/8.000000/7.000000/11.000000:e/0/7.000000/8.000000/4.000000/11.000000:R/0/90/0,box=8.000000/8.000000/10.000000:8.000000/17.000000/24.000000:w/1/2.000000/4.000000/15.000000/13.000000:e/1/15.000000/4.000000/2.000000/13.000000:R/0/90/0,box=8.000000/8.000000/-8.000000:8.000000/17.000000/6.000000:w/2/15.000000/4.000000/2.000000/13.000000:e/2/2.000000/4.000000/15.000000/13.000000:R/0/90/0
|
|
||||||
modellist:id=%coffee_stem_double,state=facing:north/age:2/age1:0,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000,box=10.000000/0.000000/8.000000:13.000000/4.000000/8.000000:s/0/7.000000/4.000000/4.000000/8.000000:n/0/4.000000/4.000000/7.000000/8.000000,box=3.000000/0.000000/8.000000:6.000000/3.000000/8.000000:s/0/7.000000/8.000000/4.000000/11.000000:n/0/4.000000/8.000000/7.000000/11.000000,box=8.000000/0.000000/3.000000:8.000000/4.000000/6.000000:w/0/4.000000/4.000000/7.000000/8.000000:e/0/7.000000/4.000000/4.000000/8.000000,box=8.000000/0.000000/10.000000:8.000000/3.000000/13.000000:w/0/4.000000/8.000000/7.000000/11.000000:e/0/7.000000/8.000000/4.000000/11.000000,box=8.000000/8.000000/10.000000:8.000000/17.000000/24.000000:w/1/2.000000/4.000000/15.000000/13.000000:e/1/15.000000/4.000000/2.000000/13.000000,box=8.000000/8.000000/-8.000000:8.000000/17.000000/6.000000:w/2/15.000000/4.000000/2.000000/13.000000:e/2/2.000000/4.000000/15.000000/13.000000
|
|
||||||
modellist:id=%coffee_stem_double,state=facing:south/age:2/age1:0,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/180/0,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/180/0,box=10.000000/0.000000/8.000000:13.000000/4.000000/8.000000:s/0/7.000000/4.000000/4.000000/8.000000:n/0/4.000000/4.000000/7.000000/8.000000:R/0/180/0,box=3.000000/0.000000/8.000000:6.000000/3.000000/8.000000:s/0/7.000000/8.000000/4.000000/11.000000:n/0/4.000000/8.000000/7.000000/11.000000:R/0/180/0,box=8.000000/0.000000/3.000000:8.000000/4.000000/6.000000:w/0/4.000000/4.000000/7.000000/8.000000:e/0/7.000000/4.000000/4.000000/8.000000:R/0/180/0,box=8.000000/0.000000/10.000000:8.000000/3.000000/13.000000:w/0/4.000000/8.000000/7.000000/11.000000:e/0/7.000000/8.000000/4.000000/11.000000:R/0/180/0,box=8.000000/8.000000/10.000000:8.000000/17.000000/24.000000:w/1/2.000000/4.000000/15.000000/13.000000:e/1/15.000000/4.000000/2.000000/13.000000:R/0/180/0,box=8.000000/8.000000/-8.000000:8.000000/17.000000/6.000000:w/2/15.000000/4.000000/2.000000/13.000000:e/2/2.000000/4.000000/15.000000/13.000000:R/0/180/0
|
|
||||||
modellist:id=%coffee_stem_double,state=facing:west/age:2/age1:0,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/270/0,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/270/0,box=10.000000/0.000000/8.000000:13.000000/4.000000/8.000000:s/0/7.000000/4.000000/4.000000/8.000000:n/0/4.000000/4.000000/7.000000/8.000000:R/0/270/0,box=3.000000/0.000000/8.000000:6.000000/3.000000/8.000000:s/0/7.000000/8.000000/4.000000/11.000000:n/0/4.000000/8.000000/7.000000/11.000000:R/0/270/0,box=8.000000/0.000000/3.000000:8.000000/4.000000/6.000000:w/0/4.000000/4.000000/7.000000/8.000000:e/0/7.000000/4.000000/4.000000/8.000000:R/0/270/0,box=8.000000/0.000000/10.000000:8.000000/3.000000/13.000000:w/0/4.000000/8.000000/7.000000/11.000000:e/0/7.000000/8.000000/4.000000/11.000000:R/0/270/0,box=8.000000/8.000000/10.000000:8.000000/17.000000/24.000000:w/1/2.000000/4.000000/15.000000/13.000000:e/1/15.000000/4.000000/2.000000/13.000000:R/0/270/0,box=8.000000/8.000000/-8.000000:8.000000/17.000000/6.000000:w/2/15.000000/4.000000/2.000000/13.000000:e/2/2.000000/4.000000/15.000000/13.000000:R/0/270/0
|
|
||||||
modellist:id=%coffee_stem_double,state=facing:east/age:2/age1:0,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/90/0,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/90/0,box=10.000000/0.000000/8.000000:13.000000/4.000000/8.000000:s/0/7.000000/4.000000/4.000000/8.000000:n/0/4.000000/4.000000/7.000000/8.000000:R/0/90/0,box=3.000000/0.000000/8.000000:6.000000/3.000000/8.000000:s/0/7.000000/8.000000/4.000000/11.000000:n/0/4.000000/8.000000/7.000000/11.000000:R/0/90/0,box=8.000000/0.000000/3.000000:8.000000/4.000000/6.000000:w/0/4.000000/4.000000/7.000000/8.000000:e/0/7.000000/4.000000/4.000000/8.000000:R/0/90/0,box=8.000000/0.000000/10.000000:8.000000/3.000000/13.000000:w/0/4.000000/8.000000/7.000000/11.000000:e/0/7.000000/8.000000/4.000000/11.000000:R/0/90/0,box=8.000000/8.000000/10.000000:8.000000/17.000000/24.000000:w/1/2.000000/4.000000/15.000000/13.000000:e/1/15.000000/4.000000/2.000000/13.000000:R/0/90/0,box=8.000000/8.000000/-8.000000:8.000000/17.000000/6.000000:w/2/15.000000/4.000000/2.000000/13.000000:e/2/2.000000/4.000000/15.000000/13.000000:R/0/90/0
|
|
||||||
modellist:id=%coffee_stem_double,state=facing:north/age:2/age1:1,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000,box=10.000000/0.000000/8.000000:13.000000/4.000000/8.000000:s/0/7.000000/4.000000/4.000000/8.000000:n/0/4.000000/4.000000/7.000000/8.000000,box=3.000000/0.000000/8.000000:6.000000/3.000000/8.000000:s/0/7.000000/8.000000/4.000000/11.000000:n/0/4.000000/8.000000/7.000000/11.000000,box=8.000000/0.000000/3.000000:8.000000/4.000000/6.000000:w/0/4.000000/4.000000/7.000000/8.000000:e/0/7.000000/4.000000/4.000000/8.000000,box=8.000000/0.000000/10.000000:8.000000/3.000000/13.000000:w/0/4.000000/8.000000/7.000000/11.000000:e/0/7.000000/8.000000/4.000000/11.000000,box=8.000000/8.000000/10.000000:8.000000/17.000000/24.000000:w/1/2.000000/4.000000/15.000000/13.000000:e/1/15.000000/4.000000/2.000000/13.000000,box=8.000000/8.000000/-8.000000:8.000000/17.000000/6.000000:w/2/15.000000/4.000000/2.000000/13.000000:e/2/2.000000/4.000000/15.000000/13.000000
|
|
||||||
modellist:id=%coffee_stem_double,state=facing:south/age:2/age1:1,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/180/0,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/180/0,box=10.000000/0.000000/8.000000:13.000000/4.000000/8.000000:s/0/7.000000/4.000000/4.000000/8.000000:n/0/4.000000/4.000000/7.000000/8.000000:R/0/180/0,box=3.000000/0.000000/8.000000:6.000000/3.000000/8.000000:s/0/7.000000/8.000000/4.000000/11.000000:n/0/4.000000/8.000000/7.000000/11.000000:R/0/180/0,box=8.000000/0.000000/3.000000:8.000000/4.000000/6.000000:w/0/4.000000/4.000000/7.000000/8.000000:e/0/7.000000/4.000000/4.000000/8.000000:R/0/180/0,box=8.000000/0.000000/10.000000:8.000000/3.000000/13.000000:w/0/4.000000/8.000000/7.000000/11.000000:e/0/7.000000/8.000000/4.000000/11.000000:R/0/180/0,box=8.000000/8.000000/10.000000:8.000000/17.000000/24.000000:w/1/2.000000/4.000000/15.000000/13.000000:e/1/15.000000/4.000000/2.000000/13.000000:R/0/180/0,box=8.000000/8.000000/-8.000000:8.000000/17.000000/6.000000:w/2/15.000000/4.000000/2.000000/13.000000:e/2/2.000000/4.000000/15.000000/13.000000:R/0/180/0
|
|
||||||
modellist:id=%coffee_stem_double,state=facing:west/age:2/age1:1,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/270/0,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/270/0,box=10.000000/0.000000/8.000000:13.000000/4.000000/8.000000:s/0/7.000000/4.000000/4.000000/8.000000:n/0/4.000000/4.000000/7.000000/8.000000:R/0/270/0,box=3.000000/0.000000/8.000000:6.000000/3.000000/8.000000:s/0/7.000000/8.000000/4.000000/11.000000:n/0/4.000000/8.000000/7.000000/11.000000:R/0/270/0,box=8.000000/0.000000/3.000000:8.000000/4.000000/6.000000:w/0/4.000000/4.000000/7.000000/8.000000:e/0/7.000000/4.000000/4.000000/8.000000:R/0/270/0,box=8.000000/0.000000/10.000000:8.000000/3.000000/13.000000:w/0/4.000000/8.000000/7.000000/11.000000:e/0/7.000000/8.000000/4.000000/11.000000:R/0/270/0,box=8.000000/8.000000/10.000000:8.000000/17.000000/24.000000:w/1/2.000000/4.000000/15.000000/13.000000:e/1/15.000000/4.000000/2.000000/13.000000:R/0/270/0,box=8.000000/8.000000/-8.000000:8.000000/17.000000/6.000000:w/2/15.000000/4.000000/2.000000/13.000000:e/2/2.000000/4.000000/15.000000/13.000000:R/0/270/0
|
|
||||||
modellist:id=%coffee_stem_double,state=facing:east/age:2/age1:1,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/90/0,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/90/0,box=10.000000/0.000000/8.000000:13.000000/4.000000/8.000000:s/0/7.000000/4.000000/4.000000/8.000000:n/0/4.000000/4.000000/7.000000/8.000000:R/0/90/0,box=3.000000/0.000000/8.000000:6.000000/3.000000/8.000000:s/0/7.000000/8.000000/4.000000/11.000000:n/0/4.000000/8.000000/7.000000/11.000000:R/0/90/0,box=8.000000/0.000000/3.000000:8.000000/4.000000/6.000000:w/0/4.000000/4.000000/7.000000/8.000000:e/0/7.000000/4.000000/4.000000/8.000000:R/0/90/0,box=8.000000/0.000000/10.000000:8.000000/3.000000/13.000000:w/0/4.000000/8.000000/7.000000/11.000000:e/0/7.000000/8.000000/4.000000/11.000000:R/0/90/0,box=8.000000/8.000000/10.000000:8.000000/17.000000/24.000000:w/1/2.000000/4.000000/15.000000/13.000000:e/1/15.000000/4.000000/2.000000/13.000000:R/0/90/0,box=8.000000/8.000000/-8.000000:8.000000/17.000000/6.000000:w/2/15.000000/4.000000/2.000000/13.000000:e/2/2.000000/4.000000/15.000000/13.000000:R/0/90/0
|
|
||||||
modellist:id=%coffee_stem_double,state=facing:north/age:2/age1:2,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000,box=10.000000/0.000000/8.000000:13.000000/4.000000/8.000000:s/0/7.000000/4.000000/4.000000/8.000000:n/0/4.000000/4.000000/7.000000/8.000000,box=3.000000/0.000000/8.000000:6.000000/3.000000/8.000000:s/0/7.000000/8.000000/4.000000/11.000000:n/0/4.000000/8.000000/7.000000/11.000000,box=8.000000/0.000000/3.000000:8.000000/4.000000/6.000000:w/0/4.000000/4.000000/7.000000/8.000000:e/0/7.000000/4.000000/4.000000/8.000000,box=8.000000/0.000000/10.000000:8.000000/3.000000/13.000000:w/0/4.000000/8.000000/7.000000/11.000000:e/0/7.000000/8.000000/4.000000/11.000000,box=8.000000/8.000000/10.000000:8.000000/17.000000/24.000000:w/1/2.000000/4.000000/15.000000/13.000000:e/1/15.000000/4.000000/2.000000/13.000000,box=8.000000/8.000000/-8.000000:8.000000/17.000000/6.000000:w/1/15.000000/4.000000/2.000000/13.000000:e/1/2.000000/4.000000/15.000000/13.000000
|
|
||||||
modellist:id=%coffee_stem_double,state=facing:south/age:2/age1:2,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/180/0,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/180/0,box=10.000000/0.000000/8.000000:13.000000/4.000000/8.000000:s/0/7.000000/4.000000/4.000000/8.000000:n/0/4.000000/4.000000/7.000000/8.000000:R/0/180/0,box=3.000000/0.000000/8.000000:6.000000/3.000000/8.000000:s/0/7.000000/8.000000/4.000000/11.000000:n/0/4.000000/8.000000/7.000000/11.000000:R/0/180/0,box=8.000000/0.000000/3.000000:8.000000/4.000000/6.000000:w/0/4.000000/4.000000/7.000000/8.000000:e/0/7.000000/4.000000/4.000000/8.000000:R/0/180/0,box=8.000000/0.000000/10.000000:8.000000/3.000000/13.000000:w/0/4.000000/8.000000/7.000000/11.000000:e/0/7.000000/8.000000/4.000000/11.000000:R/0/180/0,box=8.000000/8.000000/10.000000:8.000000/17.000000/24.000000:w/1/2.000000/4.000000/15.000000/13.000000:e/1/15.000000/4.000000/2.000000/13.000000:R/0/180/0,box=8.000000/8.000000/-8.000000:8.000000/17.000000/6.000000:w/1/15.000000/4.000000/2.000000/13.000000:e/1/2.000000/4.000000/15.000000/13.000000:R/0/180/0
|
|
||||||
modellist:id=%coffee_stem_double,state=facing:west/age:2/age1:2,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/270/0,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/270/0,box=10.000000/0.000000/8.000000:13.000000/4.000000/8.000000:s/0/7.000000/4.000000/4.000000/8.000000:n/0/4.000000/4.000000/7.000000/8.000000:R/0/270/0,box=3.000000/0.000000/8.000000:6.000000/3.000000/8.000000:s/0/7.000000/8.000000/4.000000/11.000000:n/0/4.000000/8.000000/7.000000/11.000000:R/0/270/0,box=8.000000/0.000000/3.000000:8.000000/4.000000/6.000000:w/0/4.000000/4.000000/7.000000/8.000000:e/0/7.000000/4.000000/4.000000/8.000000:R/0/270/0,box=8.000000/0.000000/10.000000:8.000000/3.000000/13.000000:w/0/4.000000/8.000000/7.000000/11.000000:e/0/7.000000/8.000000/4.000000/11.000000:R/0/270/0,box=8.000000/8.000000/10.000000:8.000000/17.000000/24.000000:w/1/2.000000/4.000000/15.000000/13.000000:e/1/15.000000/4.000000/2.000000/13.000000:R/0/270/0,box=8.000000/8.000000/-8.000000:8.000000/17.000000/6.000000:w/1/15.000000/4.000000/2.000000/13.000000:e/1/2.000000/4.000000/15.000000/13.000000:R/0/270/0
|
|
||||||
modellist:id=%coffee_stem_double,state=facing:east/age:2/age1:2,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/90/0,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/90/0,box=10.000000/0.000000/8.000000:13.000000/4.000000/8.000000:s/0/7.000000/4.000000/4.000000/8.000000:n/0/4.000000/4.000000/7.000000/8.000000:R/0/90/0,box=3.000000/0.000000/8.000000:6.000000/3.000000/8.000000:s/0/7.000000/8.000000/4.000000/11.000000:n/0/4.000000/8.000000/7.000000/11.000000:R/0/90/0,box=8.000000/0.000000/3.000000:8.000000/4.000000/6.000000:w/0/4.000000/4.000000/7.000000/8.000000:e/0/7.000000/4.000000/4.000000/8.000000:R/0/90/0,box=8.000000/0.000000/10.000000:8.000000/3.000000/13.000000:w/0/4.000000/8.000000/7.000000/11.000000:e/0/7.000000/8.000000/4.000000/11.000000:R/0/90/0,box=8.000000/8.000000/10.000000:8.000000/17.000000/24.000000:w/1/2.000000/4.000000/15.000000/13.000000:e/1/15.000000/4.000000/2.000000/13.000000:R/0/90/0,box=8.000000/8.000000/-8.000000:8.000000/17.000000/6.000000:w/1/15.000000/4.000000/2.000000/13.000000:e/1/2.000000/4.000000/15.000000/13.000000:R/0/90/0
|
|
||||||
modellist:id=%coffee_stem_middle,state=facing:north/age:0,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000,box=8.000000/8.000000/10.000000:8.000000/17.000000/24.000000:w/1/2.000000/4.000000/15.000000/13.000000:e/1/15.000000/4.000000/2.000000/13.000000
|
|
||||||
modellist:id=%coffee_stem_middle,state=facing:south/age:0,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/180/0,box=8.000000/8.000000/10.000000:8.000000/17.000000/24.000000:w/1/2.000000/4.000000/15.000000/13.000000:e/1/15.000000/4.000000/2.000000/13.000000:R/0/180/0
|
|
||||||
modellist:id=%coffee_stem_middle,state=facing:west/age:0,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/270/0,box=8.000000/8.000000/10.000000:8.000000/17.000000/24.000000:w/1/2.000000/4.000000/15.000000/13.000000:e/1/15.000000/4.000000/2.000000/13.000000:R/0/270/0
|
|
||||||
modellist:id=%coffee_stem_middle,state=facing:east/age:0,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/90/0,box=8.000000/8.000000/10.000000:8.000000/17.000000/24.000000:w/1/2.000000/4.000000/15.000000/13.000000:e/1/15.000000/4.000000/2.000000/13.000000:R/0/90/0
|
|
||||||
modellist:id=%coffee_stem_middle,state=facing:north/age:1,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000,box=8.000000/8.000000/10.000000:8.000000/17.000000/24.000000:w/1/2.000000/4.000000/15.000000/13.000000:e/1/15.000000/4.000000/2.000000/13.000000
|
|
||||||
modellist:id=%coffee_stem_middle,state=facing:south/age:1,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/180/0,box=8.000000/8.000000/10.000000:8.000000/17.000000/24.000000:w/1/2.000000/4.000000/15.000000/13.000000:e/1/15.000000/4.000000/2.000000/13.000000:R/0/180/0
|
|
||||||
modellist:id=%coffee_stem_middle,state=facing:west/age:1,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/270/0,box=8.000000/8.000000/10.000000:8.000000/17.000000/24.000000:w/1/2.000000/4.000000/15.000000/13.000000:e/1/15.000000/4.000000/2.000000/13.000000:R/0/270/0
|
|
||||||
modellist:id=%coffee_stem_middle,state=facing:east/age:1,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/90/0,box=8.000000/8.000000/10.000000:8.000000/17.000000/24.000000:w/1/2.000000/4.000000/15.000000/13.000000:e/1/15.000000/4.000000/2.000000/13.000000:R/0/90/0
|
|
||||||
modellist:id=%coffee_stem_middle,state=facing:north/age:2,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000,box=8.000000/8.000000/10.000000:8.000000/17.000000/24.000000:w/1/2.000000/4.000000/15.000000/13.000000:e/1/15.000000/4.000000/2.000000/13.000000
|
|
||||||
modellist:id=%coffee_stem_middle,state=facing:south/age:2,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/180/0,box=8.000000/8.000000/10.000000:8.000000/17.000000/24.000000:w/1/2.000000/4.000000/15.000000/13.000000:e/1/15.000000/4.000000/2.000000/13.000000:R/0/180/0
|
|
||||||
modellist:id=%coffee_stem_middle,state=facing:west/age:2,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/270/0,box=8.000000/8.000000/10.000000:8.000000/17.000000/24.000000:w/1/2.000000/4.000000/15.000000/13.000000:e/1/15.000000/4.000000/2.000000/13.000000:R/0/270/0
|
|
||||||
modellist:id=%coffee_stem_middle,state=facing:east/age:2,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:u/0/4.000000/0.000000/8.000000/4.000000:s/0/0.000000/0.000000/4.000000/16.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:n/0/0.000000/0.000000/4.000000/16.000000:R/0/90/0,box=8.000000/8.000000/10.000000:8.000000/17.000000/24.000000:w/1/2.000000/4.000000/15.000000/13.000000:e/1/15.000000/4.000000/2.000000/13.000000:R/0/90/0
|
|
||||||
modellist:id=%wither_roots,box=0.800000/0.000000/8.000000/false:15.200000/16.000000/8.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/0.000000/0.800000/false:8.000000/16.000000/15.200000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%wither_roots_plant,box=0.800000/0.000000/8.000000/false:15.200000/16.000000/8.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/0.000000/0.800000/false:8.000000/16.000000/15.200000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%coffee_cake,state=bites:0,box=1.000000/0.000000/1.000000:15.000000/8.000000/15.000000:u/0:s/1:w/1:e/1:d/2:n/1
|
|
||||||
modellist:id=%coffee_cake,state=bites:1,box=3.000000/0.000000/1.000000:15.000000/8.000000/15.000000:u/0:s/1:w/3:e/1:d/2:n/1
|
|
||||||
modellist:id=%coffee_cake,state=bites:2,box=5.000000/0.000000/1.000000:15.000000/8.000000/15.000000:u/0:s/1:w/3:e/1:d/2:n/1
|
|
||||||
modellist:id=%coffee_cake,state=bites:3,box=7.000000/0.000000/1.000000:15.000000/8.000000/15.000000:u/0:s/1:w/3:e/1:d/2:n/1
|
|
||||||
modellist:id=%coffee_cake,state=bites:4,box=9.000000/0.000000/1.000000:15.000000/8.000000/15.000000:u/0:s/1:w/3:e/1:d/2:n/1
|
|
||||||
modellist:id=%coffee_cake,state=bites:5,box=11.000000/0.000000/1.000000:15.000000/8.000000/15.000000:u/0:s/1:w/3:e/1:d/2:n/1
|
|
||||||
modellist:id=%coffee_cake,state=bites:6,box=13.000000/0.000000/1.000000:15.000000/8.000000/15.000000:u/0:s/1:w/3:e/1:d/2:n/1
|
|
||||||
modellist:id=%rose_hip_pie,state=bites:0/facing:north,box=2.000000/0.000000/2.000000:14.000000/4.000000/14.000000:u/0/2.000000/2.000000/14.000000/14.000000:s/1/2.000000/12.000000/14.000000/16.000000:w/1/2.000000/12.000000/14.000000/16.000000:e/1/2.000000/12.000000/14.000000/16.000000:d/2/2.000000/2.000000/14.000000/14.000000:n/1/2.000000/12.000000/14.000000/16.000000
|
|
||||||
modellist:id=%rose_hip_pie,state=bites:0/facing:south,box=2.000000/0.000000/2.000000:14.000000/4.000000/14.000000:u/0/2.000000/2.000000/14.000000/14.000000:s/1/2.000000/12.000000/14.000000/16.000000:w/1/2.000000/12.000000/14.000000/16.000000:e/1/2.000000/12.000000/14.000000/16.000000:d/2/2.000000/2.000000/14.000000/14.000000:n/1/2.000000/12.000000/14.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%rose_hip_pie,state=bites:0/facing:west,box=2.000000/0.000000/2.000000:14.000000/4.000000/14.000000:u/0/2.000000/2.000000/14.000000/14.000000:s/1/2.000000/12.000000/14.000000/16.000000:w/1/2.000000/12.000000/14.000000/16.000000:e/1/2.000000/12.000000/14.000000/16.000000:d/2/2.000000/2.000000/14.000000/14.000000:n/1/2.000000/12.000000/14.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%rose_hip_pie,state=bites:0/facing:east,box=2.000000/0.000000/2.000000:14.000000/4.000000/14.000000:u/0/2.000000/2.000000/14.000000/14.000000:s/1/2.000000/12.000000/14.000000/16.000000:w/1/2.000000/12.000000/14.000000/16.000000:e/1/2.000000/12.000000/14.000000/16.000000:d/2/2.000000/2.000000/14.000000/14.000000:n/1/2.000000/12.000000/14.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%rose_hip_pie,state=bites:1/facing:north,box=2.000000/0.000000/8.000000:8.000000/4.000000/14.000000:u/0/2.000000/8.000000/8.000000/14.000000:s/3/2.000000/12.000000/8.000000/16.000000:w/3/8.000000/12.000000/14.000000/16.000000:e/1/2.000000/12.000000/8.000000/16.000000:d/2/2.000000/2.000000/8.000000/8.000000,box=2.000000/0.000000/2.000000:14.000000/4.000000/8.000000:u/0/2.000000/2.000000/14.000000/8.000000:s/1/2.000000/12.000000/14.000000/16.000000:w/3/2.000000/12.000000/8.000000/16.000000:e/3/8.000000/12.000000/14.000000/16.000000:d/2/2.000000/8.000000/14.000000/14.000000:n/3/2.000000/12.000000/14.000000/16.000000
|
|
||||||
modellist:id=%rose_hip_pie,state=bites:1/facing:south,box=2.000000/0.000000/8.000000:8.000000/4.000000/14.000000:u/0/2.000000/8.000000/8.000000/14.000000:s/3/2.000000/12.000000/8.000000/16.000000:w/3/8.000000/12.000000/14.000000/16.000000:e/1/2.000000/12.000000/8.000000/16.000000:d/2/2.000000/2.000000/8.000000/8.000000:R/0/180/0,box=2.000000/0.000000/2.000000:14.000000/4.000000/8.000000:u/0/2.000000/2.000000/14.000000/8.000000:s/1/2.000000/12.000000/14.000000/16.000000:w/3/2.000000/12.000000/8.000000/16.000000:e/3/8.000000/12.000000/14.000000/16.000000:d/2/2.000000/8.000000/14.000000/14.000000:n/3/2.000000/12.000000/14.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%rose_hip_pie,state=bites:1/facing:west,box=2.000000/0.000000/8.000000:8.000000/4.000000/14.000000:u/0/2.000000/8.000000/8.000000/14.000000:s/3/2.000000/12.000000/8.000000/16.000000:w/3/8.000000/12.000000/14.000000/16.000000:e/1/2.000000/12.000000/8.000000/16.000000:d/2/2.000000/2.000000/8.000000/8.000000:R/0/270/0,box=2.000000/0.000000/2.000000:14.000000/4.000000/8.000000:u/0/2.000000/2.000000/14.000000/8.000000:s/1/2.000000/12.000000/14.000000/16.000000:w/3/2.000000/12.000000/8.000000/16.000000:e/3/8.000000/12.000000/14.000000/16.000000:d/2/2.000000/8.000000/14.000000/14.000000:n/3/2.000000/12.000000/14.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%rose_hip_pie,state=bites:1/facing:east,box=2.000000/0.000000/8.000000:8.000000/4.000000/14.000000:u/0/2.000000/8.000000/8.000000/14.000000:s/3/2.000000/12.000000/8.000000/16.000000:w/3/8.000000/12.000000/14.000000/16.000000:e/1/2.000000/12.000000/8.000000/16.000000:d/2/2.000000/2.000000/8.000000/8.000000:R/0/90/0,box=2.000000/0.000000/2.000000:14.000000/4.000000/8.000000:u/0/2.000000/2.000000/14.000000/8.000000:s/1/2.000000/12.000000/14.000000/16.000000:w/3/2.000000/12.000000/8.000000/16.000000:e/3/8.000000/12.000000/14.000000/16.000000:d/2/2.000000/8.000000/14.000000/14.000000:n/3/2.000000/12.000000/14.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%rose_hip_pie,state=bites:2/facing:north,box=2.000000/0.000000/2.000000:14.000000/4.000000/8.000000:u/0/2.000000/2.000000/14.000000/8.000000:s/3/2.000000/12.000000/14.000000/16.000000:w/1/2.000000/12.000000/8.000000/16.000000:e/1/8.000000/12.000000/14.000000/16.000000:d/2/2.000000/8.000000/14.000000/14.000000:n/1/2.000000/12.000000/14.000000/16.000000
|
|
||||||
modellist:id=%rose_hip_pie,state=bites:2/facing:south,box=2.000000/0.000000/2.000000:14.000000/4.000000/8.000000:u/0/2.000000/2.000000/14.000000/8.000000:s/3/2.000000/12.000000/14.000000/16.000000:w/1/2.000000/12.000000/8.000000/16.000000:e/1/8.000000/12.000000/14.000000/16.000000:d/2/2.000000/8.000000/14.000000/14.000000:n/1/2.000000/12.000000/14.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%rose_hip_pie,state=bites:2/facing:west,box=2.000000/0.000000/2.000000:14.000000/4.000000/8.000000:u/0/2.000000/2.000000/14.000000/8.000000:s/3/2.000000/12.000000/14.000000/16.000000:w/1/2.000000/12.000000/8.000000/16.000000:e/1/8.000000/12.000000/14.000000/16.000000:d/2/2.000000/8.000000/14.000000/14.000000:n/1/2.000000/12.000000/14.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%rose_hip_pie,state=bites:2/facing:east,box=2.000000/0.000000/2.000000:14.000000/4.000000/8.000000:u/0/2.000000/2.000000/14.000000/8.000000:s/3/2.000000/12.000000/14.000000/16.000000:w/1/2.000000/12.000000/8.000000/16.000000:e/1/8.000000/12.000000/14.000000/16.000000:d/2/2.000000/8.000000/14.000000/14.000000:n/1/2.000000/12.000000/14.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%rose_hip_pie,state=bites:3/facing:north,box=8.000000/0.000000/2.000000:14.000000/4.000000/8.000000:u/0/8.000000/2.000000/14.000000/8.000000:s/3/8.000000/12.000000/14.000000/16.000000:w/3/2.000000/12.000000/8.000000/16.000000:e/1/8.000000/12.000000/14.000000/16.000000:d/2/2.000000/8.000000/14.000000/14.000000:n/1/2.000000/12.000000/8.000000/16.000000
|
|
||||||
modellist:id=%rose_hip_pie,state=bites:3/facing:south,box=8.000000/0.000000/2.000000:14.000000/4.000000/8.000000:u/0/8.000000/2.000000/14.000000/8.000000:s/3/8.000000/12.000000/14.000000/16.000000:w/3/2.000000/12.000000/8.000000/16.000000:e/1/8.000000/12.000000/14.000000/16.000000:d/2/2.000000/8.000000/14.000000/14.000000:n/1/2.000000/12.000000/8.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%rose_hip_pie,state=bites:3/facing:west,box=8.000000/0.000000/2.000000:14.000000/4.000000/8.000000:u/0/8.000000/2.000000/14.000000/8.000000:s/3/8.000000/12.000000/14.000000/16.000000:w/3/2.000000/12.000000/8.000000/16.000000:e/1/8.000000/12.000000/14.000000/16.000000:d/2/2.000000/8.000000/14.000000/14.000000:n/1/2.000000/12.000000/8.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%rose_hip_pie,state=bites:3/facing:east,box=8.000000/0.000000/2.000000:14.000000/4.000000/8.000000:u/0/8.000000/2.000000/14.000000/8.000000:s/3/8.000000/12.000000/14.000000/16.000000:w/3/2.000000/12.000000/8.000000/16.000000:e/1/8.000000/12.000000/14.000000/16.000000:d/2/2.000000/8.000000/14.000000/14.000000:n/1/2.000000/12.000000/8.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%candle_coffee_cake,state=lit:true,box=1.000000/0.000000/1.000000:15.000000/8.000000/15.000000:u/0:s/1:w/1:e/1:d/2:n/1,box=7.000000/8.000000/7.000000:9.000000/14.000000/9.000000:u/3/0.000000/6.000000/2.000000/8.000000:s/3/0.000000/8.000000/2.000000/14.000000:w/3/0.000000/8.000000/2.000000/14.000000:e/3/0.000000/8.000000/2.000000/14.000000:d/3/0.000000/14.000000/2.000000/16.000000:n/3/0.000000/8.000000/2.000000/14.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000/0.000000/-45.000000/0.000000/8.000000/14.000000/8.000000:s/3/0.000000/5.000000/1.000000/6.000000:n/3/0.000000/5.000000/1.000000/6.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000/0.000000/45.000000/0.000000/8.000000/14.000000/8.000000:s/3/0.000000/5.000000/1.000000/6.000000:n/3/0.000000/5.000000/1.000000/6.000000
|
|
||||||
modellist:id=%candle_coffee_cake,state=lit:false,box=1.000000/0.000000/1.000000:15.000000/8.000000/15.000000:u/0:s/1:w/1:e/1:d/2:n/1,box=7.000000/8.000000/7.000000:9.000000/14.000000/9.000000:u/3/0.000000/6.000000/2.000000/8.000000:s/3/0.000000/8.000000/2.000000/14.000000:w/3/0.000000/8.000000/2.000000/14.000000:e/3/0.000000/8.000000/2.000000/14.000000:d/3/0.000000/14.000000/2.000000/16.000000:n/3/0.000000/8.000000/2.000000/14.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000/0.000000/-45.000000/0.000000/8.000000/14.000000/8.000000:s/3/0.000000/5.000000/1.000000/6.000000:n/3/0.000000/5.000000/1.000000/6.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000/0.000000/45.000000/0.000000/8.000000/14.000000/8.000000:s/3/0.000000/5.000000/1.000000/6.000000:n/3/0.000000/5.000000/1.000000/6.000000
|
|
||||||
modellist:id=%white_candle_coffee_cake,state=lit:true,box=1.000000/0.000000/1.000000:15.000000/8.000000/15.000000:u/0:s/1:w/1:e/1:d/2:n/1,box=7.000000/8.000000/7.000000:9.000000/14.000000/9.000000:u/3/0.000000/6.000000/2.000000/8.000000:s/3/0.000000/8.000000/2.000000/14.000000:w/3/0.000000/8.000000/2.000000/14.000000:e/3/0.000000/8.000000/2.000000/14.000000:d/3/0.000000/14.000000/2.000000/16.000000:n/3/0.000000/8.000000/2.000000/14.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000/0.000000/-45.000000/0.000000/8.000000/14.000000/8.000000:s/3/0.000000/5.000000/1.000000/6.000000:n/3/0.000000/5.000000/1.000000/6.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000/0.000000/45.000000/0.000000/8.000000/14.000000/8.000000:s/3/0.000000/5.000000/1.000000/6.000000:n/3/0.000000/5.000000/1.000000/6.000000
|
|
||||||
modellist:id=%white_candle_coffee_cake,state=lit:false,box=1.000000/0.000000/1.000000:15.000000/8.000000/15.000000:u/0:s/1:w/1:e/1:d/2:n/1,box=7.000000/8.000000/7.000000:9.000000/14.000000/9.000000:u/3/0.000000/6.000000/2.000000/8.000000:s/3/0.000000/8.000000/2.000000/14.000000:w/3/0.000000/8.000000/2.000000/14.000000:e/3/0.000000/8.000000/2.000000/14.000000:d/3/0.000000/14.000000/2.000000/16.000000:n/3/0.000000/8.000000/2.000000/14.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000/0.000000/-45.000000/0.000000/8.000000/14.000000/8.000000:s/3/0.000000/5.000000/1.000000/6.000000:n/3/0.000000/5.000000/1.000000/6.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000/0.000000/45.000000/0.000000/8.000000/14.000000/8.000000:s/3/0.000000/5.000000/1.000000/6.000000:n/3/0.000000/5.000000/1.000000/6.000000
|
|
||||||
modellist:id=%orange_candle_coffee_cake,state=lit:true,box=1.000000/0.000000/1.000000:15.000000/8.000000/15.000000:u/0:s/1:w/1:e/1:d/2:n/1,box=7.000000/8.000000/7.000000:9.000000/14.000000/9.000000:u/3/0.000000/6.000000/2.000000/8.000000:s/3/0.000000/8.000000/2.000000/14.000000:w/3/0.000000/8.000000/2.000000/14.000000:e/3/0.000000/8.000000/2.000000/14.000000:d/3/0.000000/14.000000/2.000000/16.000000:n/3/0.000000/8.000000/2.000000/14.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000/0.000000/-45.000000/0.000000/8.000000/14.000000/8.000000:s/3/0.000000/5.000000/1.000000/6.000000:n/3/0.000000/5.000000/1.000000/6.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000/0.000000/45.000000/0.000000/8.000000/14.000000/8.000000:s/3/0.000000/5.000000/1.000000/6.000000:n/3/0.000000/5.000000/1.000000/6.000000
|
|
||||||
modellist:id=%orange_candle_coffee_cake,state=lit:false,box=1.000000/0.000000/1.000000:15.000000/8.000000/15.000000:u/0:s/1:w/1:e/1:d/2:n/1,box=7.000000/8.000000/7.000000:9.000000/14.000000/9.000000:u/3/0.000000/6.000000/2.000000/8.000000:s/3/0.000000/8.000000/2.000000/14.000000:w/3/0.000000/8.000000/2.000000/14.000000:e/3/0.000000/8.000000/2.000000/14.000000:d/3/0.000000/14.000000/2.000000/16.000000:n/3/0.000000/8.000000/2.000000/14.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000/0.000000/-45.000000/0.000000/8.000000/14.000000/8.000000:s/3/0.000000/5.000000/1.000000/6.000000:n/3/0.000000/5.000000/1.000000/6.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000/0.000000/45.000000/0.000000/8.000000/14.000000/8.000000:s/3/0.000000/5.000000/1.000000/6.000000:n/3/0.000000/5.000000/1.000000/6.000000
|
|
||||||
modellist:id=%magenta_candle_coffee_cake,state=lit:true,box=1.000000/0.000000/1.000000:15.000000/8.000000/15.000000:u/0:s/1:w/1:e/1:d/2:n/1,box=7.000000/8.000000/7.000000:9.000000/14.000000/9.000000:u/3/0.000000/6.000000/2.000000/8.000000:s/3/0.000000/8.000000/2.000000/14.000000:w/3/0.000000/8.000000/2.000000/14.000000:e/3/0.000000/8.000000/2.000000/14.000000:d/3/0.000000/14.000000/2.000000/16.000000:n/3/0.000000/8.000000/2.000000/14.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000/0.000000/-45.000000/0.000000/8.000000/14.000000/8.000000:s/3/0.000000/5.000000/1.000000/6.000000:n/3/0.000000/5.000000/1.000000/6.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000/0.000000/45.000000/0.000000/8.000000/14.000000/8.000000:s/3/0.000000/5.000000/1.000000/6.000000:n/3/0.000000/5.000000/1.000000/6.000000
|
|
||||||
modellist:id=%magenta_candle_coffee_cake,state=lit:false,box=1.000000/0.000000/1.000000:15.000000/8.000000/15.000000:u/0:s/1:w/1:e/1:d/2:n/1,box=7.000000/8.000000/7.000000:9.000000/14.000000/9.000000:u/3/0.000000/6.000000/2.000000/8.000000:s/3/0.000000/8.000000/2.000000/14.000000:w/3/0.000000/8.000000/2.000000/14.000000:e/3/0.000000/8.000000/2.000000/14.000000:d/3/0.000000/14.000000/2.000000/16.000000:n/3/0.000000/8.000000/2.000000/14.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000/0.000000/-45.000000/0.000000/8.000000/14.000000/8.000000:s/3/0.000000/5.000000/1.000000/6.000000:n/3/0.000000/5.000000/1.000000/6.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000/0.000000/45.000000/0.000000/8.000000/14.000000/8.000000:s/3/0.000000/5.000000/1.000000/6.000000:n/3/0.000000/5.000000/1.000000/6.000000
|
|
||||||
modellist:id=%light_blue_candle_coffee_cake,state=lit:true,box=1.000000/0.000000/1.000000:15.000000/8.000000/15.000000:u/0:s/1:w/1:e/1:d/2:n/1,box=7.000000/8.000000/7.000000:9.000000/14.000000/9.000000:u/3/0.000000/6.000000/2.000000/8.000000:s/3/0.000000/8.000000/2.000000/14.000000:w/3/0.000000/8.000000/2.000000/14.000000:e/3/0.000000/8.000000/2.000000/14.000000:d/3/0.000000/14.000000/2.000000/16.000000:n/3/0.000000/8.000000/2.000000/14.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000/0.000000/-45.000000/0.000000/8.000000/14.000000/8.000000:s/3/0.000000/5.000000/1.000000/6.000000:n/3/0.000000/5.000000/1.000000/6.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000/0.000000/45.000000/0.000000/8.000000/14.000000/8.000000:s/3/0.000000/5.000000/1.000000/6.000000:n/3/0.000000/5.000000/1.000000/6.000000
|
|
||||||
modellist:id=%light_blue_candle_coffee_cake,state=lit:false,box=1.000000/0.000000/1.000000:15.000000/8.000000/15.000000:u/0:s/1:w/1:e/1:d/2:n/1,box=7.000000/8.000000/7.000000:9.000000/14.000000/9.000000:u/3/0.000000/6.000000/2.000000/8.000000:s/3/0.000000/8.000000/2.000000/14.000000:w/3/0.000000/8.000000/2.000000/14.000000:e/3/0.000000/8.000000/2.000000/14.000000:d/3/0.000000/14.000000/2.000000/16.000000:n/3/0.000000/8.000000/2.000000/14.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000/0.000000/-45.000000/0.000000/8.000000/14.000000/8.000000:s/3/0.000000/5.000000/1.000000/6.000000:n/3/0.000000/5.000000/1.000000/6.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000/0.000000/45.000000/0.000000/8.000000/14.000000/8.000000:s/3/0.000000/5.000000/1.000000/6.000000:n/3/0.000000/5.000000/1.000000/6.000000
|
|
||||||
modellist:id=%yellow_candle_coffee_cake,state=lit:true,box=1.000000/0.000000/1.000000:15.000000/8.000000/15.000000:u/0:s/1:w/1:e/1:d/2:n/1,box=7.000000/8.000000/7.000000:9.000000/14.000000/9.000000:u/3/0.000000/6.000000/2.000000/8.000000:s/3/0.000000/8.000000/2.000000/14.000000:w/3/0.000000/8.000000/2.000000/14.000000:e/3/0.000000/8.000000/2.000000/14.000000:d/3/0.000000/14.000000/2.000000/16.000000:n/3/0.000000/8.000000/2.000000/14.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000/0.000000/-45.000000/0.000000/8.000000/14.000000/8.000000:s/3/0.000000/5.000000/1.000000/6.000000:n/3/0.000000/5.000000/1.000000/6.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000/0.000000/45.000000/0.000000/8.000000/14.000000/8.000000:s/3/0.000000/5.000000/1.000000/6.000000:n/3/0.000000/5.000000/1.000000/6.000000
|
|
||||||
modellist:id=%yellow_candle_coffee_cake,state=lit:false,box=1.000000/0.000000/1.000000:15.000000/8.000000/15.000000:u/0:s/1:w/1:e/1:d/2:n/1,box=7.000000/8.000000/7.000000:9.000000/14.000000/9.000000:u/3/0.000000/6.000000/2.000000/8.000000:s/3/0.000000/8.000000/2.000000/14.000000:w/3/0.000000/8.000000/2.000000/14.000000:e/3/0.000000/8.000000/2.000000/14.000000:d/3/0.000000/14.000000/2.000000/16.000000:n/3/0.000000/8.000000/2.000000/14.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000/0.000000/-45.000000/0.000000/8.000000/14.000000/8.000000:s/3/0.000000/5.000000/1.000000/6.000000:n/3/0.000000/5.000000/1.000000/6.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000/0.000000/45.000000/0.000000/8.000000/14.000000/8.000000:s/3/0.000000/5.000000/1.000000/6.000000:n/3/0.000000/5.000000/1.000000/6.000000
|
|
||||||
modellist:id=%lime_candle_coffee_cake,state=lit:true,box=1.000000/0.000000/1.000000:15.000000/8.000000/15.000000:u/0:s/1:w/1:e/1:d/2:n/1,box=7.000000/8.000000/7.000000:9.000000/14.000000/9.000000:u/3/0.000000/6.000000/2.000000/8.000000:s/3/0.000000/8.000000/2.000000/14.000000:w/3/0.000000/8.000000/2.000000/14.000000:e/3/0.000000/8.000000/2.000000/14.000000:d/3/0.000000/14.000000/2.000000/16.000000:n/3/0.000000/8.000000/2.000000/14.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000/0.000000/-45.000000/0.000000/8.000000/14.000000/8.000000:s/3/0.000000/5.000000/1.000000/6.000000:n/3/0.000000/5.000000/1.000000/6.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000/0.000000/45.000000/0.000000/8.000000/14.000000/8.000000:s/3/0.000000/5.000000/1.000000/6.000000:n/3/0.000000/5.000000/1.000000/6.000000
|
|
||||||
modellist:id=%lime_candle_coffee_cake,state=lit:false,box=1.000000/0.000000/1.000000:15.000000/8.000000/15.000000:u/0:s/1:w/1:e/1:d/2:n/1,box=7.000000/8.000000/7.000000:9.000000/14.000000/9.000000:u/3/0.000000/6.000000/2.000000/8.000000:s/3/0.000000/8.000000/2.000000/14.000000:w/3/0.000000/8.000000/2.000000/14.000000:e/3/0.000000/8.000000/2.000000/14.000000:d/3/0.000000/14.000000/2.000000/16.000000:n/3/0.000000/8.000000/2.000000/14.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000/0.000000/-45.000000/0.000000/8.000000/14.000000/8.000000:s/3/0.000000/5.000000/1.000000/6.000000:n/3/0.000000/5.000000/1.000000/6.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000/0.000000/45.000000/0.000000/8.000000/14.000000/8.000000:s/3/0.000000/5.000000/1.000000/6.000000:n/3/0.000000/5.000000/1.000000/6.000000
|
|
||||||
modellist:id=%pink_candle_coffee_cake,state=lit:true,box=1.000000/0.000000/1.000000:15.000000/8.000000/15.000000:u/0:s/1:w/1:e/1:d/2:n/1,box=7.000000/8.000000/7.000000:9.000000/14.000000/9.000000:u/3/0.000000/6.000000/2.000000/8.000000:s/3/0.000000/8.000000/2.000000/14.000000:w/3/0.000000/8.000000/2.000000/14.000000:e/3/0.000000/8.000000/2.000000/14.000000:d/3/0.000000/14.000000/2.000000/16.000000:n/3/0.000000/8.000000/2.000000/14.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000/0.000000/-45.000000/0.000000/8.000000/14.000000/8.000000:s/3/0.000000/5.000000/1.000000/6.000000:n/3/0.000000/5.000000/1.000000/6.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000/0.000000/45.000000/0.000000/8.000000/14.000000/8.000000:s/3/0.000000/5.000000/1.000000/6.000000:n/3/0.000000/5.000000/1.000000/6.000000
|
|
||||||
modellist:id=%pink_candle_coffee_cake,state=lit:false,box=1.000000/0.000000/1.000000:15.000000/8.000000/15.000000:u/0:s/1:w/1:e/1:d/2:n/1,box=7.000000/8.000000/7.000000:9.000000/14.000000/9.000000:u/3/0.000000/6.000000/2.000000/8.000000:s/3/0.000000/8.000000/2.000000/14.000000:w/3/0.000000/8.000000/2.000000/14.000000:e/3/0.000000/8.000000/2.000000/14.000000:d/3/0.000000/14.000000/2.000000/16.000000:n/3/0.000000/8.000000/2.000000/14.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000/0.000000/-45.000000/0.000000/8.000000/14.000000/8.000000:s/3/0.000000/5.000000/1.000000/6.000000:n/3/0.000000/5.000000/1.000000/6.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000/0.000000/45.000000/0.000000/8.000000/14.000000/8.000000:s/3/0.000000/5.000000/1.000000/6.000000:n/3/0.000000/5.000000/1.000000/6.000000
|
|
||||||
modellist:id=%gray_candle_coffee_cake,state=lit:true,box=1.000000/0.000000/1.000000:15.000000/8.000000/15.000000:u/0:s/1:w/1:e/1:d/2:n/1,box=7.000000/8.000000/7.000000:9.000000/14.000000/9.000000:u/3/0.000000/6.000000/2.000000/8.000000:s/3/0.000000/8.000000/2.000000/14.000000:w/3/0.000000/8.000000/2.000000/14.000000:e/3/0.000000/8.000000/2.000000/14.000000:d/3/0.000000/14.000000/2.000000/16.000000:n/3/0.000000/8.000000/2.000000/14.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000/0.000000/-45.000000/0.000000/8.000000/14.000000/8.000000:s/3/0.000000/5.000000/1.000000/6.000000:n/3/0.000000/5.000000/1.000000/6.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000/0.000000/45.000000/0.000000/8.000000/14.000000/8.000000:s/3/0.000000/5.000000/1.000000/6.000000:n/3/0.000000/5.000000/1.000000/6.000000
|
|
||||||
modellist:id=%gray_candle_coffee_cake,state=lit:false,box=1.000000/0.000000/1.000000:15.000000/8.000000/15.000000:u/0:s/1:w/1:e/1:d/2:n/1,box=7.000000/8.000000/7.000000:9.000000/14.000000/9.000000:u/3/0.000000/6.000000/2.000000/8.000000:s/3/0.000000/8.000000/2.000000/14.000000:w/3/0.000000/8.000000/2.000000/14.000000:e/3/0.000000/8.000000/2.000000/14.000000:d/3/0.000000/14.000000/2.000000/16.000000:n/3/0.000000/8.000000/2.000000/14.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000/0.000000/-45.000000/0.000000/8.000000/14.000000/8.000000:s/3/0.000000/5.000000/1.000000/6.000000:n/3/0.000000/5.000000/1.000000/6.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000/0.000000/45.000000/0.000000/8.000000/14.000000/8.000000:s/3/0.000000/5.000000/1.000000/6.000000:n/3/0.000000/5.000000/1.000000/6.000000
|
|
||||||
modellist:id=%light_gray_candle_coffee_cake,state=lit:true,box=1.000000/0.000000/1.000000:15.000000/8.000000/15.000000:u/0:s/1:w/1:e/1:d/2:n/1,box=7.000000/8.000000/7.000000:9.000000/14.000000/9.000000:u/3/0.000000/6.000000/2.000000/8.000000:s/3/0.000000/8.000000/2.000000/14.000000:w/3/0.000000/8.000000/2.000000/14.000000:e/3/0.000000/8.000000/2.000000/14.000000:d/3/0.000000/14.000000/2.000000/16.000000:n/3/0.000000/8.000000/2.000000/14.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000/0.000000/-45.000000/0.000000/8.000000/14.000000/8.000000:s/3/0.000000/5.000000/1.000000/6.000000:n/3/0.000000/5.000000/1.000000/6.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000/0.000000/45.000000/0.000000/8.000000/14.000000/8.000000:s/3/0.000000/5.000000/1.000000/6.000000:n/3/0.000000/5.000000/1.000000/6.000000
|
|
||||||
modellist:id=%light_gray_candle_coffee_cake,state=lit:false,box=1.000000/0.000000/1.000000:15.000000/8.000000/15.000000:u/0:s/1:w/1:e/1:d/2:n/1,box=7.000000/8.000000/7.000000:9.000000/14.000000/9.000000:u/3/0.000000/6.000000/2.000000/8.000000:s/3/0.000000/8.000000/2.000000/14.000000:w/3/0.000000/8.000000/2.000000/14.000000:e/3/0.000000/8.000000/2.000000/14.000000:d/3/0.000000/14.000000/2.000000/16.000000:n/3/0.000000/8.000000/2.000000/14.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000/0.000000/-45.000000/0.000000/8.000000/14.000000/8.000000:s/3/0.000000/5.000000/1.000000/6.000000:n/3/0.000000/5.000000/1.000000/6.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000/0.000000/45.000000/0.000000/8.000000/14.000000/8.000000:s/3/0.000000/5.000000/1.000000/6.000000:n/3/0.000000/5.000000/1.000000/6.000000
|
|
||||||
modellist:id=%cyan_candle_coffee_cake,state=lit:true,box=1.000000/0.000000/1.000000:15.000000/8.000000/15.000000:u/0:s/1:w/1:e/1:d/2:n/1,box=7.000000/8.000000/7.000000:9.000000/14.000000/9.000000:u/3/0.000000/6.000000/2.000000/8.000000:s/3/0.000000/8.000000/2.000000/14.000000:w/3/0.000000/8.000000/2.000000/14.000000:e/3/0.000000/8.000000/2.000000/14.000000:d/3/0.000000/14.000000/2.000000/16.000000:n/3/0.000000/8.000000/2.000000/14.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000/0.000000/-45.000000/0.000000/8.000000/14.000000/8.000000:s/3/0.000000/5.000000/1.000000/6.000000:n/3/0.000000/5.000000/1.000000/6.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000/0.000000/45.000000/0.000000/8.000000/14.000000/8.000000:s/3/0.000000/5.000000/1.000000/6.000000:n/3/0.000000/5.000000/1.000000/6.000000
|
|
||||||
modellist:id=%cyan_candle_coffee_cake,state=lit:false,box=1.000000/0.000000/1.000000:15.000000/8.000000/15.000000:u/0:s/1:w/1:e/1:d/2:n/1,box=7.000000/8.000000/7.000000:9.000000/14.000000/9.000000:u/3/0.000000/6.000000/2.000000/8.000000:s/3/0.000000/8.000000/2.000000/14.000000:w/3/0.000000/8.000000/2.000000/14.000000:e/3/0.000000/8.000000/2.000000/14.000000:d/3/0.000000/14.000000/2.000000/16.000000:n/3/0.000000/8.000000/2.000000/14.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000/0.000000/-45.000000/0.000000/8.000000/14.000000/8.000000:s/3/0.000000/5.000000/1.000000/6.000000:n/3/0.000000/5.000000/1.000000/6.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000/0.000000/45.000000/0.000000/8.000000/14.000000/8.000000:s/3/0.000000/5.000000/1.000000/6.000000:n/3/0.000000/5.000000/1.000000/6.000000
|
|
||||||
modellist:id=%purple_candle_coffee_cake,state=lit:true,box=1.000000/0.000000/1.000000:15.000000/8.000000/15.000000:u/0:s/1:w/1:e/1:d/2:n/1,box=7.000000/8.000000/7.000000:9.000000/14.000000/9.000000:u/3/0.000000/6.000000/2.000000/8.000000:s/3/0.000000/8.000000/2.000000/14.000000:w/3/0.000000/8.000000/2.000000/14.000000:e/3/0.000000/8.000000/2.000000/14.000000:d/3/0.000000/14.000000/2.000000/16.000000:n/3/0.000000/8.000000/2.000000/14.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000/0.000000/-45.000000/0.000000/8.000000/14.000000/8.000000:s/3/0.000000/5.000000/1.000000/6.000000:n/3/0.000000/5.000000/1.000000/6.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000/0.000000/45.000000/0.000000/8.000000/14.000000/8.000000:s/3/0.000000/5.000000/1.000000/6.000000:n/3/0.000000/5.000000/1.000000/6.000000
|
|
||||||
modellist:id=%purple_candle_coffee_cake,state=lit:false,box=1.000000/0.000000/1.000000:15.000000/8.000000/15.000000:u/0:s/1:w/1:e/1:d/2:n/1,box=7.000000/8.000000/7.000000:9.000000/14.000000/9.000000:u/3/0.000000/6.000000/2.000000/8.000000:s/3/0.000000/8.000000/2.000000/14.000000:w/3/0.000000/8.000000/2.000000/14.000000:e/3/0.000000/8.000000/2.000000/14.000000:d/3/0.000000/14.000000/2.000000/16.000000:n/3/0.000000/8.000000/2.000000/14.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000/0.000000/-45.000000/0.000000/8.000000/14.000000/8.000000:s/3/0.000000/5.000000/1.000000/6.000000:n/3/0.000000/5.000000/1.000000/6.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000/0.000000/45.000000/0.000000/8.000000/14.000000/8.000000:s/3/0.000000/5.000000/1.000000/6.000000:n/3/0.000000/5.000000/1.000000/6.000000
|
|
||||||
modellist:id=%blue_candle_coffee_cake,state=lit:true,box=1.000000/0.000000/1.000000:15.000000/8.000000/15.000000:u/0:s/1:w/1:e/1:d/2:n/1,box=7.000000/8.000000/7.000000:9.000000/14.000000/9.000000:u/3/0.000000/6.000000/2.000000/8.000000:s/3/0.000000/8.000000/2.000000/14.000000:w/3/0.000000/8.000000/2.000000/14.000000:e/3/0.000000/8.000000/2.000000/14.000000:d/3/0.000000/14.000000/2.000000/16.000000:n/3/0.000000/8.000000/2.000000/14.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000/0.000000/-45.000000/0.000000/8.000000/14.000000/8.000000:s/3/0.000000/5.000000/1.000000/6.000000:n/3/0.000000/5.000000/1.000000/6.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000/0.000000/45.000000/0.000000/8.000000/14.000000/8.000000:s/3/0.000000/5.000000/1.000000/6.000000:n/3/0.000000/5.000000/1.000000/6.000000
|
|
||||||
modellist:id=%blue_candle_coffee_cake,state=lit:false,box=1.000000/0.000000/1.000000:15.000000/8.000000/15.000000:u/0:s/1:w/1:e/1:d/2:n/1,box=7.000000/8.000000/7.000000:9.000000/14.000000/9.000000:u/3/0.000000/6.000000/2.000000/8.000000:s/3/0.000000/8.000000/2.000000/14.000000:w/3/0.000000/8.000000/2.000000/14.000000:e/3/0.000000/8.000000/2.000000/14.000000:d/3/0.000000/14.000000/2.000000/16.000000:n/3/0.000000/8.000000/2.000000/14.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000/0.000000/-45.000000/0.000000/8.000000/14.000000/8.000000:s/3/0.000000/5.000000/1.000000/6.000000:n/3/0.000000/5.000000/1.000000/6.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000/0.000000/45.000000/0.000000/8.000000/14.000000/8.000000:s/3/0.000000/5.000000/1.000000/6.000000:n/3/0.000000/5.000000/1.000000/6.000000
|
|
||||||
modellist:id=%brown_candle_coffee_cake,state=lit:true,box=1.000000/0.000000/1.000000:15.000000/8.000000/15.000000:u/0:s/1:w/1:e/1:d/2:n/1,box=7.000000/8.000000/7.000000:9.000000/14.000000/9.000000:u/3/0.000000/6.000000/2.000000/8.000000:s/3/0.000000/8.000000/2.000000/14.000000:w/3/0.000000/8.000000/2.000000/14.000000:e/3/0.000000/8.000000/2.000000/14.000000:d/3/0.000000/14.000000/2.000000/16.000000:n/3/0.000000/8.000000/2.000000/14.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000/0.000000/-45.000000/0.000000/8.000000/14.000000/8.000000:s/3/0.000000/5.000000/1.000000/6.000000:n/3/0.000000/5.000000/1.000000/6.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000/0.000000/45.000000/0.000000/8.000000/14.000000/8.000000:s/3/0.000000/5.000000/1.000000/6.000000:n/3/0.000000/5.000000/1.000000/6.000000
|
|
||||||
modellist:id=%brown_candle_coffee_cake,state=lit:false,box=1.000000/0.000000/1.000000:15.000000/8.000000/15.000000:u/0:s/1:w/1:e/1:d/2:n/1,box=7.000000/8.000000/7.000000:9.000000/14.000000/9.000000:u/3/0.000000/6.000000/2.000000/8.000000:s/3/0.000000/8.000000/2.000000/14.000000:w/3/0.000000/8.000000/2.000000/14.000000:e/3/0.000000/8.000000/2.000000/14.000000:d/3/0.000000/14.000000/2.000000/16.000000:n/3/0.000000/8.000000/2.000000/14.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000/0.000000/-45.000000/0.000000/8.000000/14.000000/8.000000:s/3/0.000000/5.000000/1.000000/6.000000:n/3/0.000000/5.000000/1.000000/6.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000/0.000000/45.000000/0.000000/8.000000/14.000000/8.000000:s/3/0.000000/5.000000/1.000000/6.000000:n/3/0.000000/5.000000/1.000000/6.000000
|
|
||||||
modellist:id=%green_candle_coffee_cake,state=lit:true,box=1.000000/0.000000/1.000000:15.000000/8.000000/15.000000:u/0:s/1:w/1:e/1:d/2:n/1,box=7.000000/8.000000/7.000000:9.000000/14.000000/9.000000:u/3/0.000000/6.000000/2.000000/8.000000:s/3/0.000000/8.000000/2.000000/14.000000:w/3/0.000000/8.000000/2.000000/14.000000:e/3/0.000000/8.000000/2.000000/14.000000:d/3/0.000000/14.000000/2.000000/16.000000:n/3/0.000000/8.000000/2.000000/14.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000/0.000000/-45.000000/0.000000/8.000000/14.000000/8.000000:s/3/0.000000/5.000000/1.000000/6.000000:n/3/0.000000/5.000000/1.000000/6.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000/0.000000/45.000000/0.000000/8.000000/14.000000/8.000000:s/3/0.000000/5.000000/1.000000/6.000000:n/3/0.000000/5.000000/1.000000/6.000000
|
|
||||||
modellist:id=%green_candle_coffee_cake,state=lit:false,box=1.000000/0.000000/1.000000:15.000000/8.000000/15.000000:u/0:s/1:w/1:e/1:d/2:n/1,box=7.000000/8.000000/7.000000:9.000000/14.000000/9.000000:u/3/0.000000/6.000000/2.000000/8.000000:s/3/0.000000/8.000000/2.000000/14.000000:w/3/0.000000/8.000000/2.000000/14.000000:e/3/0.000000/8.000000/2.000000/14.000000:d/3/0.000000/14.000000/2.000000/16.000000:n/3/0.000000/8.000000/2.000000/14.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000/0.000000/-45.000000/0.000000/8.000000/14.000000/8.000000:s/3/0.000000/5.000000/1.000000/6.000000:n/3/0.000000/5.000000/1.000000/6.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000/0.000000/45.000000/0.000000/8.000000/14.000000/8.000000:s/3/0.000000/5.000000/1.000000/6.000000:n/3/0.000000/5.000000/1.000000/6.000000
|
|
||||||
modellist:id=%red_candle_coffee_cake,state=lit:true,box=1.000000/0.000000/1.000000:15.000000/8.000000/15.000000:u/0:s/1:w/1:e/1:d/2:n/1,box=7.000000/8.000000/7.000000:9.000000/14.000000/9.000000:u/3/0.000000/6.000000/2.000000/8.000000:s/3/0.000000/8.000000/2.000000/14.000000:w/3/0.000000/8.000000/2.000000/14.000000:e/3/0.000000/8.000000/2.000000/14.000000:d/3/0.000000/14.000000/2.000000/16.000000:n/3/0.000000/8.000000/2.000000/14.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000/0.000000/-45.000000/0.000000/8.000000/14.000000/8.000000:s/3/0.000000/5.000000/1.000000/6.000000:n/3/0.000000/5.000000/1.000000/6.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000/0.000000/45.000000/0.000000/8.000000/14.000000/8.000000:s/3/0.000000/5.000000/1.000000/6.000000:n/3/0.000000/5.000000/1.000000/6.000000
|
|
||||||
modellist:id=%red_candle_coffee_cake,state=lit:false,box=1.000000/0.000000/1.000000:15.000000/8.000000/15.000000:u/0:s/1:w/1:e/1:d/2:n/1,box=7.000000/8.000000/7.000000:9.000000/14.000000/9.000000:u/3/0.000000/6.000000/2.000000/8.000000:s/3/0.000000/8.000000/2.000000/14.000000:w/3/0.000000/8.000000/2.000000/14.000000:e/3/0.000000/8.000000/2.000000/14.000000:d/3/0.000000/14.000000/2.000000/16.000000:n/3/0.000000/8.000000/2.000000/14.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000/0.000000/-45.000000/0.000000/8.000000/14.000000/8.000000:s/3/0.000000/5.000000/1.000000/6.000000:n/3/0.000000/5.000000/1.000000/6.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000/0.000000/45.000000/0.000000/8.000000/14.000000/8.000000:s/3/0.000000/5.000000/1.000000/6.000000:n/3/0.000000/5.000000/1.000000/6.000000
|
|
||||||
modellist:id=%black_candle_coffee_cake,state=lit:true,box=1.000000/0.000000/1.000000:15.000000/8.000000/15.000000:u/0:s/1:w/1:e/1:d/2:n/1,box=7.000000/8.000000/7.000000:9.000000/14.000000/9.000000:u/3/0.000000/6.000000/2.000000/8.000000:s/3/0.000000/8.000000/2.000000/14.000000:w/3/0.000000/8.000000/2.000000/14.000000:e/3/0.000000/8.000000/2.000000/14.000000:d/3/0.000000/14.000000/2.000000/16.000000:n/3/0.000000/8.000000/2.000000/14.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000/0.000000/-45.000000/0.000000/8.000000/14.000000/8.000000:s/3/0.000000/5.000000/1.000000/6.000000:n/3/0.000000/5.000000/1.000000/6.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000/0.000000/45.000000/0.000000/8.000000/14.000000/8.000000:s/3/0.000000/5.000000/1.000000/6.000000:n/3/0.000000/5.000000/1.000000/6.000000
|
|
||||||
modellist:id=%black_candle_coffee_cake,state=lit:false,box=1.000000/0.000000/1.000000:15.000000/8.000000/15.000000:u/0:s/1:w/1:e/1:d/2:n/1,box=7.000000/8.000000/7.000000:9.000000/14.000000/9.000000:u/3/0.000000/6.000000/2.000000/8.000000:s/3/0.000000/8.000000/2.000000/14.000000:w/3/0.000000/8.000000/2.000000/14.000000:e/3/0.000000/8.000000/2.000000/14.000000:d/3/0.000000/14.000000/2.000000/16.000000:n/3/0.000000/8.000000/2.000000/14.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000/0.000000/-45.000000/0.000000/8.000000/14.000000/8.000000:s/3/0.000000/5.000000/1.000000/6.000000:n/3/0.000000/5.000000/1.000000/6.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000/0.000000/45.000000/0.000000/8.000000/14.000000/8.000000:s/3/0.000000/5.000000/1.000000/6.000000:n/3/0.000000/5.000000/1.000000/6.000000
|
|
||||||
modellist:id=%potted_tea_bush,box=5.000000/0.000000/5.000000:6.000000/6.000000/11.000000:u/0/5.000000/5.000000/6.000000/11.000000:s/0/5.000000/10.000000/6.000000/16.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:d/0/5.000000/5.000000/6.000000/11.000000:n/0/10.000000/10.000000/11.000000/16.000000,box=10.000000/0.000000/5.000000:11.000000/6.000000/11.000000:u/0/10.000000/5.000000/11.000000/11.000000:s/0/10.000000/10.000000/11.000000/16.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:d/0/10.000000/5.000000/11.000000/11.000000:n/0/5.000000/10.000000/6.000000/16.000000,box=6.000000/0.000000/5.000000:10.000000/6.000000/6.000000:u/0/6.000000/5.000000/10.000000/6.000000:s/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/10.000000/10.000000/11.000000:n/0/6.000000/10.000000/10.000000/16.000000,box=6.000000/0.000000/10.000000:10.000000/6.000000/11.000000:u/0/6.000000/10.000000/10.000000/11.000000:s/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/5.000000/10.000000/6.000000:n/0/6.000000/10.000000/10.000000/16.000000,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:u/1/6.000000/6.000000/10.000000/10.000000:d/0/6.000000/12.000000/10.000000/16.000000,box=4.000000/15.900000/4.000000:12.000000/16.000000/12.000000:u/2/4.000000/4.000000/12.000000/12.000000:d/2/4.000000/12.000000/12.000000/4.000000,box=4.000000/8.000000/4.000000:12.000000/16.000000/4.000000:s/3/12.000000/3.000000/4.000000/12.000000:n/3/4.000000/3.000000/12.000000/12.000000,box=4.000000/8.000000/12.000000:12.000000/16.000000/12.000000:s/3/4.000000/3.000000/12.000000/12.000000:n/3/12.000000/3.000000/4.000000/12.000000,box=4.000000/8.000000/4.000000:4.000000/16.000000/12.000000:w/3/4.000000/3.000000/12.000000/12.000000:e/3/12.000000/3.000000/4.000000/12.000000,box=12.000000/8.000000/4.000000:12.000000/16.000000/12.000000:w/3/12.000000/3.000000/4.000000/12.000000:e/3/4.000000/3.000000/12.000000/12.000000,box=2.600000/4.000000/8.000000:13.400000/16.000000/8.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:s/4/3.000000/5.000000/13.000000/16.000000:n/4/3.000000/5.000000/13.000000/16.000000,box=8.000000/4.000000/2.600000:8.000000/16.000000/13.400000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:w/4/3.000000/5.000000/13.000000/16.000000:e/4/3.000000/5.000000/13.000000/16.000000
|
|
||||||
modellist:id=%potted_wild_tea_bush,box=5.000000/0.000000/5.000000:6.000000/6.000000/11.000000:u/0/5.000000/5.000000/6.000000/11.000000:s/0/5.000000/10.000000/6.000000/16.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:d/0/5.000000/5.000000/6.000000/11.000000:n/0/10.000000/10.000000/11.000000/16.000000,box=10.000000/0.000000/5.000000:11.000000/6.000000/11.000000:u/0/10.000000/5.000000/11.000000/11.000000:s/0/10.000000/10.000000/11.000000/16.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:d/0/10.000000/5.000000/11.000000/11.000000:n/0/5.000000/10.000000/6.000000/16.000000,box=6.000000/0.000000/5.000000:10.000000/6.000000/6.000000:u/0/6.000000/5.000000/10.000000/6.000000:s/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/10.000000/10.000000/11.000000:n/0/6.000000/10.000000/10.000000/16.000000,box=6.000000/0.000000/10.000000:10.000000/6.000000/11.000000:u/0/6.000000/10.000000/10.000000/11.000000:s/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/5.000000/10.000000/6.000000:n/0/6.000000/10.000000/10.000000/16.000000,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:u/1/6.000000/6.000000/10.000000/10.000000:d/0/6.000000/12.000000/10.000000/16.000000,box=4.000000/15.900000/4.000000:12.000000/16.000000/12.000000:u/2/4.000000/4.000000/12.000000/12.000000:d/2/4.000000/12.000000/12.000000/4.000000,box=4.000000/8.000000/4.000000:12.000000/16.000000/4.000000:s/3/12.000000/3.000000/4.000000/12.000000:n/3/4.000000/3.000000/12.000000/12.000000,box=4.000000/8.000000/12.000000:12.000000/16.000000/12.000000:s/3/4.000000/3.000000/12.000000/12.000000:n/3/12.000000/3.000000/4.000000/12.000000,box=4.000000/8.000000/4.000000:4.000000/16.000000/12.000000:w/3/4.000000/3.000000/12.000000/12.000000:e/3/12.000000/3.000000/4.000000/12.000000,box=12.000000/8.000000/4.000000:12.000000/16.000000/12.000000:w/3/12.000000/3.000000/4.000000/12.000000:e/3/4.000000/3.000000/12.000000/12.000000,box=2.600000/4.000000/8.000000:13.400000/16.000000/8.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:s/4/3.000000/5.000000/13.000000/16.000000:n/4/3.000000/5.000000/13.000000/16.000000,box=8.000000/4.000000/2.600000:8.000000/16.000000/13.400000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:w/4/3.000000/5.000000/13.000000/16.000000:e/4/3.000000/5.000000/13.000000/16.000000
|
|
||||||
modellist:id=%potted_coffee_bush,box=5.000000/0.000000/5.000000:6.000000/6.000000/11.000000:u/0/5.000000/5.000000/6.000000/11.000000:s/0/5.000000/10.000000/6.000000/16.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:d/0/5.000000/5.000000/6.000000/11.000000:n/0/10.000000/10.000000/11.000000/16.000000,box=10.000000/0.000000/5.000000:11.000000/6.000000/11.000000:u/0/10.000000/5.000000/11.000000/11.000000:s/0/10.000000/10.000000/11.000000/16.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:d/0/10.000000/5.000000/11.000000/11.000000:n/0/5.000000/10.000000/6.000000/16.000000,box=6.000000/0.000000/5.000000:10.000000/6.000000/6.000000:u/0/6.000000/5.000000/10.000000/6.000000:s/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/10.000000/10.000000/11.000000:n/0/6.000000/10.000000/10.000000/16.000000,box=6.000000/0.000000/10.000000:10.000000/6.000000/11.000000:u/0/6.000000/10.000000/10.000000/11.000000:s/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/5.000000/10.000000/6.000000:n/0/6.000000/10.000000/10.000000/16.000000,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:u/1/6.000000/6.000000/10.000000/10.000000:d/0/6.000000/12.000000/10.000000/16.000000,box=3.000000/16.900000/3.000000:13.000000/17.000000/13.000000:u/2/4.000000/4.000000/12.000000/12.000000:d/2/4.000000/12.000000/12.000000/4.000000,box=3.000000/7.000000/3.000000:13.000000/17.000000/3.000000:s/3/13.000000/1.000000/3.000000/11.000000:n/3/3.000000/1.000000/13.000000/11.000000,box=3.000000/7.000000/13.000000:13.000000/17.000000/13.000000:s/3/3.000000/1.000000/13.000000/11.000000:n/3/13.000000/2.000000/3.000000/12.000000,box=3.000000/7.000000/3.000000:3.000000/17.000000/13.000000:w/3/3.000000/1.000000/13.000000/11.000000:e/3/13.000000/1.000000/3.000000/11.000000,box=13.000000/7.000000/3.000000:13.000000/17.000000/13.000000:w/3/13.000000/1.000000/3.000000/11.000000:e/3/3.000000/1.000000/13.000000/11.000000,box=6.000000/4.000000/6.000000:10.000000/16.990000/10.000000:u/4/4.000000/0.000000/8.000000/4.000000:s/4/0.000000/0.000000/4.000000/12.990000:w/4/0.000000/0.000000/4.000000/12.990000:e/4/0.000000/0.000000/4.000000/12.990000:d/4/4.000000/0.000000/8.000000/4.000000:n/4/0.000000/0.000000/4.000000/12.990000,box=8.000000/17.000000/1.000000:8.000000/21.000000/15.000000/0.000000/-45.000000/0.000000/8.000000/8.000000/8.000000:w/5/1.000000/10.000000/15.000000/16.000000:e/5/1.000000/10.000000/15.000000/16.000000,box=8.000000/17.000000/1.000000:8.000000/22.000000/15.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:w/5/1.000000/10.000000/15.000000/16.000000:e/5/1.000000/10.000000/15.000000/16.000000
|
|
@ -1,241 +0,0 @@
|
|||||||
modname:farmersrespite
|
|
||||||
|
|
||||||
texture:id=kettle,filename=assets/farmersrespite/textures/block/kettle.png,xcount=1,ycount=1
|
|
||||||
texture:id=cooking_pot_tray_top,filename=assets/farmersdelight/textures/block/cooking_pot_tray_top.png,xcount=1,ycount=1
|
|
||||||
texture:id=cooking_pot_tray_side,filename=assets/farmersdelight/textures/block/cooking_pot_tray_side.png,xcount=1,ycount=1
|
|
||||||
texture:id=kettle_handle,filename=assets/farmersrespite/textures/block/kettle_handle.png,xcount=1,ycount=1
|
|
||||||
texture:id=tea_bush_top_green,filename=assets/farmersrespite/textures/block/tea_bush_top_green.png,xcount=1,ycount=1
|
|
||||||
texture:id=tea_bush_side_green,filename=assets/farmersrespite/textures/block/tea_bush_side_green.png,xcount=1,ycount=1
|
|
||||||
texture:id=tea_bush_plant_upper_green,filename=assets/farmersrespite/textures/block/tea_bush_plant_upper_green.png,xcount=1,ycount=1
|
|
||||||
texture:id=tea_bush_plant_lower_green,filename=assets/farmersrespite/textures/block/tea_bush_plant_lower_green.png,xcount=1,ycount=1
|
|
||||||
texture:id=tea_bush_top_yellow,filename=assets/farmersrespite/textures/block/tea_bush_top_yellow.png,xcount=1,ycount=1
|
|
||||||
texture:id=tea_bush_side_yellow,filename=assets/farmersrespite/textures/block/tea_bush_side_yellow.png,xcount=1,ycount=1
|
|
||||||
texture:id=tea_bush_plant_upper_yellow,filename=assets/farmersrespite/textures/block/tea_bush_plant_upper_yellow.png,xcount=1,ycount=1
|
|
||||||
texture:id=tea_bush_plant_lower_yellow,filename=assets/farmersrespite/textures/block/tea_bush_plant_lower_yellow.png,xcount=1,ycount=1
|
|
||||||
texture:id=tea_bush_top_brown,filename=assets/farmersrespite/textures/block/tea_bush_top_brown.png,xcount=1,ycount=1
|
|
||||||
texture:id=tea_bush_side_brown,filename=assets/farmersrespite/textures/block/tea_bush_side_brown.png,xcount=1,ycount=1
|
|
||||||
texture:id=tea_bush_plant_upper_brown,filename=assets/farmersrespite/textures/block/tea_bush_plant_upper_brown.png,xcount=1,ycount=1
|
|
||||||
texture:id=tea_bush_plant_lower_brown,filename=assets/farmersrespite/textures/block/tea_bush_plant_lower_brown.png,xcount=1,ycount=1
|
|
||||||
texture:id=tea_bush_top_black,filename=assets/farmersrespite/textures/block/tea_bush_top_black.png,xcount=1,ycount=1
|
|
||||||
texture:id=tea_bush_side_black,filename=assets/farmersrespite/textures/block/tea_bush_side_black.png,xcount=1,ycount=1
|
|
||||||
texture:id=tea_bush_plant_upper_black,filename=assets/farmersrespite/textures/block/tea_bush_plant_upper_black.png,xcount=1,ycount=1
|
|
||||||
texture:id=tea_bush_plant_lower_black,filename=assets/farmersrespite/textures/block/tea_bush_plant_lower_black.png,xcount=1,ycount=1
|
|
||||||
texture:id=small_tea_bush_plant,filename=assets/farmersrespite/textures/block/small_tea_bush_plant.png,xcount=1,ycount=1
|
|
||||||
texture:id=small_tea_bush_top,filename=assets/farmersrespite/textures/block/small_tea_bush_top.png,xcount=1,ycount=1
|
|
||||||
texture:id=small_tea_bush_side,filename=assets/farmersrespite/textures/block/small_tea_bush_side.png,xcount=1,ycount=1
|
|
||||||
texture:id=wild_tea_bush_plant,filename=assets/farmersrespite/textures/block/wild_tea_bush_plant.png,xcount=1,ycount=1
|
|
||||||
texture:id=wild_tea_bush_top,filename=assets/farmersrespite/textures/block/wild_tea_bush_top.png,xcount=1,ycount=1
|
|
||||||
texture:id=wild_tea_bush_side,filename=assets/farmersrespite/textures/block/wild_tea_bush_side.png,xcount=1,ycount=1
|
|
||||||
texture:id=coffee_bush_top,filename=assets/farmersrespite/textures/block/coffee_bush_top.png,xcount=1,ycount=1
|
|
||||||
texture:id=coffee_bush_side,filename=assets/farmersrespite/textures/block/coffee_bush_side.png,xcount=1,ycount=1
|
|
||||||
texture:id=coffee_bush_leaves,filename=assets/farmersrespite/textures/block/coffee_bush_leaves.png,xcount=1,ycount=1
|
|
||||||
texture:id=coffee_stem_base,filename=assets/farmersrespite/textures/block/coffee_stem_base.png,xcount=1,ycount=1
|
|
||||||
texture:id=coffee_berries_age0,filename=assets/farmersrespite/textures/block/coffee_berries_age0.png,xcount=1,ycount=1
|
|
||||||
texture:id=coffee_berries_age1,filename=assets/farmersrespite/textures/block/coffee_berries_age1.png,xcount=1,ycount=1
|
|
||||||
texture:id=coffee_berries_age2,filename=assets/farmersrespite/textures/block/coffee_berries_age2.png,xcount=1,ycount=1
|
|
||||||
texture:id=wither_roots,filename=assets/farmersrespite/textures/block/wither_roots.png,xcount=1,ycount=1
|
|
||||||
texture:id=wither_roots_plant,filename=assets/farmersrespite/textures/block/wither_roots_plant.png,xcount=1,ycount=1
|
|
||||||
texture:id=coffee_cake_top,filename=assets/farmersrespite/textures/block/coffee_cake_top.png,xcount=1,ycount=1
|
|
||||||
texture:id=coffee_cake_side,filename=assets/farmersrespite/textures/block/coffee_cake_side.png,xcount=1,ycount=1
|
|
||||||
texture:id=coffee_cake_bottom,filename=assets/farmersrespite/textures/block/coffee_cake_bottom.png,xcount=1,ycount=1
|
|
||||||
texture:id=coffee_cake_inner,filename=assets/farmersrespite/textures/block/coffee_cake_inner.png,xcount=1,ycount=1
|
|
||||||
texture:id=rose_hips_pie_top,filename=assets/farmersrespite/textures/block/rose_hips_pie_top.png,xcount=1,ycount=1
|
|
||||||
texture:id=pie_side,filename=assets/farmersdelight/textures/block/pie_side.png,xcount=1,ycount=1
|
|
||||||
texture:id=pie_bottom,filename=assets/farmersdelight/textures/block/pie_bottom.png,xcount=1,ycount=1
|
|
||||||
texture:id=rose_hips_pie_inner,filename=assets/farmersrespite/textures/block/rose_hips_pie_inner.png,xcount=1,ycount=1
|
|
||||||
texture:id=candle_lit,filename=assets/minecraft/textures/block/candle_lit.png,xcount=1,ycount=1
|
|
||||||
texture:id=candle,filename=assets/minecraft/textures/block/candle.png,xcount=1,ycount=1
|
|
||||||
texture:id=white_candle_lit,filename=assets/minecraft/textures/block/white_candle_lit.png,xcount=1,ycount=1
|
|
||||||
texture:id=white_candle,filename=assets/minecraft/textures/block/white_candle.png,xcount=1,ycount=1
|
|
||||||
texture:id=orange_candle_lit,filename=assets/minecraft/textures/block/orange_candle_lit.png,xcount=1,ycount=1
|
|
||||||
texture:id=orange_candle,filename=assets/minecraft/textures/block/orange_candle.png,xcount=1,ycount=1
|
|
||||||
texture:id=magenta_candle_lit,filename=assets/minecraft/textures/block/magenta_candle_lit.png,xcount=1,ycount=1
|
|
||||||
texture:id=magenta_candle,filename=assets/minecraft/textures/block/magenta_candle.png,xcount=1,ycount=1
|
|
||||||
texture:id=light_blue_candle_lit,filename=assets/minecraft/textures/block/light_blue_candle_lit.png,xcount=1,ycount=1
|
|
||||||
texture:id=light_blue_candle,filename=assets/minecraft/textures/block/light_blue_candle.png,xcount=1,ycount=1
|
|
||||||
texture:id=yellow_candle_lit,filename=assets/minecraft/textures/block/yellow_candle_lit.png,xcount=1,ycount=1
|
|
||||||
texture:id=yellow_candle,filename=assets/minecraft/textures/block/yellow_candle.png,xcount=1,ycount=1
|
|
||||||
texture:id=lime_candle_lit,filename=assets/minecraft/textures/block/lime_candle_lit.png,xcount=1,ycount=1
|
|
||||||
texture:id=lime_candle,filename=assets/minecraft/textures/block/lime_candle.png,xcount=1,ycount=1
|
|
||||||
texture:id=pink_candle_lit,filename=assets/minecraft/textures/block/pink_candle_lit.png,xcount=1,ycount=1
|
|
||||||
texture:id=pink_candle,filename=assets/minecraft/textures/block/pink_candle.png,xcount=1,ycount=1
|
|
||||||
texture:id=gray_candle_lit,filename=assets/minecraft/textures/block/gray_candle_lit.png,xcount=1,ycount=1
|
|
||||||
texture:id=gray_candle,filename=assets/minecraft/textures/block/gray_candle.png,xcount=1,ycount=1
|
|
||||||
texture:id=light_gray_candle_lit,filename=assets/minecraft/textures/block/light_gray_candle_lit.png,xcount=1,ycount=1
|
|
||||||
texture:id=light_gray_candle,filename=assets/minecraft/textures/block/light_gray_candle.png,xcount=1,ycount=1
|
|
||||||
texture:id=cyan_candle_lit,filename=assets/minecraft/textures/block/cyan_candle_lit.png,xcount=1,ycount=1
|
|
||||||
texture:id=cyan_candle,filename=assets/minecraft/textures/block/cyan_candle.png,xcount=1,ycount=1
|
|
||||||
texture:id=purple_candle_lit,filename=assets/minecraft/textures/block/purple_candle_lit.png,xcount=1,ycount=1
|
|
||||||
texture:id=purple_candle,filename=assets/minecraft/textures/block/purple_candle.png,xcount=1,ycount=1
|
|
||||||
texture:id=blue_candle_lit,filename=assets/minecraft/textures/block/blue_candle_lit.png,xcount=1,ycount=1
|
|
||||||
texture:id=blue_candle,filename=assets/minecraft/textures/block/blue_candle.png,xcount=1,ycount=1
|
|
||||||
texture:id=brown_candle_lit,filename=assets/minecraft/textures/block/brown_candle_lit.png,xcount=1,ycount=1
|
|
||||||
texture:id=brown_candle,filename=assets/minecraft/textures/block/brown_candle.png,xcount=1,ycount=1
|
|
||||||
texture:id=green_candle_lit,filename=assets/minecraft/textures/block/green_candle_lit.png,xcount=1,ycount=1
|
|
||||||
texture:id=green_candle,filename=assets/minecraft/textures/block/green_candle.png,xcount=1,ycount=1
|
|
||||||
texture:id=red_candle_lit,filename=assets/minecraft/textures/block/red_candle_lit.png,xcount=1,ycount=1
|
|
||||||
texture:id=red_candle,filename=assets/minecraft/textures/block/red_candle.png,xcount=1,ycount=1
|
|
||||||
texture:id=black_candle_lit,filename=assets/minecraft/textures/block/black_candle_lit.png,xcount=1,ycount=1
|
|
||||||
texture:id=black_candle,filename=assets/minecraft/textures/block/black_candle.png,xcount=1,ycount=1
|
|
||||||
texture:id=flower_pot,filename=assets/minecraft/textures/block/flower_pot.png,xcount=1,ycount=1
|
|
||||||
texture:id=dirt,filename=assets/minecraft/textures/block/dirt.png,xcount=1,ycount=1
|
|
||||||
block:id=%kettle,state=facing:north/support:none/lid:true,patch0=0:kettle,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%kettle,state=facing:north/support:tray/lid:true,patch0=0:kettle,patch1=0:cooking_pot_tray_top,patch2=0:cooking_pot_tray_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%kettle,state=facing:north/support:handle/lid:true,patch0=0:kettle,patch1=0:kettle_handle,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%kettle,state=facing:north/support:none/lid:false,patch0=0:kettle,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%kettle,state=facing:north/support:tray/lid:false,patch0=0:kettle,patch1=0:cooking_pot_tray_top,patch2=0:cooking_pot_tray_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%kettle,state=facing:north/support:handle/lid:false,patch0=0:kettle,patch1=0:kettle_handle,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%kettle,state=facing:south/support:none/lid:true,patch0=0:kettle,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%kettle,state=facing:south/support:tray/lid:true,patch0=0:kettle,patch1=0:cooking_pot_tray_top,patch2=0:cooking_pot_tray_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%kettle,state=facing:south/support:handle/lid:true,patch0=0:kettle,patch1=0:kettle_handle,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%kettle,state=facing:south/support:none/lid:false,patch0=0:kettle,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%kettle,state=facing:south/support:tray/lid:false,patch0=0:kettle,patch1=0:cooking_pot_tray_top,patch2=0:cooking_pot_tray_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%kettle,state=facing:south/support:handle/lid:false,patch0=0:kettle,patch1=0:kettle_handle,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%kettle,state=facing:west/support:none/lid:true,patch0=0:kettle,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%kettle,state=facing:west/support:tray/lid:true,patch0=0:kettle,patch1=0:cooking_pot_tray_top,patch2=0:cooking_pot_tray_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%kettle,state=facing:west/support:handle/lid:true,patch0=0:kettle,patch1=0:kettle_handle,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%kettle,state=facing:west/support:none/lid:false,patch0=0:kettle,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%kettle,state=facing:west/support:tray/lid:false,patch0=0:kettle,patch1=0:cooking_pot_tray_top,patch2=0:cooking_pot_tray_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%kettle,state=facing:west/support:handle/lid:false,patch0=0:kettle,patch1=0:kettle_handle,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%kettle,state=facing:east/support:none/lid:true,patch0=0:kettle,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%kettle,state=facing:east/support:tray/lid:true,patch0=0:kettle,patch1=0:cooking_pot_tray_top,patch2=0:cooking_pot_tray_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%kettle,state=facing:east/support:handle/lid:true,patch0=0:kettle,patch1=0:kettle_handle,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%kettle,state=facing:east/support:none/lid:false,patch0=0:kettle,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%kettle,state=facing:east/support:tray/lid:false,patch0=0:kettle,patch1=0:cooking_pot_tray_top,patch2=0:cooking_pot_tray_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%kettle,state=facing:east/support:handle/lid:false,patch0=0:kettle,patch1=0:kettle_handle,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%tea_bush,state=age:0/half:upper,patch0=0:tea_bush_top_green,patch1=0:tea_bush_side_green,patch2=0:tea_bush_plant_upper_green,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%tea_bush,state=age:0/half:lower,patch0=0:tea_bush_side_green,patch1=0:tea_bush_plant_lower_green,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%tea_bush,state=age:1/half:upper,patch0=0:tea_bush_top_yellow,patch1=0:tea_bush_side_yellow,patch2=0:tea_bush_plant_upper_yellow,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%tea_bush,state=age:1/half:lower,patch0=0:tea_bush_side_yellow,patch1=0:tea_bush_plant_lower_yellow,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%tea_bush,state=age:2/half:upper,patch0=0:tea_bush_top_brown,patch1=0:tea_bush_side_brown,patch2=0:tea_bush_plant_upper_brown,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%tea_bush,state=age:2/half:lower,patch0=0:tea_bush_side_brown,patch1=0:tea_bush_plant_lower_brown,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%tea_bush,state=age:3/half:upper,patch0=0:tea_bush_top_black,patch1=0:tea_bush_side_black,patch2=0:tea_bush_plant_upper_black,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%tea_bush,state=age:3/half:lower,patch0=0:tea_bush_side_black,patch1=0:tea_bush_plant_lower_black,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%small_tea_bush,patch0=0:small_tea_bush_plant,patch1=0:small_tea_bush_top,patch2=0:small_tea_bush_side,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%wild_tea_bush,patch0=0:wild_tea_bush_plant,patch1=0:wild_tea_bush_top,patch2=0:wild_tea_bush_side,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%coffee_bush,state=half:upper,patch0=0:coffee_bush_top,patch1=0:coffee_bush_side,patch2=0:coffee_bush_leaves,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%coffee_bush,state=half:lower,patch0=0:coffee_stem_base,patch1=0:coffee_bush_side,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%coffee_stem,state=facing:north/age:0,patch0=0:coffee_stem_base,patch1=0:coffee_berries_age0,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%coffee_stem,state=facing:south/age:0,patch0=0:coffee_stem_base,patch1=0:coffee_berries_age0,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%coffee_stem,state=facing:west/age:0,patch0=0:coffee_stem_base,patch1=0:coffee_berries_age0,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%coffee_stem,state=facing:east/age:0,patch0=0:coffee_stem_base,patch1=0:coffee_berries_age0,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%coffee_stem,state=facing:north/age:1,patch0=0:coffee_stem_base,patch1=0:coffee_berries_age1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%coffee_stem,state=facing:south/age:1,patch0=0:coffee_stem_base,patch1=0:coffee_berries_age1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%coffee_stem,state=facing:west/age:1,patch0=0:coffee_stem_base,patch1=0:coffee_berries_age1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%coffee_stem,state=facing:east/age:1,patch0=0:coffee_stem_base,patch1=0:coffee_berries_age1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%coffee_stem,state=facing:north/age:2,patch0=0:coffee_stem_base,patch1=0:coffee_berries_age2,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%coffee_stem,state=facing:south/age:2,patch0=0:coffee_stem_base,patch1=0:coffee_berries_age2,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%coffee_stem,state=facing:west/age:2,patch0=0:coffee_stem_base,patch1=0:coffee_berries_age2,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%coffee_stem,state=facing:east/age:2,patch0=0:coffee_stem_base,patch1=0:coffee_berries_age2,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%coffee_bush_top,state=half:upper,patch0=0:coffee_bush_top,patch1=0:coffee_bush_side,patch2=0:coffee_bush_leaves,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%coffee_bush_top,state=half:lower,patch0=0:coffee_stem_base,patch1=0:coffee_bush_side,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%coffee_stem_double,state=facing:north/age:0/age1:0,patch0=0:coffee_stem_base,patch1=0:coffee_berries_age0,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%coffee_stem_double,state=facing:south/age:0/age1:0,patch0=0:coffee_stem_base,patch1=0:coffee_berries_age0,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%coffee_stem_double,state=facing:west/age:0/age1:0,patch0=0:coffee_stem_base,patch1=0:coffee_berries_age0,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%coffee_stem_double,state=facing:east/age:0/age1:0,patch0=0:coffee_stem_base,patch1=0:coffee_berries_age0,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%coffee_stem_double,state=facing:north/age:0/age1:1,patch0=0:coffee_stem_base,patch1=0:coffee_berries_age0,patch2=0:coffee_berries_age1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%coffee_stem_double,state=facing:south/age:0/age1:1,patch0=0:coffee_stem_base,patch1=0:coffee_berries_age0,patch2=0:coffee_berries_age1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%coffee_stem_double,state=facing:west/age:0/age1:1,patch0=0:coffee_stem_base,patch1=0:coffee_berries_age0,patch2=0:coffee_berries_age1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%coffee_stem_double,state=facing:east/age:0/age1:1,patch0=0:coffee_stem_base,patch1=0:coffee_berries_age0,patch2=0:coffee_berries_age1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%coffee_stem_double,state=facing:north/age:0/age1:2,patch0=0:coffee_stem_base,patch1=0:coffee_berries_age0,patch2=0:coffee_berries_age2,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%coffee_stem_double,state=facing:south/age:0/age1:2,patch0=0:coffee_stem_base,patch1=0:coffee_berries_age0,patch2=0:coffee_berries_age2,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%coffee_stem_double,state=facing:west/age:0/age1:2,patch0=0:coffee_stem_base,patch1=0:coffee_berries_age0,patch2=0:coffee_berries_age2,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%coffee_stem_double,state=facing:east/age:0/age1:2,patch0=0:coffee_stem_base,patch1=0:coffee_berries_age0,patch2=0:coffee_berries_age2,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%coffee_stem_double,state=facing:north/age:1/age1:0,patch0=0:coffee_stem_base,patch1=0:coffee_berries_age1,patch2=0:coffee_berries_age0,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%coffee_stem_double,state=facing:south/age:1/age1:0,patch0=0:coffee_stem_base,patch1=0:coffee_berries_age1,patch2=0:coffee_berries_age0,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%coffee_stem_double,state=facing:west/age:1/age1:0,patch0=0:coffee_stem_base,patch1=0:coffee_berries_age1,patch2=0:coffee_berries_age0,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%coffee_stem_double,state=facing:east/age:1/age1:0,patch0=0:coffee_stem_base,patch1=0:coffee_berries_age1,patch2=0:coffee_berries_age0,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%coffee_stem_double,state=facing:north/age:1/age1:1,patch0=0:coffee_stem_base,patch1=0:coffee_berries_age1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%coffee_stem_double,state=facing:south/age:1/age1:1,patch0=0:coffee_stem_base,patch1=0:coffee_berries_age1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%coffee_stem_double,state=facing:west/age:1/age1:1,patch0=0:coffee_stem_base,patch1=0:coffee_berries_age1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%coffee_stem_double,state=facing:east/age:1/age1:1,patch0=0:coffee_stem_base,patch1=0:coffee_berries_age1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%coffee_stem_double,state=facing:north/age:1/age1:2,patch0=0:coffee_stem_base,patch1=0:coffee_berries_age1,patch2=0:coffee_berries_age2,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%coffee_stem_double,state=facing:south/age:1/age1:2,patch0=0:coffee_stem_base,patch1=0:coffee_berries_age1,patch2=0:coffee_berries_age2,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%coffee_stem_double,state=facing:west/age:1/age1:2,patch0=0:coffee_stem_base,patch1=0:coffee_berries_age1,patch2=0:coffee_berries_age2,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%coffee_stem_double,state=facing:east/age:1/age1:2,patch0=0:coffee_stem_base,patch1=0:coffee_berries_age1,patch2=0:coffee_berries_age2,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%coffee_stem_double,state=facing:north/age:2/age1:0,patch0=0:coffee_stem_base,patch1=0:coffee_berries_age2,patch2=0:coffee_berries_age0,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%coffee_stem_double,state=facing:south/age:2/age1:0,patch0=0:coffee_stem_base,patch1=0:coffee_berries_age2,patch2=0:coffee_berries_age0,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%coffee_stem_double,state=facing:west/age:2/age1:0,patch0=0:coffee_stem_base,patch1=0:coffee_berries_age2,patch2=0:coffee_berries_age0,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%coffee_stem_double,state=facing:east/age:2/age1:0,patch0=0:coffee_stem_base,patch1=0:coffee_berries_age2,patch2=0:coffee_berries_age0,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%coffee_stem_double,state=facing:north/age:2/age1:1,patch0=0:coffee_stem_base,patch1=0:coffee_berries_age2,patch2=0:coffee_berries_age1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%coffee_stem_double,state=facing:south/age:2/age1:1,patch0=0:coffee_stem_base,patch1=0:coffee_berries_age2,patch2=0:coffee_berries_age1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%coffee_stem_double,state=facing:west/age:2/age1:1,patch0=0:coffee_stem_base,patch1=0:coffee_berries_age2,patch2=0:coffee_berries_age1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%coffee_stem_double,state=facing:east/age:2/age1:1,patch0=0:coffee_stem_base,patch1=0:coffee_berries_age2,patch2=0:coffee_berries_age1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%coffee_stem_double,state=facing:north/age:2/age1:2,patch0=0:coffee_stem_base,patch1=0:coffee_berries_age2,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%coffee_stem_double,state=facing:south/age:2/age1:2,patch0=0:coffee_stem_base,patch1=0:coffee_berries_age2,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%coffee_stem_double,state=facing:west/age:2/age1:2,patch0=0:coffee_stem_base,patch1=0:coffee_berries_age2,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%coffee_stem_double,state=facing:east/age:2/age1:2,patch0=0:coffee_stem_base,patch1=0:coffee_berries_age2,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%coffee_stem_middle,state=facing:north/age:0,patch0=0:coffee_stem_base,patch1=0:coffee_berries_age0,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%coffee_stem_middle,state=facing:south/age:0,patch0=0:coffee_stem_base,patch1=0:coffee_berries_age0,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%coffee_stem_middle,state=facing:west/age:0,patch0=0:coffee_stem_base,patch1=0:coffee_berries_age0,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%coffee_stem_middle,state=facing:east/age:0,patch0=0:coffee_stem_base,patch1=0:coffee_berries_age0,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%coffee_stem_middle,state=facing:north/age:1,patch0=0:coffee_stem_base,patch1=0:coffee_berries_age1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%coffee_stem_middle,state=facing:south/age:1,patch0=0:coffee_stem_base,patch1=0:coffee_berries_age1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%coffee_stem_middle,state=facing:west/age:1,patch0=0:coffee_stem_base,patch1=0:coffee_berries_age1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%coffee_stem_middle,state=facing:east/age:1,patch0=0:coffee_stem_base,patch1=0:coffee_berries_age1,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%coffee_stem_middle,state=facing:north/age:2,patch0=0:coffee_stem_base,patch1=0:coffee_berries_age2,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%coffee_stem_middle,state=facing:south/age:2,patch0=0:coffee_stem_base,patch1=0:coffee_berries_age2,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%coffee_stem_middle,state=facing:west/age:2,patch0=0:coffee_stem_base,patch1=0:coffee_berries_age2,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%coffee_stem_middle,state=facing:east/age:2,patch0=0:coffee_stem_base,patch1=0:coffee_berries_age2,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%wither_roots,patch0=0:wither_roots,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%wither_roots_plant,patch0=0:wither_roots_plant,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%coffee_cake,state=bites:0,patch0=0:coffee_cake_top,patch1=0:coffee_cake_side,patch2=0:coffee_cake_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%coffee_cake,state=bites:1,patch0=0:coffee_cake_top,patch1=0:coffee_cake_side,patch2=0:coffee_cake_bottom,patch3=0:coffee_cake_inner,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%coffee_cake,state=bites:2,patch0=0:coffee_cake_top,patch1=0:coffee_cake_side,patch2=0:coffee_cake_bottom,patch3=0:coffee_cake_inner,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%coffee_cake,state=bites:3,patch0=0:coffee_cake_top,patch1=0:coffee_cake_side,patch2=0:coffee_cake_bottom,patch3=0:coffee_cake_inner,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%coffee_cake,state=bites:4,patch0=0:coffee_cake_top,patch1=0:coffee_cake_side,patch2=0:coffee_cake_bottom,patch3=0:coffee_cake_inner,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%coffee_cake,state=bites:5,patch0=0:coffee_cake_top,patch1=0:coffee_cake_side,patch2=0:coffee_cake_bottom,patch3=0:coffee_cake_inner,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%coffee_cake,state=bites:6,patch0=0:coffee_cake_top,patch1=0:coffee_cake_side,patch2=0:coffee_cake_bottom,patch3=0:coffee_cake_inner,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%rose_hip_pie,state=bites:0/facing:north,patch0=0:rose_hips_pie_top,patch1=0:pie_side,patch2=0:pie_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%rose_hip_pie,state=bites:0/facing:south,patch0=0:rose_hips_pie_top,patch1=0:pie_side,patch2=0:pie_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%rose_hip_pie,state=bites:0/facing:west,patch0=0:rose_hips_pie_top,patch1=0:pie_side,patch2=0:pie_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%rose_hip_pie,state=bites:0/facing:east,patch0=0:rose_hips_pie_top,patch1=0:pie_side,patch2=0:pie_bottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%rose_hip_pie,state=bites:1/facing:north,patch0=0:rose_hips_pie_top,patch1=0:rose_hips_pie_inner,patch2=0:pie_bottom,patch3=0:pie_side,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%rose_hip_pie,state=bites:1/facing:south,patch0=0:rose_hips_pie_top,patch1=0:rose_hips_pie_inner,patch2=0:pie_bottom,patch3=0:pie_side,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%rose_hip_pie,state=bites:1/facing:west,patch0=0:rose_hips_pie_top,patch1=0:rose_hips_pie_inner,patch2=0:pie_bottom,patch3=0:pie_side,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%rose_hip_pie,state=bites:1/facing:east,patch0=0:rose_hips_pie_top,patch1=0:rose_hips_pie_inner,patch2=0:pie_bottom,patch3=0:pie_side,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%rose_hip_pie,state=bites:2/facing:north,patch0=0:rose_hips_pie_top,patch1=0:pie_side,patch2=0:pie_bottom,patch3=0:rose_hips_pie_inner,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%rose_hip_pie,state=bites:2/facing:south,patch0=0:rose_hips_pie_top,patch1=0:pie_side,patch2=0:pie_bottom,patch3=0:rose_hips_pie_inner,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%rose_hip_pie,state=bites:2/facing:west,patch0=0:rose_hips_pie_top,patch1=0:pie_side,patch2=0:pie_bottom,patch3=0:rose_hips_pie_inner,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%rose_hip_pie,state=bites:2/facing:east,patch0=0:rose_hips_pie_top,patch1=0:pie_side,patch2=0:pie_bottom,patch3=0:rose_hips_pie_inner,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%rose_hip_pie,state=bites:3/facing:north,patch0=0:rose_hips_pie_top,patch1=0:pie_side,patch2=0:pie_bottom,patch3=0:rose_hips_pie_inner,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%rose_hip_pie,state=bites:3/facing:south,patch0=0:rose_hips_pie_top,patch1=0:pie_side,patch2=0:pie_bottom,patch3=0:rose_hips_pie_inner,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%rose_hip_pie,state=bites:3/facing:west,patch0=0:rose_hips_pie_top,patch1=0:pie_side,patch2=0:pie_bottom,patch3=0:rose_hips_pie_inner,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%rose_hip_pie,state=bites:3/facing:east,patch0=0:rose_hips_pie_top,patch1=0:pie_side,patch2=0:pie_bottom,patch3=0:rose_hips_pie_inner,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%candle_coffee_cake,state=lit:true,patch0=0:coffee_cake_top,patch1=0:coffee_cake_side,patch2=0:coffee_cake_bottom,patch3=0:candle_lit,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%candle_coffee_cake,state=lit:false,patch0=0:coffee_cake_top,patch1=0:coffee_cake_side,patch2=0:coffee_cake_bottom,patch3=0:candle,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%white_candle_coffee_cake,state=lit:true,patch0=0:coffee_cake_top,patch1=0:coffee_cake_side,patch2=0:coffee_cake_bottom,patch3=0:white_candle_lit,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%white_candle_coffee_cake,state=lit:false,patch0=0:coffee_cake_top,patch1=0:coffee_cake_side,patch2=0:coffee_cake_bottom,patch3=0:white_candle,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%orange_candle_coffee_cake,state=lit:true,patch0=0:coffee_cake_top,patch1=0:coffee_cake_side,patch2=0:coffee_cake_bottom,patch3=0:orange_candle_lit,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%orange_candle_coffee_cake,state=lit:false,patch0=0:coffee_cake_top,patch1=0:coffee_cake_side,patch2=0:coffee_cake_bottom,patch3=0:orange_candle,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%magenta_candle_coffee_cake,state=lit:true,patch0=0:coffee_cake_top,patch1=0:coffee_cake_side,patch2=0:coffee_cake_bottom,patch3=0:magenta_candle_lit,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%magenta_candle_coffee_cake,state=lit:false,patch0=0:coffee_cake_top,patch1=0:coffee_cake_side,patch2=0:coffee_cake_bottom,patch3=0:magenta_candle,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%light_blue_candle_coffee_cake,state=lit:true,patch0=0:coffee_cake_top,patch1=0:coffee_cake_side,patch2=0:coffee_cake_bottom,patch3=0:light_blue_candle_lit,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%light_blue_candle_coffee_cake,state=lit:false,patch0=0:coffee_cake_top,patch1=0:coffee_cake_side,patch2=0:coffee_cake_bottom,patch3=0:light_blue_candle,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%yellow_candle_coffee_cake,state=lit:true,patch0=0:coffee_cake_top,patch1=0:coffee_cake_side,patch2=0:coffee_cake_bottom,patch3=0:yellow_candle_lit,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%yellow_candle_coffee_cake,state=lit:false,patch0=0:coffee_cake_top,patch1=0:coffee_cake_side,patch2=0:coffee_cake_bottom,patch3=0:yellow_candle,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%lime_candle_coffee_cake,state=lit:true,patch0=0:coffee_cake_top,patch1=0:coffee_cake_side,patch2=0:coffee_cake_bottom,patch3=0:lime_candle_lit,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%lime_candle_coffee_cake,state=lit:false,patch0=0:coffee_cake_top,patch1=0:coffee_cake_side,patch2=0:coffee_cake_bottom,patch3=0:lime_candle,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%pink_candle_coffee_cake,state=lit:true,patch0=0:coffee_cake_top,patch1=0:coffee_cake_side,patch2=0:coffee_cake_bottom,patch3=0:pink_candle_lit,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%pink_candle_coffee_cake,state=lit:false,patch0=0:coffee_cake_top,patch1=0:coffee_cake_side,patch2=0:coffee_cake_bottom,patch3=0:pink_candle,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%gray_candle_coffee_cake,state=lit:true,patch0=0:coffee_cake_top,patch1=0:coffee_cake_side,patch2=0:coffee_cake_bottom,patch3=0:gray_candle_lit,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%gray_candle_coffee_cake,state=lit:false,patch0=0:coffee_cake_top,patch1=0:coffee_cake_side,patch2=0:coffee_cake_bottom,patch3=0:gray_candle,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%light_gray_candle_coffee_cake,state=lit:true,patch0=0:coffee_cake_top,patch1=0:coffee_cake_side,patch2=0:coffee_cake_bottom,patch3=0:light_gray_candle_lit,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%light_gray_candle_coffee_cake,state=lit:false,patch0=0:coffee_cake_top,patch1=0:coffee_cake_side,patch2=0:coffee_cake_bottom,patch3=0:light_gray_candle,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%cyan_candle_coffee_cake,state=lit:true,patch0=0:coffee_cake_top,patch1=0:coffee_cake_side,patch2=0:coffee_cake_bottom,patch3=0:cyan_candle_lit,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%cyan_candle_coffee_cake,state=lit:false,patch0=0:coffee_cake_top,patch1=0:coffee_cake_side,patch2=0:coffee_cake_bottom,patch3=0:cyan_candle,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%purple_candle_coffee_cake,state=lit:true,patch0=0:coffee_cake_top,patch1=0:coffee_cake_side,patch2=0:coffee_cake_bottom,patch3=0:purple_candle_lit,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%purple_candle_coffee_cake,state=lit:false,patch0=0:coffee_cake_top,patch1=0:coffee_cake_side,patch2=0:coffee_cake_bottom,patch3=0:purple_candle,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%blue_candle_coffee_cake,state=lit:true,patch0=0:coffee_cake_top,patch1=0:coffee_cake_side,patch2=0:coffee_cake_bottom,patch3=0:blue_candle_lit,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%blue_candle_coffee_cake,state=lit:false,patch0=0:coffee_cake_top,patch1=0:coffee_cake_side,patch2=0:coffee_cake_bottom,patch3=0:blue_candle,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%brown_candle_coffee_cake,state=lit:true,patch0=0:coffee_cake_top,patch1=0:coffee_cake_side,patch2=0:coffee_cake_bottom,patch3=0:brown_candle_lit,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%brown_candle_coffee_cake,state=lit:false,patch0=0:coffee_cake_top,patch1=0:coffee_cake_side,patch2=0:coffee_cake_bottom,patch3=0:brown_candle,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%green_candle_coffee_cake,state=lit:true,patch0=0:coffee_cake_top,patch1=0:coffee_cake_side,patch2=0:coffee_cake_bottom,patch3=0:green_candle_lit,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%green_candle_coffee_cake,state=lit:false,patch0=0:coffee_cake_top,patch1=0:coffee_cake_side,patch2=0:coffee_cake_bottom,patch3=0:green_candle,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%red_candle_coffee_cake,state=lit:true,patch0=0:coffee_cake_top,patch1=0:coffee_cake_side,patch2=0:coffee_cake_bottom,patch3=0:red_candle_lit,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%red_candle_coffee_cake,state=lit:false,patch0=0:coffee_cake_top,patch1=0:coffee_cake_side,patch2=0:coffee_cake_bottom,patch3=0:red_candle,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%black_candle_coffee_cake,state=lit:true,patch0=0:coffee_cake_top,patch1=0:coffee_cake_side,patch2=0:coffee_cake_bottom,patch3=0:black_candle_lit,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%black_candle_coffee_cake,state=lit:false,patch0=0:coffee_cake_top,patch1=0:coffee_cake_side,patch2=0:coffee_cake_bottom,patch3=0:black_candle,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%potted_tea_bush,patch0=0:flower_pot,patch1=0:dirt,patch2=0:small_tea_bush_top,patch3=0:small_tea_bush_side,patch4=0:small_tea_bush_plant,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%potted_wild_tea_bush,patch0=0:flower_pot,patch1=0:dirt,patch2=0:wild_tea_bush_top,patch3=0:wild_tea_bush_side,patch4=0:wild_tea_bush_plant,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%potted_coffee_bush,patch0=0:flower_pot,patch1=0:dirt,patch2=0:coffee_bush_top,patch3=0:coffee_bush_side,patch4=0:coffee_stem_base,patch5=0:coffee_bush_leaves,transparency=TRANSPARENT,stdrot=true
|
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
@ -1,112 +0,0 @@
|
|||||||
modname:mahoutsukai
|
|
||||||
|
|
||||||
modellist:id=%spell_cloth,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/1.000000/16.000000:w/0/0.000000/0.000000/1.000000/16.000000:e/0/0.000000/0.000000/1.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/1.000000/16.000000
|
|
||||||
modellist:id=%black_fire,state=west:true/east:true/up:true/south:true/north:true,box=0.000000/0.000000/0.010000/false:16.000000/22.400000/0.010000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.010000/false:16.000000/22.400000/0.010000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.010000/false:16.000000/22.400000/0.010000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.010000/false:16.000000/22.400000/0.010000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/16.000000/0.000000/false:16.000000/16.000000/16.000000/0.000000/0.000000/22.500000/16.000000/16.000000/8.000000:d270/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/16.000000/0.000000/false:16.000000/16.000000/16.000000/0.000000/0.000000/-22.500000/0.000000/16.000000/8.000000:d90/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%black_fire,state=west:false/east:true/up:true/south:true/north:true,box=0.000000/0.000000/0.010000/false:16.000000/22.400000/0.010000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.010000/false:16.000000/22.400000/0.010000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.010000/false:16.000000/22.400000/0.010000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/16.000000/0.000000/false:16.000000/16.000000/16.000000/0.000000/0.000000/22.500000/16.000000/16.000000/8.000000:d270/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/16.000000/0.000000/false:16.000000/16.000000/16.000000/0.000000/0.000000/-22.500000/0.000000/16.000000/8.000000:d90/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%black_fire,state=west:true/east:true/up:false/south:true/north:true,box=0.000000/0.000000/0.010000/false:16.000000/22.400000/0.010000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.010000/false:16.000000/22.400000/0.010000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.010000/false:16.000000/22.400000/0.010000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.010000/false:16.000000/22.400000/0.010000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%black_fire,state=west:false/east:true/up:false/south:true/north:true,box=0.000000/0.000000/0.010000/false:16.000000/22.400000/0.010000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.010000/false:16.000000/22.400000/0.010000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.010000/false:16.000000/22.400000/0.010000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%black_fire,state=west:true/east:true/up:true/south:false/north:true,box=0.000000/0.000000/0.010000/false:16.000000/22.400000/0.010000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.010000/false:16.000000/22.400000/0.010000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.010000/false:16.000000/22.400000/0.010000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/16.000000/0.000000/false:16.000000/16.000000/16.000000/0.000000/0.000000/22.500000/16.000000/16.000000/8.000000:d270/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/16.000000/0.000000/false:16.000000/16.000000/16.000000/0.000000/0.000000/-22.500000/0.000000/16.000000/8.000000:d90/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%black_fire,state=west:false/east:true/up:true/south:false/north:true,box=0.000000/0.000000/0.010000/false:16.000000/22.400000/0.010000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.010000/false:16.000000/22.400000/0.010000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/16.000000/0.000000/false:16.000000/16.000000/16.000000/0.000000/0.000000/22.500000/16.000000/16.000000/8.000000:d270/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/16.000000/0.000000/false:16.000000/16.000000/16.000000/0.000000/0.000000/-22.500000/0.000000/16.000000/8.000000:d90/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%black_fire,state=west:true/east:true/up:false/south:false/north:true,box=0.000000/0.000000/0.010000/false:16.000000/22.400000/0.010000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.010000/false:16.000000/22.400000/0.010000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.010000/false:16.000000/22.400000/0.010000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%black_fire,state=west:false/east:true/up:false/south:false/north:true,box=0.000000/0.000000/0.010000/false:16.000000/22.400000/0.010000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.010000/false:16.000000/22.400000/0.010000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%black_fire,state=west:true/east:true/up:true/south:true/north:false,box=0.000000/0.000000/0.010000/false:16.000000/22.400000/0.010000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.010000/false:16.000000/22.400000/0.010000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.010000/false:16.000000/22.400000/0.010000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/16.000000/0.000000/false:16.000000/16.000000/16.000000/0.000000/0.000000/22.500000/16.000000/16.000000/8.000000:d270/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/16.000000/0.000000/false:16.000000/16.000000/16.000000/0.000000/0.000000/-22.500000/0.000000/16.000000/8.000000:d90/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%black_fire,state=west:false/east:true/up:true/south:true/north:false,box=0.000000/0.000000/0.010000/false:16.000000/22.400000/0.010000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.010000/false:16.000000/22.400000/0.010000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/16.000000/0.000000/false:16.000000/16.000000/16.000000/0.000000/0.000000/22.500000/16.000000/16.000000/8.000000:d270/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/16.000000/0.000000/false:16.000000/16.000000/16.000000/0.000000/0.000000/-22.500000/0.000000/16.000000/8.000000:d90/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%black_fire,state=west:true/east:true/up:false/south:true/north:false,box=0.000000/0.000000/0.010000/false:16.000000/22.400000/0.010000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.010000/false:16.000000/22.400000/0.010000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.010000/false:16.000000/22.400000/0.010000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%black_fire,state=west:false/east:true/up:false/south:true/north:false,box=0.000000/0.000000/0.010000/false:16.000000/22.400000/0.010000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.010000/false:16.000000/22.400000/0.010000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%black_fire,state=west:true/east:true/up:true/south:false/north:false,box=0.000000/0.000000/0.010000/false:16.000000/22.400000/0.010000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.010000/false:16.000000/22.400000/0.010000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/16.000000/0.000000/false:16.000000/16.000000/16.000000/0.000000/0.000000/22.500000/16.000000/16.000000/8.000000:d270/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/16.000000/0.000000/false:16.000000/16.000000/16.000000/0.000000/0.000000/-22.500000/0.000000/16.000000/8.000000:d90/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%black_fire,state=west:false/east:true/up:true/south:false/north:false,box=0.000000/0.000000/0.010000/false:16.000000/22.400000/0.010000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/16.000000/0.000000/false:16.000000/16.000000/16.000000/0.000000/0.000000/22.500000/16.000000/16.000000/8.000000:d270/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/16.000000/0.000000/false:16.000000/16.000000/16.000000/0.000000/0.000000/-22.500000/0.000000/16.000000/8.000000:d90/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%black_fire,state=west:true/east:true/up:false/south:false/north:false,box=0.000000/0.000000/0.010000/false:16.000000/22.400000/0.010000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.010000/false:16.000000/22.400000/0.010000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%black_fire,state=west:false/east:true/up:false/south:false/north:false,box=0.000000/0.000000/0.010000/false:16.000000/22.400000/0.010000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%black_fire,state=west:true/east:false/up:true/south:true/north:true,box=0.000000/0.000000/0.010000/false:16.000000/22.400000/0.010000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.010000/false:16.000000/22.400000/0.010000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.010000/false:16.000000/22.400000/0.010000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/16.000000/0.000000/false:16.000000/16.000000/16.000000/0.000000/0.000000/22.500000/16.000000/16.000000/8.000000:d270/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/16.000000/0.000000/false:16.000000/16.000000/16.000000/0.000000/0.000000/-22.500000/0.000000/16.000000/8.000000:d90/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%black_fire,state=west:false/east:false/up:true/south:true/north:true,box=0.000000/0.000000/0.010000/false:16.000000/22.400000/0.010000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.010000/false:16.000000/22.400000/0.010000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/16.000000/0.000000/false:16.000000/16.000000/16.000000/0.000000/0.000000/22.500000/16.000000/16.000000/8.000000:d270/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/16.000000/0.000000/false:16.000000/16.000000/16.000000/0.000000/0.000000/-22.500000/0.000000/16.000000/8.000000:d90/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%black_fire,state=west:true/east:false/up:false/south:true/north:true,box=0.000000/0.000000/0.010000/false:16.000000/22.400000/0.010000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.010000/false:16.000000/22.400000/0.010000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.010000/false:16.000000/22.400000/0.010000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%black_fire,state=west:false/east:false/up:false/south:true/north:true,box=0.000000/0.000000/0.010000/false:16.000000/22.400000/0.010000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.010000/false:16.000000/22.400000/0.010000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%black_fire,state=west:true/east:false/up:true/south:false/north:true,box=0.000000/0.000000/0.010000/false:16.000000/22.400000/0.010000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.010000/false:16.000000/22.400000/0.010000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/16.000000/0.000000/false:16.000000/16.000000/16.000000/0.000000/0.000000/22.500000/16.000000/16.000000/8.000000:d270/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/16.000000/0.000000/false:16.000000/16.000000/16.000000/0.000000/0.000000/-22.500000/0.000000/16.000000/8.000000:d90/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%black_fire,state=west:false/east:false/up:true/south:false/north:true,box=0.000000/0.000000/0.010000/false:16.000000/22.400000/0.010000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/16.000000/0.000000/false:16.000000/16.000000/16.000000/0.000000/0.000000/22.500000/16.000000/16.000000/8.000000:d270/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/16.000000/0.000000/false:16.000000/16.000000/16.000000/0.000000/0.000000/-22.500000/0.000000/16.000000/8.000000:d90/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%black_fire,state=west:true/east:false/up:false/south:false/north:true,box=0.000000/0.000000/0.010000/false:16.000000/22.400000/0.010000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.010000/false:16.000000/22.400000/0.010000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%black_fire,state=west:false/east:false/up:false/south:false/north:true,box=0.000000/0.000000/0.010000/false:16.000000/22.400000/0.010000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%black_fire,state=west:true/east:false/up:true/south:true/north:false,box=0.000000/0.000000/0.010000/false:16.000000/22.400000/0.010000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.010000/false:16.000000/22.400000/0.010000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/16.000000/0.000000/false:16.000000/16.000000/16.000000/0.000000/0.000000/22.500000/16.000000/16.000000/8.000000:d270/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/16.000000/0.000000/false:16.000000/16.000000/16.000000/0.000000/0.000000/-22.500000/0.000000/16.000000/8.000000:d90/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%black_fire,state=west:false/east:false/up:true/south:true/north:false,box=0.000000/0.000000/0.010000/false:16.000000/22.400000/0.010000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/16.000000/0.000000/false:16.000000/16.000000/16.000000/0.000000/0.000000/22.500000/16.000000/16.000000/8.000000:d270/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/16.000000/0.000000/false:16.000000/16.000000/16.000000/0.000000/0.000000/-22.500000/0.000000/16.000000/8.000000:d90/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%black_fire,state=west:true/east:false/up:false/south:true/north:false,box=0.000000/0.000000/0.010000/false:16.000000/22.400000/0.010000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.010000/false:16.000000/22.400000/0.010000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%black_fire,state=west:false/east:false/up:false/south:true/north:false,box=0.000000/0.000000/0.010000/false:16.000000/22.400000/0.010000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%black_fire,state=west:true/east:false/up:true/south:false/north:false,box=0.000000/0.000000/0.010000/false:16.000000/22.400000/0.010000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/16.000000/0.000000/false:16.000000/16.000000/16.000000/0.000000/0.000000/22.500000/16.000000/16.000000/8.000000:d270/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/16.000000/0.000000/false:16.000000/16.000000/16.000000/0.000000/0.000000/-22.500000/0.000000/16.000000/8.000000:d90/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%black_fire,state=west:false/east:false/up:true/south:false/north:false,box=0.000000/16.000000/0.000000/false:16.000000/16.000000/16.000000/0.000000/0.000000/22.500000/16.000000/16.000000/8.000000:d270/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/16.000000/0.000000/false:16.000000/16.000000/16.000000/0.000000/0.000000/-22.500000/0.000000/16.000000/8.000000:d90/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%black_fire,state=west:true/east:false/up:false/south:false/north:false,box=0.000000/0.000000/0.010000/false:16.000000/22.400000/0.010000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%black_fire,state=west:false/east:false/up:false/south:false/north:false,box=0.000000/0.000000/8.800000/false:16.000000/22.400000/8.800000/-22.500000/0.000000/0.000000/8.000000/8.000000/8.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/7.200000/false:16.000000/22.400000/7.200000/22.500000/0.000000/0.000000/8.000000/8.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=8.800000/0.000000/0.000000/false:8.800000/22.400000/16.000000/0.000000/0.000000/-22.500000/8.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/16.000000,box=7.200000/0.000000/0.000000/false:7.200000/22.400000/16.000000/0.000000/0.000000/22.500000/8.000000/8.000000/8.000000:e/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.010000/false:16.000000/22.400000/0.010000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.010000/false:16.000000/22.400000/0.010000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.010000/false:16.000000/22.400000/0.010000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.010000/false:16.000000/22.400000/0.010000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%mahoujin,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%mana_circuit_magitech,state=facing:north/opposite:down,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/2:w/1:e/1:d/1:n/2:R/180/0/0
|
|
||||||
modellist:id=%mana_circuit_magitech,state=facing:north/opposite:north,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/2:w/1:e/1:d/1:n/2:R/90/0/0
|
|
||||||
modellist:id=%mana_circuit_magitech,state=facing:north/opposite:south,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/2:w/1:e/1:d/1:n/2:R/270/0/0
|
|
||||||
modellist:id=%mana_circuit_magitech,state=facing:north/opposite:west,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/2:w/1:e/1:d/1:n/2:R/270/90/0
|
|
||||||
modellist:id=%mana_circuit_magitech,state=facing:north/opposite:east,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/2:w/1:e/1:d/1:n/2:R/90/90/0
|
|
||||||
modellist:id=%mana_circuit_magitech,state=facing:south/opposite:down,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/2:w/1:e/1:d/1:n/2:R/180/180/0
|
|
||||||
modellist:id=%mana_circuit_magitech,state=facing:south/opposite:up,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/2:w/1:e/1:d/1:n/2:R/0/180/0
|
|
||||||
modellist:id=%mana_circuit_magitech,state=facing:south/opposite:north,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/2:w/1:e/1:d/1:n/2:R/90/0/0
|
|
||||||
modellist:id=%mana_circuit_magitech,state=facing:south/opposite:south,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/2:w/1:e/1:d/1:n/2:R/270/0/0
|
|
||||||
modellist:id=%mana_circuit_magitech,state=facing:south/opposite:west,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/2:w/1:e/1:d/1:n/2:R/270/90/0
|
|
||||||
modellist:id=%mana_circuit_magitech,state=facing:south/opposite:east,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/2:w/1:e/1:d/1:n/2:R/90/90/0
|
|
||||||
modellist:id=%mana_circuit_magitech,state=facing:west/opposite:down,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/2:w/1:e/1:d/1:n/2:R/180/270/0
|
|
||||||
modellist:id=%mana_circuit_magitech,state=facing:west/opposite:up,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/2:w/1:e/1:d/1:n/2:R/0/270/0
|
|
||||||
modellist:id=%mana_circuit_magitech,state=facing:west/opposite:north,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/2:w/1:e/1:d/1:n/2:R/90/0/0
|
|
||||||
modellist:id=%mana_circuit_magitech,state=facing:west/opposite:south,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/2:w/1:e/1:d/1:n/2:R/270/0/0
|
|
||||||
modellist:id=%mana_circuit_magitech,state=facing:west/opposite:west,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/2:w/1:e/1:d/1:n/2:R/270/90/0
|
|
||||||
modellist:id=%mana_circuit_magitech,state=facing:west/opposite:east,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/2:w/1:e/1:d/1:n/2:R/90/90/0
|
|
||||||
modellist:id=%mana_circuit_magitech,state=facing:east/opposite:down,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/2:w/1:e/1:d/1:n/2:R/180/90/0
|
|
||||||
modellist:id=%mana_circuit_magitech,state=facing:east/opposite:up,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/2:w/1:e/1:d/1:n/2:R/0/90/0
|
|
||||||
modellist:id=%mana_circuit_magitech,state=facing:east/opposite:north,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/2:w/1:e/1:d/1:n/2:R/90/0/0
|
|
||||||
modellist:id=%mana_circuit_magitech,state=facing:east/opposite:south,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/2:w/1:e/1:d/1:n/2:R/270/0/0
|
|
||||||
modellist:id=%mana_circuit_magitech,state=facing:east/opposite:west,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/2:w/1:e/1:d/1:n/2:R/270/90/0
|
|
||||||
modellist:id=%mana_circuit_magitech,state=facing:east/opposite:east,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/2:w/1:e/1:d/1:n/2:R/90/90/0
|
|
||||||
modellist:id=%mahoujin_alarm_barrier,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%mahoujin_drain_life_barrier,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%mahoujin_tangible_barrier,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%mahoujin_gravity_barrier,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%mahoujin_displacement_barrier,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%mahoujin_raise_enclosure,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%mahoujin_projection,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%mahoujin_weapon_shooter,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%mahoujin_strengthening,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%mahoujin_proximity_projection,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%mahoujin_reality_marble,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%mahoujin_power_consolidation,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%mahoujin_treasury_projection,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%mahoujin_projectile_displacement,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%mahoujin_ascension,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%mahoujin_ordered_displacement,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%mahoujin_equivalent_displacement,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%mahoujin_mental_displacement,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%mahoujin_protective_displacement,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%mahoujin_scrying,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%mahoujin_catalyst_exchange,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%mahoujin_durability_exchange,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%mahoujin_damage_exchange,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%mahoujin_chronal_exchange,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%mahoujin_alchemical_exchange,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%mahoujin_immunity_exchange,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%mahoujin_contract,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%mahoujin_mystic_staff,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%mahoujin_borrowed_authority,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%mahoujin_rho_aias,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%mahoujin_damage_replication,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%mahoujin_spatial_disorientation,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%mahoujin_cup_of_heaven,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%mahoujin_mystic_eyes,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%mahoujin_reversion_eyes,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%mahoujin_prediction,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%mahoujin_death_collection,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%mahoujin_black_flame,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%mahoujin_fay_sight,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%mahoujin_insight,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%mahoujin_summon_familiar,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%mahoujin_recall_familiar,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%mahoujin_possess_entity,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%mahoujin_swap_familiar,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%mahoujin_familiars_garden,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%mahoujin_butterfly_effect,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%mahoujin_retribution,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%mahoujin_presence_concealment,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%mahoujin_gandr,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%mahoujin_fallen_down,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%mahoujin_geas,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%mahoujin_probability_alter,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%mahoujin_selective_displacement,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000
|
|
@ -1,122 +0,0 @@
|
|||||||
modname:mahoutsukai
|
|
||||||
|
|
||||||
texture:id=empty_image,filename=assets/mahoutsukai/textures/block/empty_image.png,xcount=1,ycount=1
|
|
||||||
texture:id=spell_cloth,filename=assets/mahoutsukai/textures/block/spell_cloth.png,xcount=1,ycount=1
|
|
||||||
texture:id=black_fire_layer_0,filename=assets/mahoutsukai/textures/block/black_fire_layer_0.png,xcount=1,ycount=1
|
|
||||||
texture:id=circuit3,filename=assets/mahoutsukai/textures/block/circuit3.png,xcount=1,ycount=1
|
|
||||||
texture:id=circuit2,filename=assets/mahoutsukai/textures/block/circuit2.png,xcount=1,ycount=1
|
|
||||||
texture:id=circuit1,filename=assets/mahoutsukai/textures/block/circuit1.png,xcount=1,ycount=1
|
|
||||||
block:id=%mahoujin_projector,patch0=0:empty_image,patch1=0:empty_image,patch2=0:empty_image,patch3=0:empty_image,patch4=0:empty_image,patch5=0:empty_image,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%fog_projector,patch0=0:empty_image,patch1=0:empty_image,patch2=0:empty_image,patch3=0:empty_image,patch4=0:empty_image,patch5=0:empty_image,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%spell_cloth,patch0=0:spell_cloth,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%black_fire,state=west:true/east:true/up:true/south:true/north:true,patch0=0:black_fire_layer_0,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%black_fire,state=west:false/east:true/up:true/south:true/north:true,patch0=0:black_fire_layer_0,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%black_fire,state=west:true/east:true/up:false/south:true/north:true,patch0=0:black_fire_layer_0,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%black_fire,state=west:false/east:true/up:false/south:true/north:true,patch0=0:black_fire_layer_0,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%black_fire,state=west:true/east:true/up:true/south:false/north:true,patch0=0:black_fire_layer_0,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%black_fire,state=west:false/east:true/up:true/south:false/north:true,patch0=0:black_fire_layer_0,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%black_fire,state=west:true/east:true/up:false/south:false/north:true,patch0=0:black_fire_layer_0,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%black_fire,state=west:false/east:true/up:false/south:false/north:true,patch0=0:black_fire_layer_0,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%black_fire,state=west:true/east:true/up:true/south:true/north:false,patch0=0:black_fire_layer_0,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%black_fire,state=west:false/east:true/up:true/south:true/north:false,patch0=0:black_fire_layer_0,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%black_fire,state=west:true/east:true/up:false/south:true/north:false,patch0=0:black_fire_layer_0,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%black_fire,state=west:false/east:true/up:false/south:true/north:false,patch0=0:black_fire_layer_0,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%black_fire,state=west:true/east:true/up:true/south:false/north:false,patch0=0:black_fire_layer_0,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%black_fire,state=west:false/east:true/up:true/south:false/north:false,patch0=0:black_fire_layer_0,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%black_fire,state=west:true/east:true/up:false/south:false/north:false,patch0=0:black_fire_layer_0,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%black_fire,state=west:false/east:true/up:false/south:false/north:false,patch0=0:black_fire_layer_0,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%black_fire,state=west:true/east:false/up:true/south:true/north:true,patch0=0:black_fire_layer_0,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%black_fire,state=west:false/east:false/up:true/south:true/north:true,patch0=0:black_fire_layer_0,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%black_fire,state=west:true/east:false/up:false/south:true/north:true,patch0=0:black_fire_layer_0,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%black_fire,state=west:false/east:false/up:false/south:true/north:true,patch0=0:black_fire_layer_0,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%black_fire,state=west:true/east:false/up:true/south:false/north:true,patch0=0:black_fire_layer_0,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%black_fire,state=west:false/east:false/up:true/south:false/north:true,patch0=0:black_fire_layer_0,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%black_fire,state=west:true/east:false/up:false/south:false/north:true,patch0=0:black_fire_layer_0,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%black_fire,state=west:false/east:false/up:false/south:false/north:true,patch0=0:black_fire_layer_0,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%black_fire,state=west:true/east:false/up:true/south:true/north:false,patch0=0:black_fire_layer_0,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%black_fire,state=west:false/east:false/up:true/south:true/north:false,patch0=0:black_fire_layer_0,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%black_fire,state=west:true/east:false/up:false/south:true/north:false,patch0=0:black_fire_layer_0,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%black_fire,state=west:false/east:false/up:false/south:true/north:false,patch0=0:black_fire_layer_0,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%black_fire,state=west:true/east:false/up:true/south:false/north:false,patch0=0:black_fire_layer_0,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%black_fire,state=west:false/east:false/up:true/south:false/north:false,patch0=0:black_fire_layer_0,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%black_fire,state=west:true/east:false/up:false/south:false/north:false,patch0=0:black_fire_layer_0,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%black_fire,state=west:false/east:false/up:false/south:false/north:false,patch0=0:black_fire_layer_0,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mahoujin,patch0=0:empty_image,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%mana_circuit,patch0=0:empty_image,patch1=0:empty_image,patch2=0:empty_image,patch3=0:empty_image,patch4=0:empty_image,patch5=0:empty_image,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%mana_circuit_magitech,state=facing:north/opposite:down,patch0=0:circuit3,patch1=0:circuit2,patch2=0:circuit1,stdrot=true
|
|
||||||
block:id=%mana_circuit_magitech,state=facing:north/opposite:up,patch0=0:circuit2,patch1=0:circuit2,patch2=0:circuit1,patch3=0:circuit2,patch4=0:circuit3,patch5=0:circuit1,stdrot=true
|
|
||||||
block:id=%mana_circuit_magitech,state=facing:north/opposite:north,patch0=0:circuit3,patch1=0:circuit2,patch2=0:circuit1,stdrot=true
|
|
||||||
block:id=%mana_circuit_magitech,state=facing:north/opposite:south,patch0=0:circuit3,patch1=0:circuit2,patch2=0:circuit1,stdrot=true
|
|
||||||
block:id=%mana_circuit_magitech,state=facing:north/opposite:west,patch0=0:circuit3,patch1=0:circuit2,patch2=0:circuit1,stdrot=true
|
|
||||||
block:id=%mana_circuit_magitech,state=facing:north/opposite:east,patch0=0:circuit3,patch1=0:circuit2,patch2=0:circuit1,stdrot=true
|
|
||||||
block:id=%mana_circuit_magitech,state=facing:south/opposite:down,patch0=0:circuit3,patch1=0:circuit2,patch2=0:circuit1,stdrot=true
|
|
||||||
block:id=%mana_circuit_magitech,state=facing:south/opposite:up,patch0=0:circuit3,patch1=0:circuit2,patch2=0:circuit1,stdrot=true
|
|
||||||
block:id=%mana_circuit_magitech,state=facing:south/opposite:north,patch0=0:circuit3,patch1=0:circuit2,patch2=0:circuit1,stdrot=true
|
|
||||||
block:id=%mana_circuit_magitech,state=facing:south/opposite:south,patch0=0:circuit3,patch1=0:circuit2,patch2=0:circuit1,stdrot=true
|
|
||||||
block:id=%mana_circuit_magitech,state=facing:south/opposite:west,patch0=0:circuit3,patch1=0:circuit2,patch2=0:circuit1,stdrot=true
|
|
||||||
block:id=%mana_circuit_magitech,state=facing:south/opposite:east,patch0=0:circuit3,patch1=0:circuit2,patch2=0:circuit1,stdrot=true
|
|
||||||
block:id=%mana_circuit_magitech,state=facing:west/opposite:down,patch0=0:circuit3,patch1=0:circuit2,patch2=0:circuit1,stdrot=true
|
|
||||||
block:id=%mana_circuit_magitech,state=facing:west/opposite:up,patch0=0:circuit3,patch1=0:circuit2,patch2=0:circuit1,stdrot=true
|
|
||||||
block:id=%mana_circuit_magitech,state=facing:west/opposite:north,patch0=0:circuit3,patch1=0:circuit2,patch2=0:circuit1,stdrot=true
|
|
||||||
block:id=%mana_circuit_magitech,state=facing:west/opposite:south,patch0=0:circuit3,patch1=0:circuit2,patch2=0:circuit1,stdrot=true
|
|
||||||
block:id=%mana_circuit_magitech,state=facing:west/opposite:west,patch0=0:circuit3,patch1=0:circuit2,patch2=0:circuit1,stdrot=true
|
|
||||||
block:id=%mana_circuit_magitech,state=facing:west/opposite:east,patch0=0:circuit3,patch1=0:circuit2,patch2=0:circuit1,stdrot=true
|
|
||||||
block:id=%mana_circuit_magitech,state=facing:east/opposite:down,patch0=0:circuit3,patch1=0:circuit2,patch2=0:circuit1,stdrot=true
|
|
||||||
block:id=%mana_circuit_magitech,state=facing:east/opposite:up,patch0=0:circuit3,patch1=0:circuit2,patch2=0:circuit1,stdrot=true
|
|
||||||
block:id=%mana_circuit_magitech,state=facing:east/opposite:north,patch0=0:circuit3,patch1=0:circuit2,patch2=0:circuit1,stdrot=true
|
|
||||||
block:id=%mana_circuit_magitech,state=facing:east/opposite:south,patch0=0:circuit3,patch1=0:circuit2,patch2=0:circuit1,stdrot=true
|
|
||||||
block:id=%mana_circuit_magitech,state=facing:east/opposite:west,patch0=0:circuit3,patch1=0:circuit2,patch2=0:circuit1,stdrot=true
|
|
||||||
block:id=%mana_circuit_magitech,state=facing:east/opposite:east,patch0=0:circuit3,patch1=0:circuit2,patch2=0:circuit1,stdrot=true
|
|
||||||
block:id=%mahoujin_alarm_barrier,patch0=0:empty_image,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%mahoujin_drain_life_barrier,patch0=0:empty_image,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%mahoujin_tangible_barrier,patch0=0:empty_image,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%mahoujin_gravity_barrier,patch0=0:empty_image,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%mahoujin_displacement_barrier,patch0=0:empty_image,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%mahoujin_raise_enclosure,patch0=0:empty_image,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%mahoujin_projection,patch0=0:empty_image,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%mahoujin_weapon_shooter,patch0=0:empty_image,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%mahoujin_strengthening,patch0=0:empty_image,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%mahoujin_proximity_projection,patch0=0:empty_image,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%mahoujin_reality_marble,patch0=0:empty_image,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%mahoujin_power_consolidation,patch0=0:empty_image,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%mahoujin_treasury_projection,patch0=0:empty_image,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%mahoujin_projectile_displacement,patch0=0:empty_image,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%mahoujin_ascension,patch0=0:empty_image,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%mahoujin_ordered_displacement,patch0=0:empty_image,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%mahoujin_equivalent_displacement,patch0=0:empty_image,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%mahoujin_mental_displacement,patch0=0:empty_image,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%mahoujin_protective_displacement,patch0=0:empty_image,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%mahoujin_scrying,patch0=0:empty_image,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%mahoujin_catalyst_exchange,patch0=0:empty_image,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%mahoujin_durability_exchange,patch0=0:empty_image,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%mahoujin_damage_exchange,patch0=0:empty_image,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%mahoujin_chronal_exchange,patch0=0:empty_image,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%mahoujin_alchemical_exchange,patch0=0:empty_image,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%mahoujin_immunity_exchange,patch0=0:empty_image,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%mahoujin_contract,patch0=0:empty_image,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%mahoujin_mystic_staff,patch0=0:empty_image,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%mahoujin_borrowed_authority,patch0=0:empty_image,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%mahoujin_rho_aias,patch0=0:empty_image,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%mahoujin_damage_replication,patch0=0:empty_image,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%mahoujin_spatial_disorientation,patch0=0:empty_image,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%mahoujin_cup_of_heaven,patch0=0:empty_image,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%mahoujin_mystic_eyes,patch0=0:empty_image,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%mahoujin_reversion_eyes,patch0=0:empty_image,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%mahoujin_prediction,patch0=0:empty_image,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%mahoujin_death_collection,patch0=0:empty_image,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%mahoujin_black_flame,patch0=0:empty_image,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%mahoujin_fay_sight,patch0=0:empty_image,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%mahoujin_insight,patch0=0:empty_image,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%mahoujin_summon_familiar,patch0=0:empty_image,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%mahoujin_recall_familiar,patch0=0:empty_image,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%mahoujin_possess_entity,patch0=0:empty_image,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%mahoujin_swap_familiar,patch0=0:empty_image,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%mahoujin_familiars_garden,patch0=0:empty_image,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%mahoujin_butterfly_effect,patch0=0:empty_image,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%mahoujin_retribution,patch0=0:empty_image,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%mahoujin_presence_concealment,patch0=0:empty_image,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%mahoujin_gandr,patch0=0:empty_image,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%mahoujin_fallen_down,patch0=0:empty_image,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%mahoujin_geas,patch0=0:empty_image,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%mahoujin_probability_alter,patch0=0:empty_image,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%mahoujin_selective_displacement,patch0=0:empty_image,transparency=TRANSPARENT,stdrot=true
|
|
@ -1,3 +0,0 @@
|
|||||||
modname:mcjtylib
|
|
||||||
|
|
||||||
modellist:id=%multipart
|
|
@ -1,3 +0,0 @@
|
|||||||
modname:mcjtylib
|
|
||||||
|
|
||||||
block:id=%multipart,transparency=TRANSPARENT,stdrot=true
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
@ -1,16 +0,0 @@
|
|||||||
modname:mythicbotany
|
|
||||||
|
|
||||||
modellist:id=%mana_infuser,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/13.000000/16.000000/16.000000:w/1/0.000000/13.000000/16.000000/16.000000:e/1/0.000000/13.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/13.000000/16.000000/16.000000
|
|
||||||
modellist:id=%exoblaze,box=0.800000/0.000000/8.000000/false:15.200000/16.000000/8.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/0.000000/0.800000/false:8.000000/16.000000/15.200000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%wither_aconite,box=0.800000/0.000000/8.000000/false:15.200000/16.000000/8.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/0.000000/0.800000/false:8.000000/16.000000/15.200000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%aquapanthus,box=0.800000/0.000000/8.000000/false:15.200000/16.000000/8.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/0.000000/0.800000/false:8.000000/16.000000/15.200000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%hellebore,box=0.800000/0.000000/8.000000/false:15.200000/16.000000/8.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/0.000000/0.800000/false:8.000000/16.000000/15.200000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%raindeletia,box=0.800000/0.000000/8.000000/false:15.200000/16.000000/8.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/0.000000/0.800000/false:8.000000/16.000000/15.200000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%feysythia,box=0.800000/0.000000/8.000000/false:15.200000/16.000000/8.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/0.000000/0.800000/false:8.000000/16.000000/15.200000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%petrunia,box=0.800000/0.000000/8.000000/false:15.200000/16.000000/8.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/0.000000/0.800000/false:8.000000/16.000000/15.200000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%yggdrasil_branch,state=facing:north,box=5.000000/0.000000/8.000000:11.000000/12.000000/14.000000:u/0/0.000000/0.000000/6.000000/6.000000:s/0/0.000000/0.000000/6.000000/12.000000:w/0/0.000000/0.000000/6.000000/12.000000:e/0/0.000000/0.000000/6.000000/12.000000:d/0/0.000000/0.000000/6.000000/6.000000:n/0/0.000000/0.000000/6.000000/12.000000,box=1.250000/6.000000/10.500000:3.250000/15.000000/12.500000/0.000000/0.000000/22.500000/9.250000/14.000000/18.500000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/0.000000/2.000000/9.000000:w/0/0.000000/0.000000/2.000000/9.000000:e/0/0.000000/0.000000/2.000000/9.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/0.000000/2.000000/9.000000,box=13.000000/-3.000000/9.500000:15.000000/4.000000/11.500000/0.000000/0.000000/-45.000000/21.000000/5.000000/17.500000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/0.000000/2.000000/7.000000:w/0/0.000000/0.000000/2.000000/7.000000:e/0/0.000000/0.000000/2.000000/7.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/0.000000/2.000000/7.000000
|
|
||||||
modellist:id=%yggdrasil_branch,state=facing:south,box=5.000000/0.000000/8.000000:11.000000/12.000000/14.000000:u/0/0.000000/0.000000/6.000000/6.000000:s/0/0.000000/0.000000/6.000000/12.000000:w/0/0.000000/0.000000/6.000000/12.000000:e/0/0.000000/0.000000/6.000000/12.000000:d/0/0.000000/0.000000/6.000000/6.000000:n/0/0.000000/0.000000/6.000000/12.000000:R/0/180/0,box=1.250000/6.000000/10.500000:3.250000/15.000000/12.500000/0.000000/0.000000/22.500000/9.250000/14.000000/18.500000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/0.000000/2.000000/9.000000:w/0/0.000000/0.000000/2.000000/9.000000:e/0/0.000000/0.000000/2.000000/9.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/0.000000/2.000000/9.000000:R/0/180/0,box=13.000000/-3.000000/9.500000:15.000000/4.000000/11.500000/0.000000/0.000000/-45.000000/21.000000/5.000000/17.500000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/0.000000/2.000000/7.000000:w/0/0.000000/0.000000/2.000000/7.000000:e/0/0.000000/0.000000/2.000000/7.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/0.000000/2.000000/7.000000:R/0/180/0
|
|
||||||
modellist:id=%yggdrasil_branch,state=facing:west,box=5.000000/0.000000/8.000000:11.000000/12.000000/14.000000:u/0/0.000000/0.000000/6.000000/6.000000:s/0/0.000000/0.000000/6.000000/12.000000:w/0/0.000000/0.000000/6.000000/12.000000:e/0/0.000000/0.000000/6.000000/12.000000:d/0/0.000000/0.000000/6.000000/6.000000:n/0/0.000000/0.000000/6.000000/12.000000:R/0/270/0,box=1.250000/6.000000/10.500000:3.250000/15.000000/12.500000/0.000000/0.000000/22.500000/9.250000/14.000000/18.500000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/0.000000/2.000000/9.000000:w/0/0.000000/0.000000/2.000000/9.000000:e/0/0.000000/0.000000/2.000000/9.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/0.000000/2.000000/9.000000:R/0/270/0,box=13.000000/-3.000000/9.500000:15.000000/4.000000/11.500000/0.000000/0.000000/-45.000000/21.000000/5.000000/17.500000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/0.000000/2.000000/7.000000:w/0/0.000000/0.000000/2.000000/7.000000:e/0/0.000000/0.000000/2.000000/7.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/0.000000/2.000000/7.000000:R/0/270/0
|
|
||||||
modellist:id=%yggdrasil_branch,state=facing:east,box=5.000000/0.000000/8.000000:11.000000/12.000000/14.000000:u/0/0.000000/0.000000/6.000000/6.000000:s/0/0.000000/0.000000/6.000000/12.000000:w/0/0.000000/0.000000/6.000000/12.000000:e/0/0.000000/0.000000/6.000000/12.000000:d/0/0.000000/0.000000/6.000000/6.000000:n/0/0.000000/0.000000/6.000000/12.000000:R/0/90/0,box=1.250000/6.000000/10.500000:3.250000/15.000000/12.500000/0.000000/0.000000/22.500000/9.250000/14.000000/18.500000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/0.000000/2.000000/9.000000:w/0/0.000000/0.000000/2.000000/9.000000:e/0/0.000000/0.000000/2.000000/9.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/0.000000/2.000000/9.000000:R/0/90/0,box=13.000000/-3.000000/9.500000:15.000000/4.000000/11.500000/0.000000/0.000000/-45.000000/21.000000/5.000000/17.500000:u/0/0.000000/0.000000/2.000000/2.000000:s/0/0.000000/0.000000/2.000000/7.000000:w/0/0.000000/0.000000/2.000000/7.000000:e/0/0.000000/0.000000/2.000000/7.000000:d/0/0.000000/0.000000/2.000000/2.000000:n/0/0.000000/0.000000/2.000000/7.000000:R/0/90/0
|
|
||||||
modellist:id=%rune_holder,box=6.500000/1.000000/6.500000:9.500000/3.000000/9.500000:u/0/6.500000/6.500000/9.500000/9.500000:s/0/6.500000/13.000000/9.500000/15.000000:w/0/6.500000/13.000000/9.500000/15.000000:e/0/6.500000/13.000000/9.500000/15.000000:d/0/6.500000/6.500000/9.500000/9.500000:n/0/6.500000/13.000000/9.500000/15.000000,box=5.000000/0.000000/5.000000:11.000000/1.000000/11.000000:u/0/0.000000/0.000000/6.000000/6.000000:s/0/0.000000/0.000000/6.000000/1.000000:w/0/0.000000/0.000000/6.000000/1.000000:e/0/0.000000/0.000000/6.000000/1.000000:d/0/0.000000/0.000000/6.000000/6.000000:n/0/0.000000/0.000000/6.000000/1.000000
|
|
||||||
modellist:id=%central_rune_holder,box=6.500000/1.000000/6.500000:9.500000/3.000000/9.500000:u/0/4.000000/4.000000/12.000000/12.000000:s/0/4.000000/11.000000/12.000000/15.000000:w/0/4.000000/11.000000/12.000000/15.000000:e/0/4.000000/11.000000/12.000000/15.000000:d/0/6.500000/6.500000/9.500000/9.500000:n/0/4.000000/11.000000/12.000000/15.000000,box=5.000000/0.000000/5.000000:11.000000/1.000000/11.000000:u/0/1.000000/1.000000/15.000000/15.000000:s/0/1.000000/0.000000/15.000000/2.000000:w/0/2.000000/0.000000/14.000000/2.000000:e/0/1.000000/0.000000/15.000000/2.000000:d/0/1.000000/1.000000/15.000000/15.000000:n/0/1.000000/0.000000/15.000000/2.000000
|
|
@ -1,43 +0,0 @@
|
|||||||
modname:mythicbotany
|
|
||||||
|
|
||||||
texture:id=mana_infuser_top,filename=assets/mythicbotany/textures/block/mana_infuser_top.png,xcount=1,ycount=1
|
|
||||||
texture:id=elementium_block,filename=assets/botania/textures/block/elementium_block.png,xcount=1,ycount=1
|
|
||||||
texture:id=alfsteel_block,filename=assets/mythicbotany/textures/block/alfsteel_block.png,xcount=1,ycount=1
|
|
||||||
texture:id=mana_collector,filename=assets/mythicbotany/textures/block/mana_collector.png,xcount=1,ycount=1
|
|
||||||
texture:id=exoblaze,filename=assets/mythicbotany/textures/block/exoblaze.png,xcount=1,ycount=1
|
|
||||||
texture:id=wither_aconite,filename=assets/mythicbotany/textures/block/wither_aconite.png,xcount=1,ycount=1
|
|
||||||
texture:id=aquapanthus,filename=assets/mythicbotany/textures/block/aquapanthus.png,xcount=1,ycount=1
|
|
||||||
texture:id=hellebore,filename=assets/mythicbotany/textures/block/hellebore.png,xcount=1,ycount=1
|
|
||||||
texture:id=raindeletia,filename=assets/mythicbotany/textures/block/raindeletia.png,xcount=1,ycount=1
|
|
||||||
texture:id=feysythia,filename=assets/mythicbotany/textures/block/feysythia.png,xcount=1,ycount=1
|
|
||||||
texture:id=petrunia,filename=assets/mythicbotany/textures/block/petrunia.png,xcount=1,ycount=1
|
|
||||||
texture:id=root,filename=assets/botania/textures/block/root.png,xcount=1,ycount=1
|
|
||||||
texture:id=anvil,filename=assets/minecraft/textures/block/anvil.png,xcount=1,ycount=1
|
|
||||||
texture:id=emerald_block,filename=assets/minecraft/textures/block/emerald_block.png,xcount=1,ycount=1
|
|
||||||
texture:id=foliage,filename=assets/minecraft/textures/colormap/foliage.png,xcount=1,ycount=1,format=BIOME
|
|
||||||
texture:id=dreamwood_leaves,filename=assets/mythicbotany/textures/block/dreamwood_leaves.png,xcount=1,ycount=1
|
|
||||||
texture:id=elementium_ore,filename=assets/mythicbotany/textures/block/elementium_ore.png,xcount=1,ycount=1
|
|
||||||
texture:id=dragonstone_ore,filename=assets/mythicbotany/textures/block/dragonstone_ore.png,xcount=1,ycount=1
|
|
||||||
texture:id=gold_ore,filename=assets/mythicbotany/textures/block/gold_ore.png,xcount=1,ycount=1
|
|
||||||
texture:id=raw_elementium_block,filename=assets/mythicbotany/textures/block/raw_elementium_block.png,xcount=1,ycount=1
|
|
||||||
block:id=%mana_infuser,patch0=0:mana_infuser_top,patch1=0:elementium_block,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%alfsteel_block,patch0=0:alfsteel_block,patch1=0:alfsteel_block,patch2=0:alfsteel_block,patch3=0:alfsteel_block,patch4=0:alfsteel_block,patch5=0:alfsteel_block,stdrot=true
|
|
||||||
block:id=%mana_collector,patch0=0:mana_collector,patch1=0:mana_collector,patch2=0:mana_collector,patch3=0:mana_collector,patch4=0:mana_collector,patch5=0:mana_collector,stdrot=true
|
|
||||||
block:id=%exoblaze,patch0=0:exoblaze,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%wither_aconite,patch0=0:wither_aconite,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%aquapanthus,patch0=0:aquapanthus,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%hellebore,patch0=0:hellebore,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%raindeletia,patch0=0:raindeletia,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%feysythia,patch0=0:feysythia,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%petrunia,patch0=0:petrunia,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%yggdrasil_branch,state=facing:north,patch0=0:root,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%yggdrasil_branch,state=facing:south,patch0=0:root,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%yggdrasil_branch,state=facing:west,patch0=0:root,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%yggdrasil_branch,state=facing:east,patch0=0:root,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%rune_holder,patch0=0:anvil,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%central_rune_holder,patch0=0:emerald_block,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%dreamwood_leaves,patch0=0:dreamwood_leaves,patch1=0:dreamwood_leaves,patch2=0:dreamwood_leaves,patch3=0:dreamwood_leaves,patch4=0:dreamwood_leaves,patch5=0:dreamwood_leaves,blockcolor=foliage,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%elementium_ore,patch0=0:elementium_ore,patch1=0:elementium_ore,patch2=0:elementium_ore,patch3=0:elementium_ore,patch4=0:elementium_ore,patch5=0:elementium_ore,stdrot=true
|
|
||||||
block:id=%dragonstone_ore,patch0=0:dragonstone_ore,patch1=0:dragonstone_ore,patch2=0:dragonstone_ore,patch3=0:dragonstone_ore,patch4=0:dragonstone_ore,patch5=0:dragonstone_ore,stdrot=true
|
|
||||||
block:id=%gold_ore,patch0=0:gold_ore,patch1=0:gold_ore,patch2=0:gold_ore,patch3=0:gold_ore,patch4=0:gold_ore,patch5=0:gold_ore,stdrot=true
|
|
||||||
block:id=%raw_elementium_block,patch0=0:raw_elementium_block,patch1=0:raw_elementium_block,patch2=0:raw_elementium_block,patch3=0:raw_elementium_block,patch4=0:raw_elementium_block,patch5=0:raw_elementium_block,stdrot=true
|
|
@ -1,52 +0,0 @@
|
|||||||
modname:piglin_expansion
|
|
||||||
|
|
||||||
modellist:id=%basalt_quadratiles_slab,state=type:top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/8.000000
|
|
||||||
modellist:id=%basalt_quadratiles_slab,state=type:bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000
|
|
||||||
modellist:id=%chiseled_basalt_quadratiles_slab,state=type:top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/8.000000
|
|
||||||
modellist:id=%chiseled_basalt_quadratiles_slab,state=type:bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000
|
|
||||||
modellist:id=%gilded_basalt_quadratiles_slab,state=type:top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/8.000000
|
|
||||||
modellist:id=%gilded_basalt_quadratiles_slab,state=type:bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000
|
|
||||||
modellist:id=%basaltic_blackstone_slab,state=type:top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/8.000000:w/1/0.000000/0.000000/16.000000/8.000000:e/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/8.000000
|
|
||||||
modellist:id=%basaltic_blackstone_slab,state=type:bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/8.000000/16.000000/16.000000:w/1/0.000000/8.000000/16.000000/16.000000:e/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/8.000000/16.000000/16.000000
|
|
||||||
modellist:id=%basaltic_blackstone_stair,state=facing:north/half:top/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/8.000000/16.000000/16.000000:w/1/0.000000/8.000000/16.000000/16.000000:e/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/8.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/1/8.000000/0.000000/16.000000/8.000000:w/1/0.000000/0.000000/16.000000/8.000000:e/1/0.000000/0.000000/16.000000/8.000000:n/1/0.000000/0.000000/8.000000/8.000000:R/180/270/0
|
|
||||||
modellist:id=%basaltic_blackstone_stair,state=facing:north/half:top/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/8.000000/16.000000/16.000000:w/1/0.000000/8.000000/16.000000/16.000000:e/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/8.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/1/8.000000/0.000000/16.000000/8.000000:w/1/0.000000/0.000000/16.000000/8.000000:e/1/0.000000/0.000000/16.000000/8.000000:n/1/0.000000/0.000000/8.000000/8.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/1/0.000000/0.000000/8.000000/8.000000:w/1/8.000000/0.000000/16.000000/8.000000:n/1/8.000000/0.000000/16.000000/8.000000:R/180/270/0
|
|
||||||
modellist:id=%basaltic_blackstone_stair,state=facing:north/half:top/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/8.000000/16.000000/16.000000:w/1/0.000000/8.000000/16.000000/16.000000:e/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/8.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/1/8.000000/0.000000/16.000000/8.000000:w/1/0.000000/0.000000/16.000000/8.000000:e/1/0.000000/0.000000/16.000000/8.000000:n/1/0.000000/0.000000/8.000000/8.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/1/0.000000/0.000000/8.000000/8.000000:w/1/8.000000/0.000000/16.000000/8.000000:n/1/8.000000/0.000000/16.000000/8.000000:R/180/0/0
|
|
||||||
modellist:id=%basaltic_blackstone_stair,state=facing:north/half:top/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/8.000000/16.000000/16.000000:w/1/0.000000/8.000000/16.000000/16.000000:e/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/8.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/1/8.000000/0.000000/16.000000/8.000000:w/1/8.000000/0.000000/16.000000/8.000000:e/1/0.000000/0.000000/8.000000/8.000000:n/1/0.000000/0.000000/8.000000/8.000000:R/180/270/0
|
|
||||||
modellist:id=%basaltic_blackstone_stair,state=facing:north/half:top/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/8.000000/16.000000/16.000000:w/1/0.000000/8.000000/16.000000/16.000000:e/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/8.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/1/8.000000/0.000000/16.000000/8.000000:w/1/8.000000/0.000000/16.000000/8.000000:e/1/0.000000/0.000000/8.000000/8.000000:n/1/0.000000/0.000000/8.000000/8.000000:R/180/0/0
|
|
||||||
modellist:id=%basaltic_blackstone_stair,state=facing:north/half:bottom/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/8.000000/16.000000/16.000000:w/1/0.000000/8.000000/16.000000/16.000000:e/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/8.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/1/8.000000/0.000000/16.000000/8.000000:w/1/0.000000/0.000000/16.000000/8.000000:e/1/0.000000/0.000000/16.000000/8.000000:n/1/0.000000/0.000000/8.000000/8.000000:R/0/270/0
|
|
||||||
modellist:id=%basaltic_blackstone_stair,state=facing:north/half:bottom/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/8.000000/16.000000/16.000000:w/1/0.000000/8.000000/16.000000/16.000000:e/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/8.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/1/8.000000/0.000000/16.000000/8.000000:w/1/0.000000/0.000000/16.000000/8.000000:e/1/0.000000/0.000000/16.000000/8.000000:n/1/0.000000/0.000000/8.000000/8.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/1/0.000000/0.000000/8.000000/8.000000:w/1/8.000000/0.000000/16.000000/8.000000:n/1/8.000000/0.000000/16.000000/8.000000:R/0/180/0
|
|
||||||
modellist:id=%basaltic_blackstone_stair,state=facing:north/half:bottom/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/8.000000/16.000000/16.000000:w/1/0.000000/8.000000/16.000000/16.000000:e/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/8.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/1/8.000000/0.000000/16.000000/8.000000:w/1/0.000000/0.000000/16.000000/8.000000:e/1/0.000000/0.000000/16.000000/8.000000:n/1/0.000000/0.000000/8.000000/8.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/1/0.000000/0.000000/8.000000/8.000000:w/1/8.000000/0.000000/16.000000/8.000000:n/1/8.000000/0.000000/16.000000/8.000000:R/0/270/0
|
|
||||||
modellist:id=%basaltic_blackstone_stair,state=facing:north/half:bottom/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/8.000000/16.000000/16.000000:w/1/0.000000/8.000000/16.000000/16.000000:e/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/8.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/1/8.000000/0.000000/16.000000/8.000000:w/1/8.000000/0.000000/16.000000/8.000000:e/1/0.000000/0.000000/8.000000/8.000000:n/1/0.000000/0.000000/8.000000/8.000000:R/0/180/0
|
|
||||||
modellist:id=%basaltic_blackstone_stair,state=facing:north/half:bottom/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/8.000000/16.000000/16.000000:w/1/0.000000/8.000000/16.000000/16.000000:e/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/8.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/1/8.000000/0.000000/16.000000/8.000000:w/1/8.000000/0.000000/16.000000/8.000000:e/1/0.000000/0.000000/8.000000/8.000000:n/1/0.000000/0.000000/8.000000/8.000000:R/0/270/0
|
|
||||||
modellist:id=%basaltic_blackstone_stair,state=facing:south/half:top/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/8.000000/16.000000/16.000000:w/1/0.000000/8.000000/16.000000/16.000000:e/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/8.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/1/8.000000/0.000000/16.000000/8.000000:w/1/0.000000/0.000000/16.000000/8.000000:e/1/0.000000/0.000000/16.000000/8.000000:n/1/0.000000/0.000000/8.000000/8.000000:R/180/90/0
|
|
||||||
modellist:id=%basaltic_blackstone_stair,state=facing:south/half:top/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/8.000000/16.000000/16.000000:w/1/0.000000/8.000000/16.000000/16.000000:e/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/8.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/1/8.000000/0.000000/16.000000/8.000000:w/1/0.000000/0.000000/16.000000/8.000000:e/1/0.000000/0.000000/16.000000/8.000000:n/1/0.000000/0.000000/8.000000/8.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/1/0.000000/0.000000/8.000000/8.000000:w/1/8.000000/0.000000/16.000000/8.000000:n/1/8.000000/0.000000/16.000000/8.000000:R/180/90/0
|
|
||||||
modellist:id=%basaltic_blackstone_stair,state=facing:south/half:top/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/8.000000/16.000000/16.000000:w/1/0.000000/8.000000/16.000000/16.000000:e/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/8.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/1/8.000000/0.000000/16.000000/8.000000:w/1/0.000000/0.000000/16.000000/8.000000:e/1/0.000000/0.000000/16.000000/8.000000:n/1/0.000000/0.000000/8.000000/8.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/1/0.000000/0.000000/8.000000/8.000000:w/1/8.000000/0.000000/16.000000/8.000000:n/1/8.000000/0.000000/16.000000/8.000000:R/180/180/0
|
|
||||||
modellist:id=%basaltic_blackstone_stair,state=facing:south/half:top/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/8.000000/16.000000/16.000000:w/1/0.000000/8.000000/16.000000/16.000000:e/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/8.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/1/8.000000/0.000000/16.000000/8.000000:w/1/8.000000/0.000000/16.000000/8.000000:e/1/0.000000/0.000000/8.000000/8.000000:n/1/0.000000/0.000000/8.000000/8.000000:R/180/90/0
|
|
||||||
modellist:id=%basaltic_blackstone_stair,state=facing:south/half:top/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/8.000000/16.000000/16.000000:w/1/0.000000/8.000000/16.000000/16.000000:e/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/8.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/1/8.000000/0.000000/16.000000/8.000000:w/1/8.000000/0.000000/16.000000/8.000000:e/1/0.000000/0.000000/8.000000/8.000000:n/1/0.000000/0.000000/8.000000/8.000000:R/180/180/0
|
|
||||||
modellist:id=%basaltic_blackstone_stair,state=facing:south/half:bottom/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/8.000000/16.000000/16.000000:w/1/0.000000/8.000000/16.000000/16.000000:e/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/8.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/1/8.000000/0.000000/16.000000/8.000000:w/1/0.000000/0.000000/16.000000/8.000000:e/1/0.000000/0.000000/16.000000/8.000000:n/1/0.000000/0.000000/8.000000/8.000000:R/0/90/0
|
|
||||||
modellist:id=%basaltic_blackstone_stair,state=facing:south/half:bottom/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/8.000000/16.000000/16.000000:w/1/0.000000/8.000000/16.000000/16.000000:e/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/8.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/1/8.000000/0.000000/16.000000/8.000000:w/1/0.000000/0.000000/16.000000/8.000000:e/1/0.000000/0.000000/16.000000/8.000000:n/1/0.000000/0.000000/8.000000/8.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/1/0.000000/0.000000/8.000000/8.000000:w/1/8.000000/0.000000/16.000000/8.000000:n/1/8.000000/0.000000/16.000000/8.000000
|
|
||||||
modellist:id=%basaltic_blackstone_stair,state=facing:south/half:bottom/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/8.000000/16.000000/16.000000:w/1/0.000000/8.000000/16.000000/16.000000:e/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/8.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/1/8.000000/0.000000/16.000000/8.000000:w/1/0.000000/0.000000/16.000000/8.000000:e/1/0.000000/0.000000/16.000000/8.000000:n/1/0.000000/0.000000/8.000000/8.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/1/0.000000/0.000000/8.000000/8.000000:w/1/8.000000/0.000000/16.000000/8.000000:n/1/8.000000/0.000000/16.000000/8.000000:R/0/90/0
|
|
||||||
modellist:id=%basaltic_blackstone_stair,state=facing:south/half:bottom/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/8.000000/16.000000/16.000000:w/1/0.000000/8.000000/16.000000/16.000000:e/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/8.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/1/8.000000/0.000000/16.000000/8.000000:w/1/8.000000/0.000000/16.000000/8.000000:e/1/0.000000/0.000000/8.000000/8.000000:n/1/0.000000/0.000000/8.000000/8.000000
|
|
||||||
modellist:id=%basaltic_blackstone_stair,state=facing:south/half:bottom/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/8.000000/16.000000/16.000000:w/1/0.000000/8.000000/16.000000/16.000000:e/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/8.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/1/8.000000/0.000000/16.000000/8.000000:w/1/8.000000/0.000000/16.000000/8.000000:e/1/0.000000/0.000000/8.000000/8.000000:n/1/0.000000/0.000000/8.000000/8.000000:R/0/90/0
|
|
||||||
modellist:id=%basaltic_blackstone_stair,state=facing:west/half:top/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/8.000000/16.000000/16.000000:w/1/0.000000/8.000000/16.000000/16.000000:e/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/8.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/1/8.000000/0.000000/16.000000/8.000000:w/1/0.000000/0.000000/16.000000/8.000000:e/1/0.000000/0.000000/16.000000/8.000000:n/1/0.000000/0.000000/8.000000/8.000000:R/180/180/0
|
|
||||||
modellist:id=%basaltic_blackstone_stair,state=facing:west/half:top/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/8.000000/16.000000/16.000000:w/1/0.000000/8.000000/16.000000/16.000000:e/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/8.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/1/8.000000/0.000000/16.000000/8.000000:w/1/0.000000/0.000000/16.000000/8.000000:e/1/0.000000/0.000000/16.000000/8.000000:n/1/0.000000/0.000000/8.000000/8.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/1/0.000000/0.000000/8.000000/8.000000:w/1/8.000000/0.000000/16.000000/8.000000:n/1/8.000000/0.000000/16.000000/8.000000:R/180/180/0
|
|
||||||
modellist:id=%basaltic_blackstone_stair,state=facing:west/half:top/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/8.000000/16.000000/16.000000:w/1/0.000000/8.000000/16.000000/16.000000:e/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/8.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/1/8.000000/0.000000/16.000000/8.000000:w/1/0.000000/0.000000/16.000000/8.000000:e/1/0.000000/0.000000/16.000000/8.000000:n/1/0.000000/0.000000/8.000000/8.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/1/0.000000/0.000000/8.000000/8.000000:w/1/8.000000/0.000000/16.000000/8.000000:n/1/8.000000/0.000000/16.000000/8.000000:R/180/270/0
|
|
||||||
modellist:id=%basaltic_blackstone_stair,state=facing:west/half:top/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/8.000000/16.000000/16.000000:w/1/0.000000/8.000000/16.000000/16.000000:e/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/8.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/1/8.000000/0.000000/16.000000/8.000000:w/1/8.000000/0.000000/16.000000/8.000000:e/1/0.000000/0.000000/8.000000/8.000000:n/1/0.000000/0.000000/8.000000/8.000000:R/180/180/0
|
|
||||||
modellist:id=%basaltic_blackstone_stair,state=facing:west/half:top/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/8.000000/16.000000/16.000000:w/1/0.000000/8.000000/16.000000/16.000000:e/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/8.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/1/8.000000/0.000000/16.000000/8.000000:w/1/8.000000/0.000000/16.000000/8.000000:e/1/0.000000/0.000000/8.000000/8.000000:n/1/0.000000/0.000000/8.000000/8.000000:R/180/270/0
|
|
||||||
modellist:id=%basaltic_blackstone_stair,state=facing:west/half:bottom/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/8.000000/16.000000/16.000000:w/1/0.000000/8.000000/16.000000/16.000000:e/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/8.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/1/8.000000/0.000000/16.000000/8.000000:w/1/0.000000/0.000000/16.000000/8.000000:e/1/0.000000/0.000000/16.000000/8.000000:n/1/0.000000/0.000000/8.000000/8.000000:R/0/180/0
|
|
||||||
modellist:id=%basaltic_blackstone_stair,state=facing:west/half:bottom/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/8.000000/16.000000/16.000000:w/1/0.000000/8.000000/16.000000/16.000000:e/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/8.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/1/8.000000/0.000000/16.000000/8.000000:w/1/0.000000/0.000000/16.000000/8.000000:e/1/0.000000/0.000000/16.000000/8.000000:n/1/0.000000/0.000000/8.000000/8.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/1/0.000000/0.000000/8.000000/8.000000:w/1/8.000000/0.000000/16.000000/8.000000:n/1/8.000000/0.000000/16.000000/8.000000:R/0/90/0
|
|
||||||
modellist:id=%basaltic_blackstone_stair,state=facing:west/half:bottom/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/8.000000/16.000000/16.000000:w/1/0.000000/8.000000/16.000000/16.000000:e/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/8.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/1/8.000000/0.000000/16.000000/8.000000:w/1/0.000000/0.000000/16.000000/8.000000:e/1/0.000000/0.000000/16.000000/8.000000:n/1/0.000000/0.000000/8.000000/8.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/1/0.000000/0.000000/8.000000/8.000000:w/1/8.000000/0.000000/16.000000/8.000000:n/1/8.000000/0.000000/16.000000/8.000000:R/0/180/0
|
|
||||||
modellist:id=%basaltic_blackstone_stair,state=facing:west/half:bottom/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/8.000000/16.000000/16.000000:w/1/0.000000/8.000000/16.000000/16.000000:e/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/8.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/1/8.000000/0.000000/16.000000/8.000000:w/1/8.000000/0.000000/16.000000/8.000000:e/1/0.000000/0.000000/8.000000/8.000000:n/1/0.000000/0.000000/8.000000/8.000000:R/0/90/0
|
|
||||||
modellist:id=%basaltic_blackstone_stair,state=facing:west/half:bottom/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/8.000000/16.000000/16.000000:w/1/0.000000/8.000000/16.000000/16.000000:e/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/8.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/1/8.000000/0.000000/16.000000/8.000000:w/1/8.000000/0.000000/16.000000/8.000000:e/1/0.000000/0.000000/8.000000/8.000000:n/1/0.000000/0.000000/8.000000/8.000000:R/0/180/0
|
|
||||||
modellist:id=%basaltic_blackstone_stair,state=facing:east/half:top/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/8.000000/16.000000/16.000000:w/1/0.000000/8.000000/16.000000/16.000000:e/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/8.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/1/8.000000/0.000000/16.000000/8.000000:w/1/0.000000/0.000000/16.000000/8.000000:e/1/0.000000/0.000000/16.000000/8.000000:n/1/0.000000/0.000000/8.000000/8.000000:R/180/0/0
|
|
||||||
modellist:id=%basaltic_blackstone_stair,state=facing:east/half:top/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/8.000000/16.000000/16.000000:w/1/0.000000/8.000000/16.000000/16.000000:e/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/8.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/1/8.000000/0.000000/16.000000/8.000000:w/1/0.000000/0.000000/16.000000/8.000000:e/1/0.000000/0.000000/16.000000/8.000000:n/1/0.000000/0.000000/8.000000/8.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/1/0.000000/0.000000/8.000000/8.000000:w/1/8.000000/0.000000/16.000000/8.000000:n/1/8.000000/0.000000/16.000000/8.000000:R/180/0/0
|
|
||||||
modellist:id=%basaltic_blackstone_stair,state=facing:east/half:top/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/8.000000/16.000000/16.000000:w/1/0.000000/8.000000/16.000000/16.000000:e/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/8.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/1/8.000000/0.000000/16.000000/8.000000:w/1/0.000000/0.000000/16.000000/8.000000:e/1/0.000000/0.000000/16.000000/8.000000:n/1/0.000000/0.000000/8.000000/8.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/1/0.000000/0.000000/8.000000/8.000000:w/1/8.000000/0.000000/16.000000/8.000000:n/1/8.000000/0.000000/16.000000/8.000000:R/180/90/0
|
|
||||||
modellist:id=%basaltic_blackstone_stair,state=facing:east/half:top/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/8.000000/16.000000/16.000000:w/1/0.000000/8.000000/16.000000/16.000000:e/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/8.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/1/8.000000/0.000000/16.000000/8.000000:w/1/8.000000/0.000000/16.000000/8.000000:e/1/0.000000/0.000000/8.000000/8.000000:n/1/0.000000/0.000000/8.000000/8.000000:R/180/0/0
|
|
||||||
modellist:id=%basaltic_blackstone_stair,state=facing:east/half:top/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/8.000000/16.000000/16.000000:w/1/0.000000/8.000000/16.000000/16.000000:e/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/8.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/1/8.000000/0.000000/16.000000/8.000000:w/1/8.000000/0.000000/16.000000/8.000000:e/1/0.000000/0.000000/8.000000/8.000000:n/1/0.000000/0.000000/8.000000/8.000000:R/180/90/0
|
|
||||||
modellist:id=%basaltic_blackstone_stair,state=facing:east/half:bottom/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/8.000000/16.000000/16.000000:w/1/0.000000/8.000000/16.000000/16.000000:e/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/8.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/1/8.000000/0.000000/16.000000/8.000000:w/1/0.000000/0.000000/16.000000/8.000000:e/1/0.000000/0.000000/16.000000/8.000000:n/1/0.000000/0.000000/8.000000/8.000000
|
|
||||||
modellist:id=%basaltic_blackstone_stair,state=facing:east/half:bottom/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/8.000000/16.000000/16.000000:w/1/0.000000/8.000000/16.000000/16.000000:e/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/8.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/1/8.000000/0.000000/16.000000/8.000000:w/1/0.000000/0.000000/16.000000/8.000000:e/1/0.000000/0.000000/16.000000/8.000000:n/1/0.000000/0.000000/8.000000/8.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/1/0.000000/0.000000/8.000000/8.000000:w/1/8.000000/0.000000/16.000000/8.000000:n/1/8.000000/0.000000/16.000000/8.000000:R/0/270/0
|
|
||||||
modellist:id=%basaltic_blackstone_stair,state=facing:east/half:bottom/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/8.000000/16.000000/16.000000:w/1/0.000000/8.000000/16.000000/16.000000:e/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/8.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/8.000000/0.000000/16.000000/16.000000:s/1/8.000000/0.000000/16.000000/8.000000:w/1/0.000000/0.000000/16.000000/8.000000:e/1/0.000000/0.000000/16.000000/8.000000:n/1/0.000000/0.000000/8.000000/8.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:u/0/0.000000/8.000000/8.000000/16.000000:s/1/0.000000/0.000000/8.000000/8.000000:w/1/8.000000/0.000000/16.000000/8.000000:n/1/8.000000/0.000000/16.000000/8.000000
|
|
||||||
modellist:id=%basaltic_blackstone_stair,state=facing:east/half:bottom/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/8.000000/16.000000/16.000000:w/1/0.000000/8.000000/16.000000/16.000000:e/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/8.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/1/8.000000/0.000000/16.000000/8.000000:w/1/8.000000/0.000000/16.000000/8.000000:e/1/0.000000/0.000000/8.000000/8.000000:n/1/0.000000/0.000000/8.000000/8.000000:R/0/270/0
|
|
||||||
modellist:id=%basaltic_blackstone_stair,state=facing:east/half:bottom/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/8.000000/16.000000/16.000000:w/1/0.000000/8.000000/16.000000/16.000000:e/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/8.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:u/0/8.000000/8.000000/16.000000/16.000000:s/1/8.000000/0.000000/16.000000/8.000000:w/1/8.000000/0.000000/16.000000/8.000000:e/1/0.000000/0.000000/8.000000/8.000000:n/1/0.000000/0.000000/8.000000/8.000000
|
|
||||||
modellist:id=%basalt_slab,state=type:top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/8.000000:w/1/0.000000/0.000000/16.000000/8.000000:e/1/0.000000/0.000000/16.000000/8.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/8.000000
|
|
||||||
modellist:id=%basalt_slab,state=type:bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/8.000000/16.000000/16.000000:w/1/0.000000/8.000000/16.000000/16.000000:e/1/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/8.000000/16.000000/16.000000
|
|
@ -1,68 +0,0 @@
|
|||||||
modname:piglin_expansion
|
|
||||||
|
|
||||||
texture:id=basalt_quadratiles,filename=assets/piglin_expansion/textures/blocks/basalt_quadratiles.png,xcount=1,ycount=1
|
|
||||||
texture:id=basalt_quadratiles_chiseled,filename=assets/piglin_expansion/textures/blocks/basalt_quadratiles_chiseled.png,xcount=1,ycount=1
|
|
||||||
texture:id=basalt_quadratiles_gilded,filename=assets/piglin_expansion/textures/blocks/basalt_quadratiles_gilded.png,xcount=1,ycount=1
|
|
||||||
texture:id=basaltic_blackstone_top,filename=assets/piglin_expansion/textures/blocks/basaltic_blackstone_top.png,xcount=1,ycount=1
|
|
||||||
texture:id=basaltic_blackstone_side,filename=assets/piglin_expansion/textures/blocks/basaltic_blackstone_side.png,xcount=1,ycount=1
|
|
||||||
texture:id=basalt_top,filename=assets/piglin_expansion/textures/blocks/basalt_top.png,xcount=1,ycount=1
|
|
||||||
texture:id=basalt_side,filename=assets/piglin_expansion/textures/blocks/basalt_side.png,xcount=1,ycount=1
|
|
||||||
block:id=%basalt_quadratiles,patch0=0:basalt_quadratiles,patch1=0:basalt_quadratiles,patch2=0:basalt_quadratiles,patch3=0:basalt_quadratiles,patch4=0:basalt_quadratiles,patch5=0:basalt_quadratiles,stdrot=true
|
|
||||||
block:id=%chiseled_basalt_quadratiles,patch0=0:basalt_quadratiles_chiseled,patch1=0:basalt_quadratiles_chiseled,patch2=0:basalt_quadratiles_chiseled,patch3=0:basalt_quadratiles_chiseled,patch4=0:basalt_quadratiles_chiseled,patch5=0:basalt_quadratiles_chiseled,stdrot=true
|
|
||||||
block:id=%gilded_basalt_quadratiles,patch0=0:basalt_quadratiles_gilded,patch1=0:basalt_quadratiles_gilded,patch2=0:basalt_quadratiles_gilded,patch3=0:basalt_quadratiles_gilded,patch4=0:basalt_quadratiles_gilded,patch5=0:basalt_quadratiles_gilded,stdrot=true
|
|
||||||
block:id=%basalt_quadratiles_slab,state=type:top,patch0=0:basalt_quadratiles,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%basalt_quadratiles_slab,state=type:bottom,patch0=0:basalt_quadratiles,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%basalt_quadratiles_slab,state=type:double,patch0=0:basalt_quadratiles,patch1=0:basalt_quadratiles,patch2=0:basalt_quadratiles,patch3=0:basalt_quadratiles,patch4=0:basalt_quadratiles,patch5=0:basalt_quadratiles,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%chiseled_basalt_quadratiles_slab,state=type:top,patch0=0:basalt_quadratiles_chiseled,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%chiseled_basalt_quadratiles_slab,state=type:bottom,patch0=0:basalt_quadratiles_chiseled,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%chiseled_basalt_quadratiles_slab,state=type:double,patch0=0:basalt_quadratiles_chiseled,patch1=0:basalt_quadratiles_chiseled,patch2=0:basalt_quadratiles_chiseled,patch3=0:basalt_quadratiles_chiseled,patch4=0:basalt_quadratiles_chiseled,patch5=0:basalt_quadratiles_chiseled,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gilded_basalt_quadratiles_slab,state=type:top,patch0=0:basalt_quadratiles_gilded,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gilded_basalt_quadratiles_slab,state=type:bottom,patch0=0:basalt_quadratiles_gilded,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gilded_basalt_quadratiles_slab,state=type:double,patch0=0:basalt_quadratiles_gilded,patch1=0:basalt_quadratiles_gilded,patch2=0:basalt_quadratiles_gilded,patch3=0:basalt_quadratiles_gilded,patch4=0:basalt_quadratiles_gilded,patch5=0:basalt_quadratiles_gilded,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%basaltic_blackstone,patch0=0:basaltic_blackstone_side,patch1=0:basaltic_blackstone_side,patch2=0:basaltic_blackstone_side,patch3=0:basaltic_blackstone_side,patch4=0:basaltic_blackstone_top,patch5=0:basaltic_blackstone_side,stdrot=true
|
|
||||||
block:id=%basaltic_blackstone_slab,state=type:top,patch0=0:basaltic_blackstone_top,patch1=0:basaltic_blackstone_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%basaltic_blackstone_slab,state=type:bottom,patch0=0:basaltic_blackstone_top,patch1=0:basaltic_blackstone_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%basaltic_blackstone_slab,state=type:double,patch0=0:basaltic_blackstone_side,patch1=0:basaltic_blackstone_side,patch2=0:basaltic_blackstone_side,patch3=0:basaltic_blackstone_side,patch4=0:basaltic_blackstone_top,patch5=0:basaltic_blackstone_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%basaltic_blackstone_stair,state=facing:north/half:top/shape:straight,patch0=0:basaltic_blackstone_top,patch1=0:basaltic_blackstone_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%basaltic_blackstone_stair,state=facing:north/half:top/shape:inner_left,patch0=0:basaltic_blackstone_top,patch1=0:basaltic_blackstone_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%basaltic_blackstone_stair,state=facing:north/half:top/shape:inner_right,patch0=0:basaltic_blackstone_top,patch1=0:basaltic_blackstone_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%basaltic_blackstone_stair,state=facing:north/half:top/shape:outer_left,patch0=0:basaltic_blackstone_top,patch1=0:basaltic_blackstone_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%basaltic_blackstone_stair,state=facing:north/half:top/shape:outer_right,patch0=0:basaltic_blackstone_top,patch1=0:basaltic_blackstone_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%basaltic_blackstone_stair,state=facing:north/half:bottom/shape:straight,patch0=0:basaltic_blackstone_top,patch1=0:basaltic_blackstone_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%basaltic_blackstone_stair,state=facing:north/half:bottom/shape:inner_left,patch0=0:basaltic_blackstone_top,patch1=0:basaltic_blackstone_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%basaltic_blackstone_stair,state=facing:north/half:bottom/shape:inner_right,patch0=0:basaltic_blackstone_top,patch1=0:basaltic_blackstone_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%basaltic_blackstone_stair,state=facing:north/half:bottom/shape:outer_left,patch0=0:basaltic_blackstone_top,patch1=0:basaltic_blackstone_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%basaltic_blackstone_stair,state=facing:north/half:bottom/shape:outer_right,patch0=0:basaltic_blackstone_top,patch1=0:basaltic_blackstone_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%basaltic_blackstone_stair,state=facing:south/half:top/shape:straight,patch0=0:basaltic_blackstone_top,patch1=0:basaltic_blackstone_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%basaltic_blackstone_stair,state=facing:south/half:top/shape:inner_left,patch0=0:basaltic_blackstone_top,patch1=0:basaltic_blackstone_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%basaltic_blackstone_stair,state=facing:south/half:top/shape:inner_right,patch0=0:basaltic_blackstone_top,patch1=0:basaltic_blackstone_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%basaltic_blackstone_stair,state=facing:south/half:top/shape:outer_left,patch0=0:basaltic_blackstone_top,patch1=0:basaltic_blackstone_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%basaltic_blackstone_stair,state=facing:south/half:top/shape:outer_right,patch0=0:basaltic_blackstone_top,patch1=0:basaltic_blackstone_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%basaltic_blackstone_stair,state=facing:south/half:bottom/shape:straight,patch0=0:basaltic_blackstone_top,patch1=0:basaltic_blackstone_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%basaltic_blackstone_stair,state=facing:south/half:bottom/shape:inner_left,patch0=0:basaltic_blackstone_top,patch1=0:basaltic_blackstone_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%basaltic_blackstone_stair,state=facing:south/half:bottom/shape:inner_right,patch0=0:basaltic_blackstone_top,patch1=0:basaltic_blackstone_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%basaltic_blackstone_stair,state=facing:south/half:bottom/shape:outer_left,patch0=0:basaltic_blackstone_top,patch1=0:basaltic_blackstone_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%basaltic_blackstone_stair,state=facing:south/half:bottom/shape:outer_right,patch0=0:basaltic_blackstone_top,patch1=0:basaltic_blackstone_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%basaltic_blackstone_stair,state=facing:west/half:top/shape:straight,patch0=0:basaltic_blackstone_top,patch1=0:basaltic_blackstone_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%basaltic_blackstone_stair,state=facing:west/half:top/shape:inner_left,patch0=0:basaltic_blackstone_top,patch1=0:basaltic_blackstone_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%basaltic_blackstone_stair,state=facing:west/half:top/shape:inner_right,patch0=0:basaltic_blackstone_top,patch1=0:basaltic_blackstone_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%basaltic_blackstone_stair,state=facing:west/half:top/shape:outer_left,patch0=0:basaltic_blackstone_top,patch1=0:basaltic_blackstone_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%basaltic_blackstone_stair,state=facing:west/half:top/shape:outer_right,patch0=0:basaltic_blackstone_top,patch1=0:basaltic_blackstone_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%basaltic_blackstone_stair,state=facing:west/half:bottom/shape:straight,patch0=0:basaltic_blackstone_top,patch1=0:basaltic_blackstone_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%basaltic_blackstone_stair,state=facing:west/half:bottom/shape:inner_left,patch0=0:basaltic_blackstone_top,patch1=0:basaltic_blackstone_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%basaltic_blackstone_stair,state=facing:west/half:bottom/shape:inner_right,patch0=0:basaltic_blackstone_top,patch1=0:basaltic_blackstone_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%basaltic_blackstone_stair,state=facing:west/half:bottom/shape:outer_left,patch0=0:basaltic_blackstone_top,patch1=0:basaltic_blackstone_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%basaltic_blackstone_stair,state=facing:west/half:bottom/shape:outer_right,patch0=0:basaltic_blackstone_top,patch1=0:basaltic_blackstone_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%basaltic_blackstone_stair,state=facing:east/half:top/shape:straight,patch0=0:basaltic_blackstone_top,patch1=0:basaltic_blackstone_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%basaltic_blackstone_stair,state=facing:east/half:top/shape:inner_left,patch0=0:basaltic_blackstone_top,patch1=0:basaltic_blackstone_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%basaltic_blackstone_stair,state=facing:east/half:top/shape:inner_right,patch0=0:basaltic_blackstone_top,patch1=0:basaltic_blackstone_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%basaltic_blackstone_stair,state=facing:east/half:top/shape:outer_left,patch0=0:basaltic_blackstone_top,patch1=0:basaltic_blackstone_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%basaltic_blackstone_stair,state=facing:east/half:top/shape:outer_right,patch0=0:basaltic_blackstone_top,patch1=0:basaltic_blackstone_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%basaltic_blackstone_stair,state=facing:east/half:bottom/shape:straight,patch0=0:basaltic_blackstone_top,patch1=0:basaltic_blackstone_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%basaltic_blackstone_stair,state=facing:east/half:bottom/shape:inner_left,patch0=0:basaltic_blackstone_top,patch1=0:basaltic_blackstone_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%basaltic_blackstone_stair,state=facing:east/half:bottom/shape:inner_right,patch0=0:basaltic_blackstone_top,patch1=0:basaltic_blackstone_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%basaltic_blackstone_stair,state=facing:east/half:bottom/shape:outer_left,patch0=0:basaltic_blackstone_top,patch1=0:basaltic_blackstone_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%basaltic_blackstone_stair,state=facing:east/half:bottom/shape:outer_right,patch0=0:basaltic_blackstone_top,patch1=0:basaltic_blackstone_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%basalt_slab,state=type:top,patch0=0:basalt_top,patch1=0:basalt_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%basalt_slab,state=type:bottom,patch0=0:basalt_top,patch1=0:basalt_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%basalt_slab,state=type:double,patch0=0:basalt_side,patch1=0:basalt_side,patch2=0:basalt_side,patch3=0:basalt_side,patch4=0:basalt_top,patch5=0:basalt_side,transparency=SEMITRANSPARENT,stdrot=true
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -1,44 +0,0 @@
|
|||||||
modname:projecte
|
|
||||||
|
|
||||||
modellist:id=%collector_mk1,state=facing:south,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/1:n/2:R/0/180/0
|
|
||||||
modellist:id=%collector_mk1,state=facing:west,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/1:n/2:R/0/270/0
|
|
||||||
modellist:id=%collector_mk1,state=facing:east,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/1:n/2:R/0/90/0
|
|
||||||
modellist:id=%collector_mk2,state=facing:south,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/1:n/2:R/0/180/0
|
|
||||||
modellist:id=%collector_mk2,state=facing:west,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/1:n/2:R/0/270/0
|
|
||||||
modellist:id=%collector_mk2,state=facing:east,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/1:n/2:R/0/90/0
|
|
||||||
modellist:id=%collector_mk3,state=facing:south,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/1:n/2:R/0/180/0
|
|
||||||
modellist:id=%collector_mk3,state=facing:west,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/1:n/2:R/0/270/0
|
|
||||||
modellist:id=%collector_mk3,state=facing:east,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/1:n/2:R/0/90/0
|
|
||||||
modellist:id=%dm_pedestal,box=3.000000/0.000000/3.000000:13.000000/2.000000/13.000000:u/0/3.000000/3.000000/10.000000/10.000000:s/0/3.000000/0.000000/10.000000/2.000000:w/0/3.000000/0.000000/10.000000/2.000000:e/0/3.000000/0.000000/10.000000/2.000000:d/0/3.000000/3.000000/10.000000/10.000000:n/0/3.000000/0.000000/10.000000/2.000000,box=6.000000/2.000000/6.000000:10.000000/9.000000/10.000000:s/0/6.000000/4.000000/4.000000/7.000000:w/0/6.000000/4.000000/4.000000/7.000000:e/0/6.000000/4.000000/4.000000/7.000000:n/0/6.000000/4.000000/4.000000/7.000000,box=5.000000/9.000000/5.000000:11.000000/10.000000/11.000000:u/0/6.000000/6.000000/6.000000/6.000000:s/0/0.000000/0.000000/6.000000/1.000000:w/0/0.000000/0.000000/6.000000/1.000000:e/0/0.000000/0.000000/6.000000/1.000000:d/0/6.000000/6.000000/6.000000/6.000000:n/0/0.000000/0.000000/6.000000/1.000000
|
|
||||||
modellist:id=%dm_furnace,state=facing:south/lit:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/0:w/0:e/0:d/0:n/1:R/0/180/0
|
|
||||||
modellist:id=%dm_furnace,state=facing:south/lit:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/0:w/0:e/0:d/0:n/1:R/0/180/0
|
|
||||||
modellist:id=%dm_furnace,state=facing:west/lit:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/0:w/0:e/0:d/0:n/1:R/0/270/0
|
|
||||||
modellist:id=%dm_furnace,state=facing:west/lit:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/0:w/0:e/0:d/0:n/1:R/0/270/0
|
|
||||||
modellist:id=%dm_furnace,state=facing:east/lit:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/0:w/0:e/0:d/0:n/1:R/0/90/0
|
|
||||||
modellist:id=%dm_furnace,state=facing:east/lit:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/0:w/0:e/0:d/0:n/1:R/0/90/0
|
|
||||||
modellist:id=%rm_furnace,state=facing:south/lit:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/0:w/0:e/0:d/0:n/1:R/0/180/0
|
|
||||||
modellist:id=%rm_furnace,state=facing:south/lit:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/0:w/0:e/0:d/0:n/1:R/0/180/0
|
|
||||||
modellist:id=%rm_furnace,state=facing:west/lit:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/0:w/0:e/0:d/0:n/1:R/0/270/0
|
|
||||||
modellist:id=%rm_furnace,state=facing:west/lit:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/0:w/0:e/0:d/0:n/1:R/0/270/0
|
|
||||||
modellist:id=%rm_furnace,state=facing:east/lit:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/0:w/0:e/0:d/0:n/1:R/0/90/0
|
|
||||||
modellist:id=%rm_furnace,state=facing:east/lit:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/0:w/0:e/0:d/0:n/1:R/0/90/0
|
|
||||||
modellist:id=%interdiction_torch,box=7.000000/0.000000/7.000000/false:9.000000/10.000000/9.000000:u/0/7.000000/6.000000/9.000000/8.000000:d/0/7.000000/13.000000/9.000000/15.000000,box=7.000000/0.000000/0.000000/false:9.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/7.000000/false:16.000000/16.000000/9.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%wall_interdiction_torch,state=facing:north,box=-1.000000/3.500000/7.000000/false:1.000000/13.500000/9.000000/0.000000/0.000000/-22.500000/0.000000/3.500000/8.000000:u/0/7.000000/6.000000/9.000000/8.000000:d/0/7.000000/13.000000/9.000000/15.000000:R/0/270/0,box=-1.000000/3.500000/0.000000/false:1.000000/19.500000/16.000000/0.000000/0.000000/-22.500000/0.000000/3.500000/8.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=-8.000000/3.500000/7.000000/false:8.000000/19.500000/9.000000/0.000000/0.000000/-22.500000/0.000000/3.500000/8.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0
|
|
||||||
modellist:id=%wall_interdiction_torch,state=facing:south,box=-1.000000/3.500000/7.000000/false:1.000000/13.500000/9.000000/0.000000/0.000000/-22.500000/0.000000/3.500000/8.000000:u/0/7.000000/6.000000/9.000000/8.000000:d/0/7.000000/13.000000/9.000000/15.000000:R/0/90/0,box=-1.000000/3.500000/0.000000/false:1.000000/19.500000/16.000000/0.000000/0.000000/-22.500000/0.000000/3.500000/8.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=-8.000000/3.500000/7.000000/false:8.000000/19.500000/9.000000/0.000000/0.000000/-22.500000/0.000000/3.500000/8.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0
|
|
||||||
modellist:id=%wall_interdiction_torch,state=facing:west,box=-1.000000/3.500000/7.000000/false:1.000000/13.500000/9.000000/0.000000/0.000000/-22.500000/0.000000/3.500000/8.000000:u/0/7.000000/6.000000/9.000000/8.000000:d/0/7.000000/13.000000/9.000000/15.000000:R/0/180/0,box=-1.000000/3.500000/0.000000/false:1.000000/19.500000/16.000000/0.000000/0.000000/-22.500000/0.000000/3.500000/8.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=-8.000000/3.500000/7.000000/false:8.000000/19.500000/9.000000/0.000000/0.000000/-22.500000/0.000000/3.500000/8.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0
|
|
||||||
modellist:id=%wall_interdiction_torch,state=facing:east,box=-1.000000/3.500000/7.000000/false:1.000000/13.500000/9.000000/0.000000/0.000000/-22.500000/0.000000/3.500000/8.000000:u/0/7.000000/6.000000/9.000000/8.000000:d/0/7.000000/13.000000/9.000000/15.000000,box=-1.000000/3.500000/0.000000/false:1.000000/19.500000/16.000000/0.000000/0.000000/-22.500000/0.000000/3.500000/8.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000,box=-8.000000/3.500000/7.000000/false:8.000000/19.500000/9.000000/0.000000/0.000000/-22.500000/0.000000/3.500000/8.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000
|
|
||||||
modellist:id=%transmutation_table,state=facing:north,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1:R/90/0/0
|
|
||||||
modellist:id=%transmutation_table,state=facing:east,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1:R/90/90/0
|
|
||||||
modellist:id=%transmutation_table,state=facing:south,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1:R/90/180/0
|
|
||||||
modellist:id=%transmutation_table,state=facing:west,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1:R/90/270/0
|
|
||||||
modellist:id=%transmutation_table,state=facing:up,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1
|
|
||||||
modellist:id=%transmutation_table,state=facing:down,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1:R/180/0/0
|
|
||||||
modellist:id=%relay_mk1,state=facing:south,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/1:n/2:R/0/180/0
|
|
||||||
modellist:id=%relay_mk1,state=facing:west,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/1:n/2:R/0/270/0
|
|
||||||
modellist:id=%relay_mk1,state=facing:east,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/1:n/2:R/0/90/0
|
|
||||||
modellist:id=%relay_mk2,state=facing:south,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/1:n/2:R/0/180/0
|
|
||||||
modellist:id=%relay_mk2,state=facing:west,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/1:n/2:R/0/270/0
|
|
||||||
modellist:id=%relay_mk2,state=facing:east,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/1:n/2:R/0/90/0
|
|
||||||
modellist:id=%relay_mk3,state=facing:south,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/1:n/2:R/0/180/0
|
|
||||||
modellist:id=%relay_mk3,state=facing:west,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/1:n/2:R/0/270/0
|
|
||||||
modellist:id=%relay_mk3,state=facing:east,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/1:n/2:R/0/90/0
|
|
@ -1,88 +0,0 @@
|
|||||||
modname:projecte
|
|
||||||
|
|
||||||
texture:id=alchemical_coal_block,filename=assets/projecte/textures/block/alchemical_coal_block.png,xcount=1,ycount=1
|
|
||||||
texture:id=mobius_fuel_block,filename=assets/projecte/textures/block/mobius_fuel_block.png,xcount=1,ycount=1
|
|
||||||
texture:id=aeternalis_fuel_block,filename=assets/projecte/textures/block/aeternalis_fuel_block.png,xcount=1,ycount=1
|
|
||||||
texture:id=top_1,filename=assets/projecte/textures/block/collectors/top_1.png,xcount=1,ycount=1
|
|
||||||
texture:id=other,filename=assets/projecte/textures/block/collectors/other.png,xcount=1,ycount=1
|
|
||||||
texture:id=front,filename=assets/projecte/textures/block/collectors/front.png,xcount=1,ycount=1
|
|
||||||
texture:id=top_2,filename=assets/projecte/textures/block/collectors/top_2.png,xcount=1,ycount=1
|
|
||||||
texture:id=top_3,filename=assets/projecte/textures/block/collectors/top_3.png,xcount=1,ycount=1
|
|
||||||
texture:id=dark_matter_block,filename=assets/projecte/textures/block/dark_matter_block.png,xcount=1,ycount=1
|
|
||||||
texture:id=dm_on,filename=assets/projecte/textures/block/matter_furnace/dm_on.png,xcount=1,ycount=1
|
|
||||||
texture:id=dm_off,filename=assets/projecte/textures/block/matter_furnace/dm_off.png,xcount=1,ycount=1
|
|
||||||
texture:id=red_matter_block,filename=assets/projecte/textures/block/red_matter_block.png,xcount=1,ycount=1
|
|
||||||
texture:id=rm_on,filename=assets/projecte/textures/block/matter_furnace/rm_on.png,xcount=1,ycount=1
|
|
||||||
texture:id=rm_off,filename=assets/projecte/textures/block/matter_furnace/rm_off.png,xcount=1,ycount=1
|
|
||||||
texture:id=interdiction_torch,filename=assets/projecte/textures/block/interdiction_torch.png,xcount=1,ycount=1
|
|
||||||
texture:id=top,filename=assets/projecte/textures/block/explosives/top.png,xcount=1,ycount=1
|
|
||||||
texture:id=nova_side,filename=assets/projecte/textures/block/explosives/nova_side.png,xcount=1,ycount=1
|
|
||||||
texture:id=bottom,filename=assets/projecte/textures/block/explosives/bottom.png,xcount=1,ycount=1
|
|
||||||
texture:id=nova1_side,filename=assets/projecte/textures/block/explosives/nova1_side.png,xcount=1,ycount=1
|
|
||||||
texture:id=top1,filename=assets/projecte/textures/block/transmutation_stone/top.png,xcount=1,ycount=1
|
|
||||||
texture:id=side,filename=assets/projecte/textures/block/transmutation_stone/side.png,xcount=1,ycount=1
|
|
||||||
texture:id=bottom1,filename=assets/projecte/textures/block/transmutation_stone/bottom.png,xcount=1,ycount=1
|
|
||||||
texture:id=top_11,filename=assets/projecte/textures/block/relays/top_1.png,xcount=1,ycount=1
|
|
||||||
texture:id=other1,filename=assets/projecte/textures/block/relays/other.png,xcount=1,ycount=1
|
|
||||||
texture:id=front1,filename=assets/projecte/textures/block/relays/front.png,xcount=1,ycount=1
|
|
||||||
texture:id=top_21,filename=assets/projecte/textures/block/relays/top_2.png,xcount=1,ycount=1
|
|
||||||
texture:id=top_31,filename=assets/projecte/textures/block/relays/top_3.png,xcount=1,ycount=1
|
|
||||||
block:id=%alchemical_coal_block,patch0=0:alchemical_coal_block,patch1=0:alchemical_coal_block,patch2=0:alchemical_coal_block,patch3=0:alchemical_coal_block,patch4=0:alchemical_coal_block,patch5=0:alchemical_coal_block,stdrot=true
|
|
||||||
block:id=%mobius_fuel_block,patch0=0:mobius_fuel_block,patch1=0:mobius_fuel_block,patch2=0:mobius_fuel_block,patch3=0:mobius_fuel_block,patch4=0:mobius_fuel_block,patch5=0:mobius_fuel_block,stdrot=true
|
|
||||||
block:id=%aeternalis_fuel_block,patch0=0:aeternalis_fuel_block,patch1=0:aeternalis_fuel_block,patch2=0:aeternalis_fuel_block,patch3=0:aeternalis_fuel_block,patch4=0:aeternalis_fuel_block,patch5=0:aeternalis_fuel_block,stdrot=true
|
|
||||||
block:id=%collector_mk1,state=facing:north,patch0=0:other,patch1=0:other,patch2=0:front,patch3=0:other,patch4=0:top_1,patch5=0:other,stdrot=true
|
|
||||||
block:id=%collector_mk1,state=facing:south,patch0=0:top_1,patch1=0:other,patch2=0:front,stdrot=true
|
|
||||||
block:id=%collector_mk1,state=facing:west,patch0=0:top_1,patch1=0:other,patch2=0:front,stdrot=true
|
|
||||||
block:id=%collector_mk1,state=facing:east,patch0=0:top_1,patch1=0:other,patch2=0:front,stdrot=true
|
|
||||||
block:id=%collector_mk2,state=facing:north,patch0=0:other,patch1=0:other,patch2=0:front,patch3=0:other,patch4=0:top_2,patch5=0:other,stdrot=true
|
|
||||||
block:id=%collector_mk2,state=facing:south,patch0=0:top_2,patch1=0:other,patch2=0:front,stdrot=true
|
|
||||||
block:id=%collector_mk2,state=facing:west,patch0=0:top_2,patch1=0:other,patch2=0:front,stdrot=true
|
|
||||||
block:id=%collector_mk2,state=facing:east,patch0=0:top_2,patch1=0:other,patch2=0:front,stdrot=true
|
|
||||||
block:id=%collector_mk3,state=facing:north,patch0=0:other,patch1=0:other,patch2=0:front,patch3=0:other,patch4=0:top_3,patch5=0:other,stdrot=true
|
|
||||||
block:id=%collector_mk3,state=facing:south,patch0=0:top_3,patch1=0:other,patch2=0:front,stdrot=true
|
|
||||||
block:id=%collector_mk3,state=facing:west,patch0=0:top_3,patch1=0:other,patch2=0:front,stdrot=true
|
|
||||||
block:id=%collector_mk3,state=facing:east,patch0=0:top_3,patch1=0:other,patch2=0:front,stdrot=true
|
|
||||||
block:id=%dm_pedestal,patch0=0:dark_matter_block,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%dm_furnace,state=facing:north/lit:true,patch0=0:dark_matter_block,patch1=0:dark_matter_block,patch2=0:dm_on,patch3=0:dark_matter_block,patch4=0:dark_matter_block,patch5=0:dark_matter_block,stdrot=true
|
|
||||||
block:id=%dm_furnace,state=facing:north/lit:false,patch0=0:dark_matter_block,patch1=0:dark_matter_block,patch2=0:dm_off,patch3=0:dark_matter_block,patch4=0:dark_matter_block,patch5=0:dark_matter_block,stdrot=true
|
|
||||||
block:id=%dm_furnace,state=facing:south/lit:true,patch0=0:dark_matter_block,patch1=0:dm_on,stdrot=true
|
|
||||||
block:id=%dm_furnace,state=facing:south/lit:false,patch0=0:dark_matter_block,patch1=0:dm_off,stdrot=true
|
|
||||||
block:id=%dm_furnace,state=facing:west/lit:true,patch0=0:dark_matter_block,patch1=0:dm_on,stdrot=true
|
|
||||||
block:id=%dm_furnace,state=facing:west/lit:false,patch0=0:dark_matter_block,patch1=0:dm_off,stdrot=true
|
|
||||||
block:id=%dm_furnace,state=facing:east/lit:true,patch0=0:dark_matter_block,patch1=0:dm_on,stdrot=true
|
|
||||||
block:id=%dm_furnace,state=facing:east/lit:false,patch0=0:dark_matter_block,patch1=0:dm_off,stdrot=true
|
|
||||||
block:id=%rm_furnace,state=facing:north/lit:true,patch0=0:red_matter_block,patch1=0:red_matter_block,patch2=0:rm_on,patch3=0:red_matter_block,patch4=0:red_matter_block,patch5=0:red_matter_block,stdrot=true
|
|
||||||
block:id=%rm_furnace,state=facing:north/lit:false,patch0=0:red_matter_block,patch1=0:red_matter_block,patch2=0:rm_off,patch3=0:red_matter_block,patch4=0:red_matter_block,patch5=0:red_matter_block,stdrot=true
|
|
||||||
block:id=%rm_furnace,state=facing:south/lit:true,patch0=0:red_matter_block,patch1=0:rm_on,stdrot=true
|
|
||||||
block:id=%rm_furnace,state=facing:south/lit:false,patch0=0:red_matter_block,patch1=0:rm_off,stdrot=true
|
|
||||||
block:id=%rm_furnace,state=facing:west/lit:true,patch0=0:red_matter_block,patch1=0:rm_on,stdrot=true
|
|
||||||
block:id=%rm_furnace,state=facing:west/lit:false,patch0=0:red_matter_block,patch1=0:rm_off,stdrot=true
|
|
||||||
block:id=%rm_furnace,state=facing:east/lit:true,patch0=0:red_matter_block,patch1=0:rm_on,stdrot=true
|
|
||||||
block:id=%rm_furnace,state=facing:east/lit:false,patch0=0:red_matter_block,patch1=0:rm_off,stdrot=true
|
|
||||||
block:id=%dark_matter_block,patch0=0:dark_matter_block,patch1=0:dark_matter_block,patch2=0:dark_matter_block,patch3=0:dark_matter_block,patch4=0:dark_matter_block,patch5=0:dark_matter_block,stdrot=true
|
|
||||||
block:id=%red_matter_block,patch0=0:red_matter_block,patch1=0:red_matter_block,patch2=0:red_matter_block,patch3=0:red_matter_block,patch4=0:red_matter_block,patch5=0:red_matter_block,stdrot=true
|
|
||||||
block:id=%interdiction_torch,patch0=0:interdiction_torch,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%wall_interdiction_torch,state=facing:north,patch0=0:interdiction_torch,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%wall_interdiction_torch,state=facing:south,patch0=0:interdiction_torch,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%wall_interdiction_torch,state=facing:west,patch0=0:interdiction_torch,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%wall_interdiction_torch,state=facing:east,patch0=0:interdiction_torch,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%nova_catalyst,patch0=0:nova_side,patch1=0:bottom,patch2=0:nova_side,patch3=0:nova_side,patch4=0:top,patch5=0:nova_side,stdrot=true
|
|
||||||
block:id=%nova_cataclysm,patch0=0:nova1_side,patch1=0:bottom,patch2=0:nova1_side,patch3=0:nova1_side,patch4=0:top,patch5=0:nova1_side,stdrot=true
|
|
||||||
block:id=%transmutation_table,state=facing:north,patch0=0:top1,patch1=0:side,patch2=0:bottom1,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%transmutation_table,state=facing:east,patch0=0:top1,patch1=0:side,patch2=0:bottom1,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%transmutation_table,state=facing:south,patch0=0:top1,patch1=0:side,patch2=0:bottom1,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%transmutation_table,state=facing:west,patch0=0:top1,patch1=0:side,patch2=0:bottom1,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%transmutation_table,state=facing:up,patch0=0:top1,patch1=0:side,patch2=0:bottom1,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%transmutation_table,state=facing:down,patch0=0:top1,patch1=0:side,patch2=0:bottom1,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%relay_mk1,state=facing:north,patch0=0:other1,patch1=0:other1,patch2=0:front1,patch3=0:other1,patch4=0:top_11,patch5=0:other1,stdrot=true
|
|
||||||
block:id=%relay_mk1,state=facing:south,patch0=0:top_11,patch1=0:other1,patch2=0:front1,stdrot=true
|
|
||||||
block:id=%relay_mk1,state=facing:west,patch0=0:top_11,patch1=0:other1,patch2=0:front1,stdrot=true
|
|
||||||
block:id=%relay_mk1,state=facing:east,patch0=0:top_11,patch1=0:other1,patch2=0:front1,stdrot=true
|
|
||||||
block:id=%relay_mk2,state=facing:north,patch0=0:other1,patch1=0:other1,patch2=0:front1,patch3=0:other1,patch4=0:top_21,patch5=0:other1,stdrot=true
|
|
||||||
block:id=%relay_mk2,state=facing:south,patch0=0:top_21,patch1=0:other1,patch2=0:front1,stdrot=true
|
|
||||||
block:id=%relay_mk2,state=facing:west,patch0=0:top_21,patch1=0:other1,patch2=0:front1,stdrot=true
|
|
||||||
block:id=%relay_mk2,state=facing:east,patch0=0:top_21,patch1=0:other1,patch2=0:front1,stdrot=true
|
|
||||||
block:id=%relay_mk3,state=facing:north,patch0=0:other1,patch1=0:other1,patch2=0:front1,patch3=0:other1,patch4=0:top_31,patch5=0:other1,stdrot=true
|
|
||||||
block:id=%relay_mk3,state=facing:south,patch0=0:top_31,patch1=0:other1,patch2=0:front1,stdrot=true
|
|
||||||
block:id=%relay_mk3,state=facing:west,patch0=0:top_31,patch1=0:other1,patch2=0:front1,stdrot=true
|
|
||||||
block:id=%relay_mk3,state=facing:east,patch0=0:top_31,patch1=0:other1,patch2=0:front1,stdrot=true
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
@ -1,11 +0,0 @@
|
|||||||
modname:rftoolsbase
|
|
||||||
|
|
||||||
modellist:id=%information_screen,state=facing:north,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/15.000000/16.000000/16.000000:w/1/0.000000/15.000000/16.000000/16.000000:e/1/0.000000/15.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/15.000000/16.000000/16.000000:R/90/0/0
|
|
||||||
modellist:id=%information_screen,state=facing:south,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/15.000000/16.000000/16.000000:w/1/0.000000/15.000000/16.000000/16.000000:e/1/0.000000/15.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/15.000000/16.000000/16.000000:R/90/180/0
|
|
||||||
modellist:id=%information_screen,state=facing:west,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/15.000000/16.000000/16.000000:w/1/0.000000/15.000000/16.000000/16.000000:e/1/0.000000/15.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/15.000000/16.000000/16.000000:R/90/270/0
|
|
||||||
modellist:id=%information_screen,state=facing:east,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/15.000000/16.000000/16.000000:w/1/0.000000/15.000000/16.000000/16.000000:e/1/0.000000/15.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/15.000000/16.000000/16.000000:R/90/90/0
|
|
||||||
modellist:id=%machine_infuser,state=facing:east,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/0/90/0
|
|
||||||
modellist:id=%machine_infuser,state=facing:south,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/0/180/0
|
|
||||||
modellist:id=%machine_infuser,state=facing:west,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/0/270/0
|
|
||||||
modellist:id=%machine_infuser,state=facing:up,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/-90/0/0
|
|
||||||
modellist:id=%machine_infuser,state=facing:down,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/90/0/0
|
|
@ -1,24 +0,0 @@
|
|||||||
modname:rftoolsbase
|
|
||||||
|
|
||||||
texture:id=information_screen,filename=assets/rftoolsbase/textures/block/information_screen.png,xcount=1,ycount=1
|
|
||||||
texture:id=top,filename=assets/rftoolsbase/textures/block/top.png,xcount=1,ycount=1
|
|
||||||
texture:id=machinetop,filename=assets/rftoolsbase/textures/block/base/machinetop.png,xcount=1,ycount=1
|
|
||||||
texture:id=machineside,filename=assets/rftoolsbase/textures/block/base/machineside.png,xcount=1,ycount=1
|
|
||||||
texture:id=machinebottom,filename=assets/rftoolsbase/textures/block/base/machinebottom.png,xcount=1,ycount=1
|
|
||||||
texture:id=infuser,filename=assets/rftoolsbase/textures/block/infuser.png,xcount=1,ycount=1
|
|
||||||
texture:id=dimensionalshard_overworld,filename=assets/rftoolsbase/textures/block/ores/dimensionalshard_overworld.png,xcount=1,ycount=1
|
|
||||||
texture:id=dimensionalshard_nether,filename=assets/rftoolsbase/textures/block/ores/dimensionalshard_nether.png,xcount=1,ycount=1
|
|
||||||
texture:id=dimensionalshard_end,filename=assets/rftoolsbase/textures/block/ores/dimensionalshard_end.png,xcount=1,ycount=1
|
|
||||||
block:id=%information_screen,state=facing:north,patch0=0:information_screen,patch1=0:top,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%information_screen,state=facing:south,patch0=0:information_screen,patch1=0:top,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%information_screen,state=facing:west,patch0=0:information_screen,patch1=0:top,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%information_screen,state=facing:east,patch0=0:information_screen,patch1=0:top,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%machine_infuser,state=facing:north,patch0=0:machineside,patch1=0:machinebottom,patch2=0:infuser,patch3=0:machineside,patch4=0:machinetop,patch5=0:machineside,stdrot=true
|
|
||||||
block:id=%machine_infuser,state=facing:east,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:infuser,stdrot=true
|
|
||||||
block:id=%machine_infuser,state=facing:south,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:infuser,stdrot=true
|
|
||||||
block:id=%machine_infuser,state=facing:west,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:infuser,stdrot=true
|
|
||||||
block:id=%machine_infuser,state=facing:up,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:infuser,stdrot=true
|
|
||||||
block:id=%machine_infuser,state=facing:down,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:infuser,stdrot=true
|
|
||||||
block:id=%dimensionalshard_overworld,patch0=0:dimensionalshard_overworld,patch1=0:dimensionalshard_overworld,patch2=0:dimensionalshard_overworld,patch3=0:dimensionalshard_overworld,patch4=0:dimensionalshard_overworld,patch5=0:dimensionalshard_overworld,stdrot=true
|
|
||||||
block:id=%dimensionalshard_nether,patch0=0:dimensionalshard_nether,patch1=0:dimensionalshard_nether,patch2=0:dimensionalshard_nether,patch3=0:dimensionalshard_nether,patch4=0:dimensionalshard_nether,patch5=0:dimensionalshard_nether,stdrot=true
|
|
||||||
block:id=%dimensionalshard_end,patch0=0:dimensionalshard_end,patch1=0:dimensionalshard_end,patch2=0:dimensionalshard_end,patch3=0:dimensionalshard_end,patch4=0:dimensionalshard_end,patch5=0:dimensionalshard_end,stdrot=true
|
|
@ -1,18 +0,0 @@
|
|||||||
modname:rftoolsbuilder
|
|
||||||
|
|
||||||
modellist:id=%builder,state=facing:south,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/0/180/0
|
|
||||||
modellist:id=%builder,state=facing:west,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/0/270/0
|
|
||||||
modellist:id=%builder,state=facing:east,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/0/90/0
|
|
||||||
modellist:id=%shielding_solid
|
|
||||||
modellist:id=%shielding_translucent
|
|
||||||
modellist:id=%shielding_cutout
|
|
||||||
modellist:id=%mover,state=facing:east,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/0/90/0
|
|
||||||
modellist:id=%mover,state=facing:south,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/0/180/0
|
|
||||||
modellist:id=%mover,state=facing:west,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/0/270/0
|
|
||||||
modellist:id=%mover,state=facing:up,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/-90/0/0
|
|
||||||
modellist:id=%mover,state=facing:down,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/90/0/0
|
|
||||||
modellist:id=%vehicle_builder,state=facing:east,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/0/90/0
|
|
||||||
modellist:id=%vehicle_builder,state=facing:south,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/0/180/0
|
|
||||||
modellist:id=%vehicle_builder,state=facing:west,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/0/270/0
|
|
||||||
modellist:id=%vehicle_builder,state=facing:up,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/-90/0/0
|
|
||||||
modellist:id=%vehicle_builder,state=facing:down,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/90/0/0
|
|
@ -1,50 +0,0 @@
|
|||||||
modname:rftoolsbuilder
|
|
||||||
|
|
||||||
texture:id=supportblock,filename=assets/rftoolsbuilder/textures/block/supportblock.png,xcount=1,ycount=1
|
|
||||||
texture:id=supportyellowblock,filename=assets/rftoolsbuilder/textures/block/supportyellowblock.png,xcount=1,ycount=1
|
|
||||||
texture:id=supportredblock,filename=assets/rftoolsbuilder/textures/block/supportredblock.png,xcount=1,ycount=1
|
|
||||||
texture:id=machinespacechamber,filename=assets/rftoolsbuilder/textures/block/machinespacechamber.png,xcount=1,ycount=1
|
|
||||||
texture:id=machinespacechambercontroller,filename=assets/rftoolsbuilder/textures/block/machinespacechambercontroller.png,xcount=1,ycount=1
|
|
||||||
texture:id=machinetop,filename=assets/rftoolsbase/textures/block/base/machinetop.png,xcount=1,ycount=1
|
|
||||||
texture:id=machineside,filename=assets/rftoolsbase/textures/block/base/machineside.png,xcount=1,ycount=1
|
|
||||||
texture:id=machinebottom,filename=assets/rftoolsbase/textures/block/base/machinebottom.png,xcount=1,ycount=1
|
|
||||||
texture:id=machinebuilder,filename=assets/rftoolsbuilder/textures/block/machinebuilder.png,xcount=1,ycount=1
|
|
||||||
texture:id=machineshieldprojector,filename=assets/rftoolsbuilder/textures/block/machineshieldprojector.png,xcount=1,ycount=1
|
|
||||||
texture:id=shieldtemplate,filename=assets/rftoolsbuilder/textures/block/shieldtemplate.png,xcount=1,ycount=1
|
|
||||||
texture:id=shieldtemplate1,filename=assets/rftoolsbuilder/textures/block/shieldtemplate1.png,xcount=1,ycount=1
|
|
||||||
texture:id=shieldtemplate2,filename=assets/rftoolsbuilder/textures/block/shieldtemplate2.png,xcount=1,ycount=1
|
|
||||||
texture:id=shieldtemplate3,filename=assets/rftoolsbuilder/textures/block/shieldtemplate3.png,xcount=1,ycount=1
|
|
||||||
texture:id=machinemover,filename=assets/rftoolsbuilder/textures/block/machinemover.png,xcount=1,ycount=1
|
|
||||||
texture:id=machinevehiclebuilder,filename=assets/rftoolsbuilder/textures/block/machinevehiclebuilder.png,xcount=1,ycount=1
|
|
||||||
block:id=%support_block,state=status:ok,patch0=0:supportblock,patch1=0:supportblock,patch2=0:supportblock,patch3=0:supportblock,patch4=0:supportblock,patch5=0:supportblock,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%support_block,state=status:warn,patch0=0:supportyellowblock,patch1=0:supportyellowblock,patch2=0:supportyellowblock,patch3=0:supportyellowblock,patch4=0:supportyellowblock,patch5=0:supportyellowblock,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%support_block,state=status:error,patch0=0:supportredblock,patch1=0:supportredblock,patch2=0:supportredblock,patch3=0:supportredblock,patch4=0:supportredblock,patch5=0:supportredblock,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%space_chamber,patch0=0:machinespacechamber,patch1=0:machinespacechamber,patch2=0:machinespacechamber,patch3=0:machinespacechamber,patch4=0:machinespacechamber,patch5=0:machinespacechamber,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%space_chamber_controller,patch0=0:machinespacechambercontroller,patch1=0:machinespacechambercontroller,patch2=0:machinespacechambercontroller,patch3=0:machinespacechambercontroller,patch4=0:machinespacechambercontroller,patch5=0:machinespacechambercontroller,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%builder,state=facing:north,patch0=0:machineside,patch1=0:machinebottom,patch2=0:machinebuilder,patch3=0:machineside,patch4=0:machinetop,patch5=0:machineside,stdrot=true
|
|
||||||
block:id=%builder,state=facing:south,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machinebuilder,stdrot=true
|
|
||||||
block:id=%builder,state=facing:west,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machinebuilder,stdrot=true
|
|
||||||
block:id=%builder,state=facing:east,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machinebuilder,stdrot=true
|
|
||||||
block:id=%shield_block1,patch0=0:machineshieldprojector,patch1=0:machineshieldprojector,patch2=0:machineshieldprojector,patch3=0:machineshieldprojector,patch4=0:machineshieldprojector,patch5=0:machineshieldprojector,stdrot=true
|
|
||||||
block:id=%shield_block2,patch0=0:machineshieldprojector,patch1=0:machineshieldprojector,patch2=0:machineshieldprojector,patch3=0:machineshieldprojector,patch4=0:machineshieldprojector,patch5=0:machineshieldprojector,stdrot=true
|
|
||||||
block:id=%shield_block3,patch0=0:machineshieldprojector,patch1=0:machineshieldprojector,patch2=0:machineshieldprojector,patch3=0:machineshieldprojector,patch4=0:machineshieldprojector,patch5=0:machineshieldprojector,stdrot=true
|
|
||||||
block:id=%shield_block4,patch0=0:machineshieldprojector,patch1=0:machineshieldprojector,patch2=0:machineshieldprojector,patch3=0:machineshieldprojector,patch4=0:machineshieldprojector,patch5=0:machineshieldprojector,stdrot=true
|
|
||||||
block:id=%blue_shield_template_block,patch0=0:shieldtemplate,patch1=0:shieldtemplate,patch2=0:shieldtemplate,patch3=0:shieldtemplate,patch4=0:shieldtemplate,patch5=0:shieldtemplate,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%red_shield_template_block,patch0=0:shieldtemplate1,patch1=0:shieldtemplate1,patch2=0:shieldtemplate1,patch3=0:shieldtemplate1,patch4=0:shieldtemplate1,patch5=0:shieldtemplate1,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%green_shield_template_block,patch0=0:shieldtemplate2,patch1=0:shieldtemplate2,patch2=0:shieldtemplate2,patch3=0:shieldtemplate2,patch4=0:shieldtemplate2,patch5=0:shieldtemplate2,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%yellow_shield_template_block,patch0=0:shieldtemplate3,patch1=0:shieldtemplate3,patch2=0:shieldtemplate3,patch3=0:shieldtemplate3,patch4=0:shieldtemplate3,patch5=0:shieldtemplate3,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%shielding_solid,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%shielding_translucent,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%shielding_cutout,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%mover,state=facing:north,patch0=0:machineside,patch1=0:machinebottom,patch2=0:machinemover,patch3=0:machineside,patch4=0:machinetop,patch5=0:machineside,stdrot=true
|
|
||||||
block:id=%mover,state=facing:east,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machinemover,stdrot=true
|
|
||||||
block:id=%mover,state=facing:south,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machinemover,stdrot=true
|
|
||||||
block:id=%mover,state=facing:west,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machinemover,stdrot=true
|
|
||||||
block:id=%mover,state=facing:up,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machinemover,stdrot=true
|
|
||||||
block:id=%mover,state=facing:down,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machinemover,stdrot=true
|
|
||||||
block:id=%vehicle_builder,state=facing:north,patch0=0:machineside,patch1=0:machinebottom,patch2=0:machinevehiclebuilder,patch3=0:machineside,patch4=0:machinetop,patch5=0:machineside,stdrot=true
|
|
||||||
block:id=%vehicle_builder,state=facing:east,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machinevehiclebuilder,stdrot=true
|
|
||||||
block:id=%vehicle_builder,state=facing:south,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machinevehiclebuilder,stdrot=true
|
|
||||||
block:id=%vehicle_builder,state=facing:west,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machinevehiclebuilder,stdrot=true
|
|
||||||
block:id=%vehicle_builder,state=facing:up,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machinevehiclebuilder,stdrot=true
|
|
||||||
block:id=%vehicle_builder,state=facing:down,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machinevehiclebuilder,stdrot=true
|
|
@ -1,28 +0,0 @@
|
|||||||
modname:rftoolscontrol
|
|
||||||
|
|
||||||
modellist:id=%craftingstation,state=facing:east,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/0/90/0
|
|
||||||
modellist:id=%craftingstation,state=facing:south,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/0/180/0
|
|
||||||
modellist:id=%craftingstation,state=facing:west,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/0/270/0
|
|
||||||
modellist:id=%craftingstation,state=facing:up,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/-90/0/0
|
|
||||||
modellist:id=%craftingstation,state=facing:down,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/90/0/0
|
|
||||||
modellist:id=%tank,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000
|
|
||||||
modellist:id=%processor,state=facing:east,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/0/90/0
|
|
||||||
modellist:id=%processor,state=facing:south,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/0/180/0
|
|
||||||
modellist:id=%processor,state=facing:west,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/0/270/0
|
|
||||||
modellist:id=%processor,state=facing:up,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/-90/0/0
|
|
||||||
modellist:id=%processor,state=facing:down,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/90/0/0
|
|
||||||
modellist:id=%programmer,state=facing:east,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/0/90/0
|
|
||||||
modellist:id=%programmer,state=facing:south,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/0/180/0
|
|
||||||
modellist:id=%programmer,state=facing:west,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/0/270/0
|
|
||||||
modellist:id=%programmer,state=facing:up,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/-90/0/0
|
|
||||||
modellist:id=%programmer,state=facing:down,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/90/0/0
|
|
||||||
modellist:id=%node,state=facing:east,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/0/90/0
|
|
||||||
modellist:id=%node,state=facing:south,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/0/180/0
|
|
||||||
modellist:id=%node,state=facing:west,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/0/270/0
|
|
||||||
modellist:id=%node,state=facing:up,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/-90/0/0
|
|
||||||
modellist:id=%node,state=facing:down,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/90/0/0
|
|
||||||
modellist:id=%workbench,state=facing:east,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/0/90/0
|
|
||||||
modellist:id=%workbench,state=facing:south,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/0/180/0
|
|
||||||
modellist:id=%workbench,state=facing:west,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/0/270/0
|
|
||||||
modellist:id=%workbench,state=facing:up,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/-90/0/0
|
|
||||||
modellist:id=%workbench,state=facing:down,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/90/0/0
|
|
@ -1,41 +0,0 @@
|
|||||||
modname:rftoolscontrol
|
|
||||||
|
|
||||||
texture:id=machinetop,filename=assets/rftoolsbase/textures/block/base/machinetop.png,xcount=1,ycount=1
|
|
||||||
texture:id=machineside,filename=assets/rftoolsbase/textures/block/base/machineside.png,xcount=1,ycount=1
|
|
||||||
texture:id=machinebottom,filename=assets/rftoolsbase/textures/block/base/machinebottom.png,xcount=1,ycount=1
|
|
||||||
texture:id=machinecraftingstation,filename=assets/rftoolscontrol/textures/block/machinecraftingstation.png,xcount=1,ycount=1
|
|
||||||
texture:id=machineprocessoron,filename=assets/rftoolscontrol/textures/block/machineprocessoron.png,xcount=1,ycount=1
|
|
||||||
texture:id=machineprogrammer,filename=assets/rftoolscontrol/textures/block/machineprogrammer.png,xcount=1,ycount=1
|
|
||||||
texture:id=machinenode,filename=assets/rftoolscontrol/textures/block/machinenode.png,xcount=1,ycount=1
|
|
||||||
texture:id=machineworkbench,filename=assets/rftoolscontrol/textures/block/machineworkbench.png,xcount=1,ycount=1
|
|
||||||
block:id=%craftingstation,state=facing:north,patch0=0:machineside,patch1=0:machinebottom,patch2=0:machinecraftingstation,patch3=0:machineside,patch4=0:machinetop,patch5=0:machineside,stdrot=true
|
|
||||||
block:id=%craftingstation,state=facing:east,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machinecraftingstation,stdrot=true
|
|
||||||
block:id=%craftingstation,state=facing:south,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machinecraftingstation,stdrot=true
|
|
||||||
block:id=%craftingstation,state=facing:west,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machinecraftingstation,stdrot=true
|
|
||||||
block:id=%craftingstation,state=facing:up,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machinecraftingstation,stdrot=true
|
|
||||||
block:id=%craftingstation,state=facing:down,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machinecraftingstation,stdrot=true
|
|
||||||
block:id=%tank,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%processor,state=facing:north,patch0=0:machineside,patch1=0:machinebottom,patch2=0:machineprocessoron,patch3=0:machineside,patch4=0:machinetop,patch5=0:machineside,stdrot=true
|
|
||||||
block:id=%processor,state=facing:east,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machineprocessoron,stdrot=true
|
|
||||||
block:id=%processor,state=facing:south,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machineprocessoron,stdrot=true
|
|
||||||
block:id=%processor,state=facing:west,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machineprocessoron,stdrot=true
|
|
||||||
block:id=%processor,state=facing:up,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machineprocessoron,stdrot=true
|
|
||||||
block:id=%processor,state=facing:down,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machineprocessoron,stdrot=true
|
|
||||||
block:id=%programmer,state=facing:north,patch0=0:machineside,patch1=0:machinebottom,patch2=0:machineprogrammer,patch3=0:machineside,patch4=0:machinetop,patch5=0:machineside,stdrot=true
|
|
||||||
block:id=%programmer,state=facing:east,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machineprogrammer,stdrot=true
|
|
||||||
block:id=%programmer,state=facing:south,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machineprogrammer,stdrot=true
|
|
||||||
block:id=%programmer,state=facing:west,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machineprogrammer,stdrot=true
|
|
||||||
block:id=%programmer,state=facing:up,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machineprogrammer,stdrot=true
|
|
||||||
block:id=%programmer,state=facing:down,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machineprogrammer,stdrot=true
|
|
||||||
block:id=%node,state=facing:north,patch0=0:machineside,patch1=0:machinebottom,patch2=0:machinenode,patch3=0:machineside,patch4=0:machinetop,patch5=0:machineside,stdrot=true
|
|
||||||
block:id=%node,state=facing:east,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machinenode,stdrot=true
|
|
||||||
block:id=%node,state=facing:south,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machinenode,stdrot=true
|
|
||||||
block:id=%node,state=facing:west,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machinenode,stdrot=true
|
|
||||||
block:id=%node,state=facing:up,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machinenode,stdrot=true
|
|
||||||
block:id=%node,state=facing:down,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machinenode,stdrot=true
|
|
||||||
block:id=%workbench,state=facing:north,patch0=0:machineside,patch1=0:machinebottom,patch2=0:machineworkbench,patch3=0:machineside,patch4=0:machinetop,patch5=0:machineside,stdrot=true
|
|
||||||
block:id=%workbench,state=facing:east,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machineworkbench,stdrot=true
|
|
||||||
block:id=%workbench,state=facing:south,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machineworkbench,stdrot=true
|
|
||||||
block:id=%workbench,state=facing:west,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machineworkbench,stdrot=true
|
|
||||||
block:id=%workbench,state=facing:up,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machineworkbench,stdrot=true
|
|
||||||
block:id=%workbench,state=facing:down,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machineworkbench,stdrot=true
|
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -1,332 +0,0 @@
|
|||||||
modname:rftoolsutility
|
|
||||||
|
|
||||||
modellist:id=%crafter1,state=facing:east,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/0/90/0
|
|
||||||
modellist:id=%crafter1,state=facing:south,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/0/180/0
|
|
||||||
modellist:id=%crafter1,state=facing:west,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/0/270/0
|
|
||||||
modellist:id=%crafter1,state=facing:up,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/-90/0/0
|
|
||||||
modellist:id=%crafter1,state=facing:down,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/90/0/0
|
|
||||||
modellist:id=%crafter2,state=facing:east,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/0/90/0
|
|
||||||
modellist:id=%crafter2,state=facing:south,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/0/180/0
|
|
||||||
modellist:id=%crafter2,state=facing:west,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/0/270/0
|
|
||||||
modellist:id=%crafter2,state=facing:up,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/-90/0/0
|
|
||||||
modellist:id=%crafter2,state=facing:down,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/90/0/0
|
|
||||||
modellist:id=%crafter3,state=facing:east,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/0/90/0
|
|
||||||
modellist:id=%crafter3,state=facing:south,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/0/180/0
|
|
||||||
modellist:id=%crafter3,state=facing:west,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/0/270/0
|
|
||||||
modellist:id=%crafter3,state=facing:up,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/-90/0/0
|
|
||||||
modellist:id=%crafter3,state=facing:down,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/90/0/0
|
|
||||||
modellist:id=%analog,state=logic_facing:down_tonorth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1
|
|
||||||
modellist:id=%analog,state=logic_facing:down_tosouth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u180/0:s/1:w/1:e/1:d/2:n/1
|
|
||||||
modellist:id=%analog,state=logic_facing:down_towest,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u270/0:s/1:w/1:e/1:d/2:n/1
|
|
||||||
modellist:id=%analog,state=logic_facing:down_toeast,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u90/0:s/1:w/1:e/1:d/2:n/1
|
|
||||||
modellist:id=%analog,state=logic_facing:up_tonorth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u180/0:s/1:w/1:e/1:d/2:n/1:R/180/0/0
|
|
||||||
modellist:id=%analog,state=logic_facing:up_tosouth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1:R/180/0/0
|
|
||||||
modellist:id=%analog,state=logic_facing:up_towest,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u270/0:s/1:w/1:e/1:d/2:n/1:R/180/0/0
|
|
||||||
modellist:id=%analog,state=logic_facing:up_toeast,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u90/0:s/1:w/1:e/1:d/2:n/1:R/180/0/0
|
|
||||||
modellist:id=%analog,state=logic_facing:north_towest,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u270/0:s/1:w/1:e/1:d/2:n/1:R/-90/0/0
|
|
||||||
modellist:id=%analog,state=logic_facing:north_toeast,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u90/0:s/1:w/1:e/1:d/2:n/1:R/-90/0/0
|
|
||||||
modellist:id=%analog,state=logic_facing:north_toup,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1:R/-90/0/0
|
|
||||||
modellist:id=%analog,state=logic_facing:north_todown,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u180/0:s/1:w/1:e/1:d/2:n/1:R/-90/0/0
|
|
||||||
modellist:id=%analog,state=logic_facing:south_towest,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u270/0:s/1:w/1:e/1:d/2:n/1:R/90/0/0
|
|
||||||
modellist:id=%analog,state=logic_facing:south_toeast,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u90/0:s/1:w/1:e/1:d/2:n/1:R/90/0/0
|
|
||||||
modellist:id=%analog,state=logic_facing:south_toup,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u180/0:s/1:w/1:e/1:d/2:n/1:R/90/0/0
|
|
||||||
modellist:id=%analog,state=logic_facing:south_todown,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1:R/90/0/0
|
|
||||||
modellist:id=%analog,state=logic_facing:west_tonorth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u270/0:s/1:w/1:e/1:d/2:n/1:R/90/90/0
|
|
||||||
modellist:id=%analog,state=logic_facing:west_tosouth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u90/0:s/1:w/1:e/1:d/2:n/1:R/90/90/0
|
|
||||||
modellist:id=%analog,state=logic_facing:west_toup,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u180/0:s/1:w/1:e/1:d/2:n/1:R/90/90/0
|
|
||||||
modellist:id=%analog,state=logic_facing:west_todown,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1:R/90/90/0
|
|
||||||
modellist:id=%analog,state=logic_facing:east_tonorth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u90/0:s/1:w/1:e/1:d/2:n/1:R/90/270/0
|
|
||||||
modellist:id=%analog,state=logic_facing:east_tosouth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u270/0:s/1:w/1:e/1:d/2:n/1:R/90/270/0
|
|
||||||
modellist:id=%analog,state=logic_facing:east_toup,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u180/0:s/1:w/1:e/1:d/2:n/1:R/90/270/0
|
|
||||||
modellist:id=%analog,state=logic_facing:east_todown,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1:R/90/270/0
|
|
||||||
modellist:id=%counter,state=logic_facing:down_tonorth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1
|
|
||||||
modellist:id=%counter,state=logic_facing:down_tosouth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u180/0:s/1:w/1:e/1:d/2:n/1
|
|
||||||
modellist:id=%counter,state=logic_facing:down_towest,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u270/0:s/1:w/1:e/1:d/2:n/1
|
|
||||||
modellist:id=%counter,state=logic_facing:down_toeast,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u90/0:s/1:w/1:e/1:d/2:n/1
|
|
||||||
modellist:id=%counter,state=logic_facing:up_tonorth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u180/0:s/1:w/1:e/1:d/2:n/1:R/180/0/0
|
|
||||||
modellist:id=%counter,state=logic_facing:up_tosouth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1:R/180/0/0
|
|
||||||
modellist:id=%counter,state=logic_facing:up_towest,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u270/0:s/1:w/1:e/1:d/2:n/1:R/180/0/0
|
|
||||||
modellist:id=%counter,state=logic_facing:up_toeast,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u90/0:s/1:w/1:e/1:d/2:n/1:R/180/0/0
|
|
||||||
modellist:id=%counter,state=logic_facing:north_towest,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u270/0:s/1:w/1:e/1:d/2:n/1:R/-90/0/0
|
|
||||||
modellist:id=%counter,state=logic_facing:north_toeast,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u90/0:s/1:w/1:e/1:d/2:n/1:R/-90/0/0
|
|
||||||
modellist:id=%counter,state=logic_facing:north_toup,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1:R/-90/0/0
|
|
||||||
modellist:id=%counter,state=logic_facing:north_todown,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u180/0:s/1:w/1:e/1:d/2:n/1:R/-90/0/0
|
|
||||||
modellist:id=%counter,state=logic_facing:south_towest,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u270/0:s/1:w/1:e/1:d/2:n/1:R/90/0/0
|
|
||||||
modellist:id=%counter,state=logic_facing:south_toeast,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u90/0:s/1:w/1:e/1:d/2:n/1:R/90/0/0
|
|
||||||
modellist:id=%counter,state=logic_facing:south_toup,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u180/0:s/1:w/1:e/1:d/2:n/1:R/90/0/0
|
|
||||||
modellist:id=%counter,state=logic_facing:south_todown,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1:R/90/0/0
|
|
||||||
modellist:id=%counter,state=logic_facing:west_tonorth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u270/0:s/1:w/1:e/1:d/2:n/1:R/90/90/0
|
|
||||||
modellist:id=%counter,state=logic_facing:west_tosouth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u90/0:s/1:w/1:e/1:d/2:n/1:R/90/90/0
|
|
||||||
modellist:id=%counter,state=logic_facing:west_toup,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u180/0:s/1:w/1:e/1:d/2:n/1:R/90/90/0
|
|
||||||
modellist:id=%counter,state=logic_facing:west_todown,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1:R/90/90/0
|
|
||||||
modellist:id=%counter,state=logic_facing:east_tonorth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u90/0:s/1:w/1:e/1:d/2:n/1:R/90/270/0
|
|
||||||
modellist:id=%counter,state=logic_facing:east_tosouth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u270/0:s/1:w/1:e/1:d/2:n/1:R/90/270/0
|
|
||||||
modellist:id=%counter,state=logic_facing:east_toup,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u180/0:s/1:w/1:e/1:d/2:n/1:R/90/270/0
|
|
||||||
modellist:id=%counter,state=logic_facing:east_todown,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1:R/90/270/0
|
|
||||||
modellist:id=%digit,state=logic_facing:down_tonorth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1
|
|
||||||
modellist:id=%digit,state=logic_facing:down_tosouth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u180/0:s/1:w/1:e/1:d/2:n/1
|
|
||||||
modellist:id=%digit,state=logic_facing:down_towest,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u270/0:s/1:w/1:e/1:d/2:n/1
|
|
||||||
modellist:id=%digit,state=logic_facing:down_toeast,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u90/0:s/1:w/1:e/1:d/2:n/1
|
|
||||||
modellist:id=%digit,state=logic_facing:up_tonorth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u180/0:s/1:w/1:e/1:d/2:n/1:R/180/0/0
|
|
||||||
modellist:id=%digit,state=logic_facing:up_tosouth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1:R/180/0/0
|
|
||||||
modellist:id=%digit,state=logic_facing:up_towest,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u270/0:s/1:w/1:e/1:d/2:n/1:R/180/0/0
|
|
||||||
modellist:id=%digit,state=logic_facing:up_toeast,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u90/0:s/1:w/1:e/1:d/2:n/1:R/180/0/0
|
|
||||||
modellist:id=%digit,state=logic_facing:north_towest,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u270/0:s/1:w/1:e/1:d/2:n/1:R/-90/0/0
|
|
||||||
modellist:id=%digit,state=logic_facing:north_toeast,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u90/0:s/1:w/1:e/1:d/2:n/1:R/-90/0/0
|
|
||||||
modellist:id=%digit,state=logic_facing:north_toup,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1:R/-90/0/0
|
|
||||||
modellist:id=%digit,state=logic_facing:north_todown,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u180/0:s/1:w/1:e/1:d/2:n/1:R/-90/0/0
|
|
||||||
modellist:id=%digit,state=logic_facing:south_towest,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u270/0:s/1:w/1:e/1:d/2:n/1:R/90/0/0
|
|
||||||
modellist:id=%digit,state=logic_facing:south_toeast,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u90/0:s/1:w/1:e/1:d/2:n/1:R/90/0/0
|
|
||||||
modellist:id=%digit,state=logic_facing:south_toup,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u180/0:s/1:w/1:e/1:d/2:n/1:R/90/0/0
|
|
||||||
modellist:id=%digit,state=logic_facing:south_todown,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1:R/90/0/0
|
|
||||||
modellist:id=%digit,state=logic_facing:west_tonorth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u270/0:s/1:w/1:e/1:d/2:n/1:R/90/90/0
|
|
||||||
modellist:id=%digit,state=logic_facing:west_tosouth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u90/0:s/1:w/1:e/1:d/2:n/1:R/90/90/0
|
|
||||||
modellist:id=%digit,state=logic_facing:west_toup,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u180/0:s/1:w/1:e/1:d/2:n/1:R/90/90/0
|
|
||||||
modellist:id=%digit,state=logic_facing:west_todown,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1:R/90/90/0
|
|
||||||
modellist:id=%digit,state=logic_facing:east_tonorth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u90/0:s/1:w/1:e/1:d/2:n/1:R/90/270/0
|
|
||||||
modellist:id=%digit,state=logic_facing:east_tosouth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u270/0:s/1:w/1:e/1:d/2:n/1:R/90/270/0
|
|
||||||
modellist:id=%digit,state=logic_facing:east_toup,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u180/0:s/1:w/1:e/1:d/2:n/1:R/90/270/0
|
|
||||||
modellist:id=%digit,state=logic_facing:east_todown,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1:R/90/270/0
|
|
||||||
modellist:id=%invchecker,state=logic_facing:down_tonorth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1
|
|
||||||
modellist:id=%invchecker,state=logic_facing:down_tosouth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u180/0:s/1:w/1:e/1:d/2:n/1
|
|
||||||
modellist:id=%invchecker,state=logic_facing:down_towest,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u270/0:s/1:w/1:e/1:d/2:n/1
|
|
||||||
modellist:id=%invchecker,state=logic_facing:down_toeast,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u90/0:s/1:w/1:e/1:d/2:n/1
|
|
||||||
modellist:id=%invchecker,state=logic_facing:up_tonorth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u180/0:s/1:w/1:e/1:d/2:n/1:R/180/0/0
|
|
||||||
modellist:id=%invchecker,state=logic_facing:up_tosouth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1:R/180/0/0
|
|
||||||
modellist:id=%invchecker,state=logic_facing:up_towest,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u270/0:s/1:w/1:e/1:d/2:n/1:R/180/0/0
|
|
||||||
modellist:id=%invchecker,state=logic_facing:up_toeast,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u90/0:s/1:w/1:e/1:d/2:n/1:R/180/0/0
|
|
||||||
modellist:id=%invchecker,state=logic_facing:north_towest,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u270/0:s/1:w/1:e/1:d/2:n/1:R/-90/0/0
|
|
||||||
modellist:id=%invchecker,state=logic_facing:north_toeast,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u90/0:s/1:w/1:e/1:d/2:n/1:R/-90/0/0
|
|
||||||
modellist:id=%invchecker,state=logic_facing:north_toup,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1:R/-90/0/0
|
|
||||||
modellist:id=%invchecker,state=logic_facing:north_todown,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u180/0:s/1:w/1:e/1:d/2:n/1:R/-90/0/0
|
|
||||||
modellist:id=%invchecker,state=logic_facing:south_towest,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u270/0:s/1:w/1:e/1:d/2:n/1:R/90/0/0
|
|
||||||
modellist:id=%invchecker,state=logic_facing:south_toeast,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u90/0:s/1:w/1:e/1:d/2:n/1:R/90/0/0
|
|
||||||
modellist:id=%invchecker,state=logic_facing:south_toup,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u180/0:s/1:w/1:e/1:d/2:n/1:R/90/0/0
|
|
||||||
modellist:id=%invchecker,state=logic_facing:south_todown,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1:R/90/0/0
|
|
||||||
modellist:id=%invchecker,state=logic_facing:west_tonorth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u270/0:s/1:w/1:e/1:d/2:n/1:R/90/90/0
|
|
||||||
modellist:id=%invchecker,state=logic_facing:west_tosouth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u90/0:s/1:w/1:e/1:d/2:n/1:R/90/90/0
|
|
||||||
modellist:id=%invchecker,state=logic_facing:west_toup,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u180/0:s/1:w/1:e/1:d/2:n/1:R/90/90/0
|
|
||||||
modellist:id=%invchecker,state=logic_facing:west_todown,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1:R/90/90/0
|
|
||||||
modellist:id=%invchecker,state=logic_facing:east_tonorth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u90/0:s/1:w/1:e/1:d/2:n/1:R/90/270/0
|
|
||||||
modellist:id=%invchecker,state=logic_facing:east_tosouth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u270/0:s/1:w/1:e/1:d/2:n/1:R/90/270/0
|
|
||||||
modellist:id=%invchecker,state=logic_facing:east_toup,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u180/0:s/1:w/1:e/1:d/2:n/1:R/90/270/0
|
|
||||||
modellist:id=%invchecker,state=logic_facing:east_todown,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1:R/90/270/0
|
|
||||||
modellist:id=%sensor,state=logic_facing:down_tonorth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1
|
|
||||||
modellist:id=%sensor,state=logic_facing:down_tosouth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u180/0:s/1:w/1:e/1:d/2:n/1
|
|
||||||
modellist:id=%sensor,state=logic_facing:down_towest,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u270/0:s/1:w/1:e/1:d/2:n/1
|
|
||||||
modellist:id=%sensor,state=logic_facing:down_toeast,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u90/0:s/1:w/1:e/1:d/2:n/1
|
|
||||||
modellist:id=%sensor,state=logic_facing:up_tonorth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u180/0:s/1:w/1:e/1:d/2:n/1:R/180/0/0
|
|
||||||
modellist:id=%sensor,state=logic_facing:up_tosouth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1:R/180/0/0
|
|
||||||
modellist:id=%sensor,state=logic_facing:up_towest,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u270/0:s/1:w/1:e/1:d/2:n/1:R/180/0/0
|
|
||||||
modellist:id=%sensor,state=logic_facing:up_toeast,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u90/0:s/1:w/1:e/1:d/2:n/1:R/180/0/0
|
|
||||||
modellist:id=%sensor,state=logic_facing:north_towest,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u270/0:s/1:w/1:e/1:d/2:n/1:R/-90/0/0
|
|
||||||
modellist:id=%sensor,state=logic_facing:north_toeast,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u90/0:s/1:w/1:e/1:d/2:n/1:R/-90/0/0
|
|
||||||
modellist:id=%sensor,state=logic_facing:north_toup,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1:R/-90/0/0
|
|
||||||
modellist:id=%sensor,state=logic_facing:north_todown,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u180/0:s/1:w/1:e/1:d/2:n/1:R/-90/0/0
|
|
||||||
modellist:id=%sensor,state=logic_facing:south_towest,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u270/0:s/1:w/1:e/1:d/2:n/1:R/90/0/0
|
|
||||||
modellist:id=%sensor,state=logic_facing:south_toeast,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u90/0:s/1:w/1:e/1:d/2:n/1:R/90/0/0
|
|
||||||
modellist:id=%sensor,state=logic_facing:south_toup,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u180/0:s/1:w/1:e/1:d/2:n/1:R/90/0/0
|
|
||||||
modellist:id=%sensor,state=logic_facing:south_todown,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1:R/90/0/0
|
|
||||||
modellist:id=%sensor,state=logic_facing:west_tonorth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u270/0:s/1:w/1:e/1:d/2:n/1:R/90/90/0
|
|
||||||
modellist:id=%sensor,state=logic_facing:west_tosouth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u90/0:s/1:w/1:e/1:d/2:n/1:R/90/90/0
|
|
||||||
modellist:id=%sensor,state=logic_facing:west_toup,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u180/0:s/1:w/1:e/1:d/2:n/1:R/90/90/0
|
|
||||||
modellist:id=%sensor,state=logic_facing:west_todown,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1:R/90/90/0
|
|
||||||
modellist:id=%sensor,state=logic_facing:east_tonorth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u90/0:s/1:w/1:e/1:d/2:n/1:R/90/270/0
|
|
||||||
modellist:id=%sensor,state=logic_facing:east_tosouth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u270/0:s/1:w/1:e/1:d/2:n/1:R/90/270/0
|
|
||||||
modellist:id=%sensor,state=logic_facing:east_toup,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u180/0:s/1:w/1:e/1:d/2:n/1:R/90/270/0
|
|
||||||
modellist:id=%sensor,state=logic_facing:east_todown,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1:R/90/270/0
|
|
||||||
modellist:id=%sequencer,state=logic_facing:down_tonorth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1
|
|
||||||
modellist:id=%sequencer,state=logic_facing:down_tosouth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u180/0:s/1:w/1:e/1:d/2:n/1
|
|
||||||
modellist:id=%sequencer,state=logic_facing:down_towest,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u270/0:s/1:w/1:e/1:d/2:n/1
|
|
||||||
modellist:id=%sequencer,state=logic_facing:down_toeast,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u90/0:s/1:w/1:e/1:d/2:n/1
|
|
||||||
modellist:id=%sequencer,state=logic_facing:up_tonorth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u180/0:s/1:w/1:e/1:d/2:n/1:R/180/0/0
|
|
||||||
modellist:id=%sequencer,state=logic_facing:up_tosouth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1:R/180/0/0
|
|
||||||
modellist:id=%sequencer,state=logic_facing:up_towest,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u270/0:s/1:w/1:e/1:d/2:n/1:R/180/0/0
|
|
||||||
modellist:id=%sequencer,state=logic_facing:up_toeast,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u90/0:s/1:w/1:e/1:d/2:n/1:R/180/0/0
|
|
||||||
modellist:id=%sequencer,state=logic_facing:north_towest,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u270/0:s/1:w/1:e/1:d/2:n/1:R/-90/0/0
|
|
||||||
modellist:id=%sequencer,state=logic_facing:north_toeast,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u90/0:s/1:w/1:e/1:d/2:n/1:R/-90/0/0
|
|
||||||
modellist:id=%sequencer,state=logic_facing:north_toup,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1:R/-90/0/0
|
|
||||||
modellist:id=%sequencer,state=logic_facing:north_todown,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u180/0:s/1:w/1:e/1:d/2:n/1:R/-90/0/0
|
|
||||||
modellist:id=%sequencer,state=logic_facing:south_towest,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u270/0:s/1:w/1:e/1:d/2:n/1:R/90/0/0
|
|
||||||
modellist:id=%sequencer,state=logic_facing:south_toeast,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u90/0:s/1:w/1:e/1:d/2:n/1:R/90/0/0
|
|
||||||
modellist:id=%sequencer,state=logic_facing:south_toup,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u180/0:s/1:w/1:e/1:d/2:n/1:R/90/0/0
|
|
||||||
modellist:id=%sequencer,state=logic_facing:south_todown,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1:R/90/0/0
|
|
||||||
modellist:id=%sequencer,state=logic_facing:west_tonorth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u270/0:s/1:w/1:e/1:d/2:n/1:R/90/90/0
|
|
||||||
modellist:id=%sequencer,state=logic_facing:west_tosouth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u90/0:s/1:w/1:e/1:d/2:n/1:R/90/90/0
|
|
||||||
modellist:id=%sequencer,state=logic_facing:west_toup,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u180/0:s/1:w/1:e/1:d/2:n/1:R/90/90/0
|
|
||||||
modellist:id=%sequencer,state=logic_facing:west_todown,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1:R/90/90/0
|
|
||||||
modellist:id=%sequencer,state=logic_facing:east_tonorth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u90/0:s/1:w/1:e/1:d/2:n/1:R/90/270/0
|
|
||||||
modellist:id=%sequencer,state=logic_facing:east_tosouth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u270/0:s/1:w/1:e/1:d/2:n/1:R/90/270/0
|
|
||||||
modellist:id=%sequencer,state=logic_facing:east_toup,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u180/0:s/1:w/1:e/1:d/2:n/1:R/90/270/0
|
|
||||||
modellist:id=%sequencer,state=logic_facing:east_todown,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1:R/90/270/0
|
|
||||||
modellist:id=%logic,state=logic_facing:down_tonorth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1
|
|
||||||
modellist:id=%logic,state=logic_facing:down_tosouth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u180/0:s/1:w/1:e/1:d/2:n/1
|
|
||||||
modellist:id=%logic,state=logic_facing:down_towest,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u270/0:s/1:w/1:e/1:d/2:n/1
|
|
||||||
modellist:id=%logic,state=logic_facing:down_toeast,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u90/0:s/1:w/1:e/1:d/2:n/1
|
|
||||||
modellist:id=%logic,state=logic_facing:up_tonorth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u180/0:s/1:w/1:e/1:d/2:n/1:R/180/0/0
|
|
||||||
modellist:id=%logic,state=logic_facing:up_tosouth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1:R/180/0/0
|
|
||||||
modellist:id=%logic,state=logic_facing:up_towest,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u270/0:s/1:w/1:e/1:d/2:n/1:R/180/0/0
|
|
||||||
modellist:id=%logic,state=logic_facing:up_toeast,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u90/0:s/1:w/1:e/1:d/2:n/1:R/180/0/0
|
|
||||||
modellist:id=%logic,state=logic_facing:north_towest,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u270/0:s/1:w/1:e/1:d/2:n/1:R/-90/0/0
|
|
||||||
modellist:id=%logic,state=logic_facing:north_toeast,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u90/0:s/1:w/1:e/1:d/2:n/1:R/-90/0/0
|
|
||||||
modellist:id=%logic,state=logic_facing:north_toup,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1:R/-90/0/0
|
|
||||||
modellist:id=%logic,state=logic_facing:north_todown,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u180/0:s/1:w/1:e/1:d/2:n/1:R/-90/0/0
|
|
||||||
modellist:id=%logic,state=logic_facing:south_towest,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u270/0:s/1:w/1:e/1:d/2:n/1:R/90/0/0
|
|
||||||
modellist:id=%logic,state=logic_facing:south_toeast,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u90/0:s/1:w/1:e/1:d/2:n/1:R/90/0/0
|
|
||||||
modellist:id=%logic,state=logic_facing:south_toup,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u180/0:s/1:w/1:e/1:d/2:n/1:R/90/0/0
|
|
||||||
modellist:id=%logic,state=logic_facing:south_todown,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1:R/90/0/0
|
|
||||||
modellist:id=%logic,state=logic_facing:west_tonorth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u270/0:s/1:w/1:e/1:d/2:n/1:R/90/90/0
|
|
||||||
modellist:id=%logic,state=logic_facing:west_tosouth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u90/0:s/1:w/1:e/1:d/2:n/1:R/90/90/0
|
|
||||||
modellist:id=%logic,state=logic_facing:west_toup,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u180/0:s/1:w/1:e/1:d/2:n/1:R/90/90/0
|
|
||||||
modellist:id=%logic,state=logic_facing:west_todown,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1:R/90/90/0
|
|
||||||
modellist:id=%logic,state=logic_facing:east_tonorth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u90/0:s/1:w/1:e/1:d/2:n/1:R/90/270/0
|
|
||||||
modellist:id=%logic,state=logic_facing:east_tosouth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u270/0:s/1:w/1:e/1:d/2:n/1:R/90/270/0
|
|
||||||
modellist:id=%logic,state=logic_facing:east_toup,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u180/0:s/1:w/1:e/1:d/2:n/1:R/90/270/0
|
|
||||||
modellist:id=%logic,state=logic_facing:east_todown,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1:R/90/270/0
|
|
||||||
modellist:id=%timer,state=logic_facing:down_tonorth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1
|
|
||||||
modellist:id=%timer,state=logic_facing:down_tosouth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u180/0:s/1:w/1:e/1:d/2:n/1
|
|
||||||
modellist:id=%timer,state=logic_facing:down_towest,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u270/0:s/1:w/1:e/1:d/2:n/1
|
|
||||||
modellist:id=%timer,state=logic_facing:down_toeast,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u90/0:s/1:w/1:e/1:d/2:n/1
|
|
||||||
modellist:id=%timer,state=logic_facing:up_tonorth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u180/0:s/1:w/1:e/1:d/2:n/1:R/180/0/0
|
|
||||||
modellist:id=%timer,state=logic_facing:up_tosouth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1:R/180/0/0
|
|
||||||
modellist:id=%timer,state=logic_facing:up_towest,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u270/0:s/1:w/1:e/1:d/2:n/1:R/180/0/0
|
|
||||||
modellist:id=%timer,state=logic_facing:up_toeast,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u90/0:s/1:w/1:e/1:d/2:n/1:R/180/0/0
|
|
||||||
modellist:id=%timer,state=logic_facing:north_towest,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u270/0:s/1:w/1:e/1:d/2:n/1:R/-90/0/0
|
|
||||||
modellist:id=%timer,state=logic_facing:north_toeast,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u90/0:s/1:w/1:e/1:d/2:n/1:R/-90/0/0
|
|
||||||
modellist:id=%timer,state=logic_facing:north_toup,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1:R/-90/0/0
|
|
||||||
modellist:id=%timer,state=logic_facing:north_todown,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u180/0:s/1:w/1:e/1:d/2:n/1:R/-90/0/0
|
|
||||||
modellist:id=%timer,state=logic_facing:south_towest,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u270/0:s/1:w/1:e/1:d/2:n/1:R/90/0/0
|
|
||||||
modellist:id=%timer,state=logic_facing:south_toeast,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u90/0:s/1:w/1:e/1:d/2:n/1:R/90/0/0
|
|
||||||
modellist:id=%timer,state=logic_facing:south_toup,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u180/0:s/1:w/1:e/1:d/2:n/1:R/90/0/0
|
|
||||||
modellist:id=%timer,state=logic_facing:south_todown,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1:R/90/0/0
|
|
||||||
modellist:id=%timer,state=logic_facing:west_tonorth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u270/0:s/1:w/1:e/1:d/2:n/1:R/90/90/0
|
|
||||||
modellist:id=%timer,state=logic_facing:west_tosouth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u90/0:s/1:w/1:e/1:d/2:n/1:R/90/90/0
|
|
||||||
modellist:id=%timer,state=logic_facing:west_toup,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u180/0:s/1:w/1:e/1:d/2:n/1:R/90/90/0
|
|
||||||
modellist:id=%timer,state=logic_facing:west_todown,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1:R/90/90/0
|
|
||||||
modellist:id=%timer,state=logic_facing:east_tonorth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u90/0:s/1:w/1:e/1:d/2:n/1:R/90/270/0
|
|
||||||
modellist:id=%timer,state=logic_facing:east_tosouth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u270/0:s/1:w/1:e/1:d/2:n/1:R/90/270/0
|
|
||||||
modellist:id=%timer,state=logic_facing:east_toup,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u180/0:s/1:w/1:e/1:d/2:n/1:R/90/270/0
|
|
||||||
modellist:id=%timer,state=logic_facing:east_todown,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1:R/90/270/0
|
|
||||||
modellist:id=%wire,state=logic_facing:down_tonorth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1
|
|
||||||
modellist:id=%wire,state=logic_facing:down_tosouth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u180/0:s/1:w/1:e/1:d/2:n/1
|
|
||||||
modellist:id=%wire,state=logic_facing:down_towest,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u270/0:s/1:w/1:e/1:d/2:n/1
|
|
||||||
modellist:id=%wire,state=logic_facing:down_toeast,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u90/0:s/1:w/1:e/1:d/2:n/1
|
|
||||||
modellist:id=%wire,state=logic_facing:up_tonorth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u180/0:s/1:w/1:e/1:d/2:n/1:R/180/0/0
|
|
||||||
modellist:id=%wire,state=logic_facing:up_tosouth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1:R/180/0/0
|
|
||||||
modellist:id=%wire,state=logic_facing:up_towest,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u270/0:s/1:w/1:e/1:d/2:n/1:R/180/0/0
|
|
||||||
modellist:id=%wire,state=logic_facing:up_toeast,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u90/0:s/1:w/1:e/1:d/2:n/1:R/180/0/0
|
|
||||||
modellist:id=%wire,state=logic_facing:north_towest,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u270/0:s/1:w/1:e/1:d/2:n/1:R/-90/0/0
|
|
||||||
modellist:id=%wire,state=logic_facing:north_toeast,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u90/0:s/1:w/1:e/1:d/2:n/1:R/-90/0/0
|
|
||||||
modellist:id=%wire,state=logic_facing:north_toup,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1:R/-90/0/0
|
|
||||||
modellist:id=%wire,state=logic_facing:north_todown,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u180/0:s/1:w/1:e/1:d/2:n/1:R/-90/0/0
|
|
||||||
modellist:id=%wire,state=logic_facing:south_towest,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u270/0:s/1:w/1:e/1:d/2:n/1:R/90/0/0
|
|
||||||
modellist:id=%wire,state=logic_facing:south_toeast,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u90/0:s/1:w/1:e/1:d/2:n/1:R/90/0/0
|
|
||||||
modellist:id=%wire,state=logic_facing:south_toup,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u180/0:s/1:w/1:e/1:d/2:n/1:R/90/0/0
|
|
||||||
modellist:id=%wire,state=logic_facing:south_todown,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1:R/90/0/0
|
|
||||||
modellist:id=%wire,state=logic_facing:west_tonorth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u270/0:s/1:w/1:e/1:d/2:n/1:R/90/90/0
|
|
||||||
modellist:id=%wire,state=logic_facing:west_tosouth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u90/0:s/1:w/1:e/1:d/2:n/1:R/90/90/0
|
|
||||||
modellist:id=%wire,state=logic_facing:west_toup,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u180/0:s/1:w/1:e/1:d/2:n/1:R/90/90/0
|
|
||||||
modellist:id=%wire,state=logic_facing:west_todown,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1:R/90/90/0
|
|
||||||
modellist:id=%wire,state=logic_facing:east_tonorth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u90/0:s/1:w/1:e/1:d/2:n/1:R/90/270/0
|
|
||||||
modellist:id=%wire,state=logic_facing:east_tosouth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u270/0:s/1:w/1:e/1:d/2:n/1:R/90/270/0
|
|
||||||
modellist:id=%wire,state=logic_facing:east_toup,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u180/0:s/1:w/1:e/1:d/2:n/1:R/90/270/0
|
|
||||||
modellist:id=%wire,state=logic_facing:east_todown,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1:R/90/270/0
|
|
||||||
modellist:id=%redstone_receiver,state=logic_facing:down_tonorth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1
|
|
||||||
modellist:id=%redstone_receiver,state=logic_facing:down_tosouth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u180/0:s/1:w/1:e/1:d/2:n/1
|
|
||||||
modellist:id=%redstone_receiver,state=logic_facing:down_towest,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u270/0:s/1:w/1:e/1:d/2:n/1
|
|
||||||
modellist:id=%redstone_receiver,state=logic_facing:down_toeast,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u90/0:s/1:w/1:e/1:d/2:n/1
|
|
||||||
modellist:id=%redstone_receiver,state=logic_facing:up_tonorth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u180/0:s/1:w/1:e/1:d/2:n/1:R/180/0/0
|
|
||||||
modellist:id=%redstone_receiver,state=logic_facing:up_tosouth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1:R/180/0/0
|
|
||||||
modellist:id=%redstone_receiver,state=logic_facing:up_towest,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u270/0:s/1:w/1:e/1:d/2:n/1:R/180/0/0
|
|
||||||
modellist:id=%redstone_receiver,state=logic_facing:up_toeast,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u90/0:s/1:w/1:e/1:d/2:n/1:R/180/0/0
|
|
||||||
modellist:id=%redstone_receiver,state=logic_facing:north_towest,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u270/0:s/1:w/1:e/1:d/2:n/1:R/-90/0/0
|
|
||||||
modellist:id=%redstone_receiver,state=logic_facing:north_toeast,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u90/0:s/1:w/1:e/1:d/2:n/1:R/-90/0/0
|
|
||||||
modellist:id=%redstone_receiver,state=logic_facing:north_toup,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1:R/-90/0/0
|
|
||||||
modellist:id=%redstone_receiver,state=logic_facing:north_todown,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u180/0:s/1:w/1:e/1:d/2:n/1:R/-90/0/0
|
|
||||||
modellist:id=%redstone_receiver,state=logic_facing:south_towest,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u270/0:s/1:w/1:e/1:d/2:n/1:R/90/0/0
|
|
||||||
modellist:id=%redstone_receiver,state=logic_facing:south_toeast,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u90/0:s/1:w/1:e/1:d/2:n/1:R/90/0/0
|
|
||||||
modellist:id=%redstone_receiver,state=logic_facing:south_toup,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u180/0:s/1:w/1:e/1:d/2:n/1:R/90/0/0
|
|
||||||
modellist:id=%redstone_receiver,state=logic_facing:south_todown,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1:R/90/0/0
|
|
||||||
modellist:id=%redstone_receiver,state=logic_facing:west_tonorth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u270/0:s/1:w/1:e/1:d/2:n/1:R/90/90/0
|
|
||||||
modellist:id=%redstone_receiver,state=logic_facing:west_tosouth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u90/0:s/1:w/1:e/1:d/2:n/1:R/90/90/0
|
|
||||||
modellist:id=%redstone_receiver,state=logic_facing:west_toup,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u180/0:s/1:w/1:e/1:d/2:n/1:R/90/90/0
|
|
||||||
modellist:id=%redstone_receiver,state=logic_facing:west_todown,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1:R/90/90/0
|
|
||||||
modellist:id=%redstone_receiver,state=logic_facing:east_tonorth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u90/0:s/1:w/1:e/1:d/2:n/1:R/90/270/0
|
|
||||||
modellist:id=%redstone_receiver,state=logic_facing:east_tosouth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u270/0:s/1:w/1:e/1:d/2:n/1:R/90/270/0
|
|
||||||
modellist:id=%redstone_receiver,state=logic_facing:east_toup,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u180/0:s/1:w/1:e/1:d/2:n/1:R/90/270/0
|
|
||||||
modellist:id=%redstone_receiver,state=logic_facing:east_todown,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1:R/90/270/0
|
|
||||||
modellist:id=%redstone_transmitter,state=logic_facing:down_tonorth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1
|
|
||||||
modellist:id=%redstone_transmitter,state=logic_facing:down_tosouth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u180/0:s/1:w/1:e/1:d/2:n/1
|
|
||||||
modellist:id=%redstone_transmitter,state=logic_facing:down_towest,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u270/0:s/1:w/1:e/1:d/2:n/1
|
|
||||||
modellist:id=%redstone_transmitter,state=logic_facing:down_toeast,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u90/0:s/1:w/1:e/1:d/2:n/1
|
|
||||||
modellist:id=%redstone_transmitter,state=logic_facing:up_tonorth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u180/0:s/1:w/1:e/1:d/2:n/1:R/180/0/0
|
|
||||||
modellist:id=%redstone_transmitter,state=logic_facing:up_tosouth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1:R/180/0/0
|
|
||||||
modellist:id=%redstone_transmitter,state=logic_facing:up_towest,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u270/0:s/1:w/1:e/1:d/2:n/1:R/180/0/0
|
|
||||||
modellist:id=%redstone_transmitter,state=logic_facing:up_toeast,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u90/0:s/1:w/1:e/1:d/2:n/1:R/180/0/0
|
|
||||||
modellist:id=%redstone_transmitter,state=logic_facing:north_towest,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u270/0:s/1:w/1:e/1:d/2:n/1:R/-90/0/0
|
|
||||||
modellist:id=%redstone_transmitter,state=logic_facing:north_toeast,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u90/0:s/1:w/1:e/1:d/2:n/1:R/-90/0/0
|
|
||||||
modellist:id=%redstone_transmitter,state=logic_facing:north_toup,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1:R/-90/0/0
|
|
||||||
modellist:id=%redstone_transmitter,state=logic_facing:north_todown,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u180/0:s/1:w/1:e/1:d/2:n/1:R/-90/0/0
|
|
||||||
modellist:id=%redstone_transmitter,state=logic_facing:south_towest,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u270/0:s/1:w/1:e/1:d/2:n/1:R/90/0/0
|
|
||||||
modellist:id=%redstone_transmitter,state=logic_facing:south_toeast,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u90/0:s/1:w/1:e/1:d/2:n/1:R/90/0/0
|
|
||||||
modellist:id=%redstone_transmitter,state=logic_facing:south_toup,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u180/0:s/1:w/1:e/1:d/2:n/1:R/90/0/0
|
|
||||||
modellist:id=%redstone_transmitter,state=logic_facing:south_todown,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1:R/90/0/0
|
|
||||||
modellist:id=%redstone_transmitter,state=logic_facing:west_tonorth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u270/0:s/1:w/1:e/1:d/2:n/1:R/90/90/0
|
|
||||||
modellist:id=%redstone_transmitter,state=logic_facing:west_tosouth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u90/0:s/1:w/1:e/1:d/2:n/1:R/90/90/0
|
|
||||||
modellist:id=%redstone_transmitter,state=logic_facing:west_toup,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u180/0:s/1:w/1:e/1:d/2:n/1:R/90/90/0
|
|
||||||
modellist:id=%redstone_transmitter,state=logic_facing:west_todown,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1:R/90/90/0
|
|
||||||
modellist:id=%redstone_transmitter,state=logic_facing:east_tonorth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u90/0:s/1:w/1:e/1:d/2:n/1:R/90/270/0
|
|
||||||
modellist:id=%redstone_transmitter,state=logic_facing:east_tosouth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u270/0:s/1:w/1:e/1:d/2:n/1:R/90/270/0
|
|
||||||
modellist:id=%redstone_transmitter,state=logic_facing:east_toup,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u180/0:s/1:w/1:e/1:d/2:n/1:R/90/270/0
|
|
||||||
modellist:id=%redstone_transmitter,state=logic_facing:east_todown,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1:R/90/270/0
|
|
||||||
modellist:id=%screen_controller,state=facing:east,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/0/90/0
|
|
||||||
modellist:id=%screen_controller,state=facing:south,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/0/180/0
|
|
||||||
modellist:id=%screen_controller,state=facing:west,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/0/270/0
|
|
||||||
modellist:id=%screen_controller,state=facing:up,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/-90/0/0
|
|
||||||
modellist:id=%screen_controller,state=facing:down,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/90/0/0
|
|
||||||
modellist:id=%spawner,state=facing:east,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/0/90/0
|
|
||||||
modellist:id=%spawner,state=facing:south,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/0/180/0
|
|
||||||
modellist:id=%spawner,state=facing:west,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/0/270/0
|
|
||||||
modellist:id=%spawner,state=facing:up,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/-90/0/0
|
|
||||||
modellist:id=%spawner,state=facing:down,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/90/0/0
|
|
||||||
modellist:id=%tank
|
|
||||||
modellist:id=%dialing_device,state=facing:east,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/0/90/0
|
|
||||||
modellist:id=%dialing_device,state=facing:south,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/0/180/0
|
|
||||||
modellist:id=%dialing_device,state=facing:west,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/0/270/0
|
|
||||||
modellist:id=%dialing_device,state=facing:up,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/-90/0/0
|
|
||||||
modellist:id=%dialing_device,state=facing:down,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/90/0/0
|
|
||||||
modellist:id=%destination_analyzer,state=facing:east,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/0/90/0
|
|
||||||
modellist:id=%destination_analyzer,state=facing:south,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/0/180/0
|
|
||||||
modellist:id=%destination_analyzer,state=facing:west,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/0/270/0
|
|
||||||
modellist:id=%destination_analyzer,state=facing:up,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/-90/0/0
|
|
||||||
modellist:id=%destination_analyzer,state=facing:down,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/90/0/0
|
|
||||||
modellist:id=%matter_booster,state=facing:east,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/0/90/0
|
|
||||||
modellist:id=%matter_booster,state=facing:south,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/0/180/0
|
|
||||||
modellist:id=%matter_booster,state=facing:west,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/0/270/0
|
|
||||||
modellist:id=%matter_booster,state=facing:up,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/-90/0/0
|
|
||||||
modellist:id=%matter_booster,state=facing:down,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/3:R/90/0/0
|
|
||||||
modellist:id=%simple_dialer,state=logic_facing:down_tonorth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1
|
|
||||||
modellist:id=%simple_dialer,state=logic_facing:down_tosouth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u180/0:s/1:w/1:e/1:d/2:n/1
|
|
||||||
modellist:id=%simple_dialer,state=logic_facing:down_towest,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u270/0:s/1:w/1:e/1:d/2:n/1
|
|
||||||
modellist:id=%simple_dialer,state=logic_facing:down_toeast,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u90/0:s/1:w/1:e/1:d/2:n/1
|
|
||||||
modellist:id=%simple_dialer,state=logic_facing:up_tonorth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u180/0:s/1:w/1:e/1:d/2:n/1:R/180/0/0
|
|
||||||
modellist:id=%simple_dialer,state=logic_facing:up_tosouth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1:R/180/0/0
|
|
||||||
modellist:id=%simple_dialer,state=logic_facing:up_towest,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u270/0:s/1:w/1:e/1:d/2:n/1:R/180/0/0
|
|
||||||
modellist:id=%simple_dialer,state=logic_facing:up_toeast,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u90/0:s/1:w/1:e/1:d/2:n/1:R/180/0/0
|
|
||||||
modellist:id=%simple_dialer,state=logic_facing:north_towest,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u270/0:s/1:w/1:e/1:d/2:n/1:R/-90/0/0
|
|
||||||
modellist:id=%simple_dialer,state=logic_facing:north_toeast,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u90/0:s/1:w/1:e/1:d/2:n/1:R/-90/0/0
|
|
||||||
modellist:id=%simple_dialer,state=logic_facing:north_toup,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1:R/-90/0/0
|
|
||||||
modellist:id=%simple_dialer,state=logic_facing:north_todown,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u180/0:s/1:w/1:e/1:d/2:n/1:R/-90/0/0
|
|
||||||
modellist:id=%simple_dialer,state=logic_facing:south_towest,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u270/0:s/1:w/1:e/1:d/2:n/1:R/90/0/0
|
|
||||||
modellist:id=%simple_dialer,state=logic_facing:south_toeast,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u90/0:s/1:w/1:e/1:d/2:n/1:R/90/0/0
|
|
||||||
modellist:id=%simple_dialer,state=logic_facing:south_toup,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u180/0:s/1:w/1:e/1:d/2:n/1:R/90/0/0
|
|
||||||
modellist:id=%simple_dialer,state=logic_facing:south_todown,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1:R/90/0/0
|
|
||||||
modellist:id=%simple_dialer,state=logic_facing:west_tonorth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u270/0:s/1:w/1:e/1:d/2:n/1:R/90/90/0
|
|
||||||
modellist:id=%simple_dialer,state=logic_facing:west_tosouth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u90/0:s/1:w/1:e/1:d/2:n/1:R/90/90/0
|
|
||||||
modellist:id=%simple_dialer,state=logic_facing:west_toup,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u180/0:s/1:w/1:e/1:d/2:n/1:R/90/90/0
|
|
||||||
modellist:id=%simple_dialer,state=logic_facing:west_todown,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1:R/90/90/0
|
|
||||||
modellist:id=%simple_dialer,state=logic_facing:east_tonorth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u90/0:s/1:w/1:e/1:d/2:n/1:R/90/270/0
|
|
||||||
modellist:id=%simple_dialer,state=logic_facing:east_tosouth,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u270/0:s/1:w/1:e/1:d/2:n/1:R/90/270/0
|
|
||||||
modellist:id=%simple_dialer,state=logic_facing:east_toup,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u180/0:s/1:w/1:e/1:d/2:n/1:R/90/270/0
|
|
||||||
modellist:id=%simple_dialer,state=logic_facing:east_todown,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1:R/90/270/0
|
|
||||||
modellist:id=%environmental_controller,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0:s/1:w/1:e/1:d/2:n/1,box=0.000000/3.000000/0.000000:16.000000/3.000000/16.000000:u/2,box=0.000000/16.000000/0.000000:16.000000/16.000000/16.000000:d/0,box=0.000000/0.000000/16.000000:16.000000/16.000000/16.000000:n/1,box=0.000000/0.000000/0.000000:16.000000/16.000000/0.000000:s/1,box=16.000000/0.000000/0.000000:16.000000/16.000000/16.000000:w/1,box=0.000000/0.000000/0.000000:0.000000/16.000000/16.000000:e/1
|
|
@ -1,372 +0,0 @@
|
|||||||
modname:rftoolsutility
|
|
||||||
|
|
||||||
texture:id=machinetop,filename=assets/rftoolsbase/textures/block/base/machinetop.png,xcount=1,ycount=1
|
|
||||||
texture:id=machineside,filename=assets/rftoolsbase/textures/block/base/machineside.png,xcount=1,ycount=1
|
|
||||||
texture:id=machinebottom,filename=assets/rftoolsbase/textures/block/base/machinebottom.png,xcount=1,ycount=1
|
|
||||||
texture:id=machinecrafter1,filename=assets/rftoolsutility/textures/block/machinecrafter1.png,xcount=1,ycount=1
|
|
||||||
texture:id=machinecrafter2,filename=assets/rftoolsutility/textures/block/machinecrafter2.png,xcount=1,ycount=1
|
|
||||||
texture:id=machinecrafter3,filename=assets/rftoolsutility/textures/block/machinecrafter3.png,xcount=1,ycount=1
|
|
||||||
texture:id=machineanalogtop,filename=assets/rftoolsutility/textures/block/logic/machineanalogtop.png,xcount=1,ycount=1
|
|
||||||
texture:id=machinecountertop,filename=assets/rftoolsutility/textures/block/logic/machinecountertop.png,xcount=1,ycount=1
|
|
||||||
texture:id=machineoutput,filename=assets/rftoolsutility/textures/block/logic/machineoutput.png,xcount=1,ycount=1
|
|
||||||
texture:id=machineinvchecker,filename=assets/rftoolsutility/textures/block/logic/machineinvchecker.png,xcount=1,ycount=1
|
|
||||||
texture:id=machinesensor,filename=assets/rftoolsutility/textures/block/logic/machinesensor.png,xcount=1,ycount=1
|
|
||||||
texture:id=machinesequencertop,filename=assets/rftoolsutility/textures/block/logic/machinesequencertop.png,xcount=1,ycount=1
|
|
||||||
texture:id=machinelogictop,filename=assets/rftoolsutility/textures/block/logic/machinelogictop.png,xcount=1,ycount=1
|
|
||||||
texture:id=machinetimertop,filename=assets/rftoolsutility/textures/block/logic/machinetimertop.png,xcount=1,ycount=1
|
|
||||||
texture:id=machinewiretop,filename=assets/rftoolsutility/textures/block/logic/machinewiretop.png,xcount=1,ycount=1
|
|
||||||
texture:id=machineredstonereceiver,filename=assets/rftoolsutility/textures/block/logic/machineredstonereceiver.png,xcount=1,ycount=1
|
|
||||||
texture:id=machineredstonetransmitter,filename=assets/rftoolsutility/textures/block/logic/machineredstonetransmitter.png,xcount=1,ycount=1
|
|
||||||
texture:id=machinescreencontroller,filename=assets/rftoolsutility/textures/block/machinescreencontroller.png,xcount=1,ycount=1
|
|
||||||
texture:id=machinebeamer,filename=assets/rftoolsutility/textures/block/machinebeamer.png,xcount=1,ycount=1
|
|
||||||
texture:id=machinebeameroff,filename=assets/rftoolsutility/textures/block/machinebeameroff.png,xcount=1,ycount=1
|
|
||||||
texture:id=machinespawner,filename=assets/rftoolsutility/textures/block/machinespawner.png,xcount=1,ycount=1
|
|
||||||
texture:id=machinetransmitter,filename=assets/rftoolsutility/textures/block/machinetransmitter.png,xcount=1,ycount=1
|
|
||||||
texture:id=machinereceiver,filename=assets/rftoolsutility/textures/block/machinereceiver.png,xcount=1,ycount=1
|
|
||||||
texture:id=machinedialingdevice,filename=assets/rftoolsutility/textures/block/machinedialingdevice.png,xcount=1,ycount=1
|
|
||||||
texture:id=machinedestinationanalyzer,filename=assets/rftoolsutility/textures/block/machinedestinationanalyzer.png,xcount=1,ycount=1
|
|
||||||
texture:id=machinematterbooster,filename=assets/rftoolsutility/textures/block/machinematterbooster.png,xcount=1,ycount=1
|
|
||||||
texture:id=machinesimpledialer,filename=assets/rftoolsutility/textures/block/machinesimpledialer.png,xcount=1,ycount=1
|
|
||||||
texture:id=machineenvironmentalcontroller,filename=assets/rftoolsutility/textures/block/machineenvironmentalcontroller.png,xcount=1,ycount=1
|
|
||||||
block:id=%crafter1,state=facing:north,patch0=0:machineside,patch1=0:machinebottom,patch2=0:machinecrafter1,patch3=0:machineside,patch4=0:machinetop,patch5=0:machineside,stdrot=true
|
|
||||||
block:id=%crafter1,state=facing:east,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machinecrafter1,stdrot=true
|
|
||||||
block:id=%crafter1,state=facing:south,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machinecrafter1,stdrot=true
|
|
||||||
block:id=%crafter1,state=facing:west,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machinecrafter1,stdrot=true
|
|
||||||
block:id=%crafter1,state=facing:up,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machinecrafter1,stdrot=true
|
|
||||||
block:id=%crafter1,state=facing:down,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machinecrafter1,stdrot=true
|
|
||||||
block:id=%crafter2,state=facing:north,patch0=0:machineside,patch1=0:machinebottom,patch2=0:machinecrafter2,patch3=0:machineside,patch4=0:machinetop,patch5=0:machineside,stdrot=true
|
|
||||||
block:id=%crafter2,state=facing:east,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machinecrafter2,stdrot=true
|
|
||||||
block:id=%crafter2,state=facing:south,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machinecrafter2,stdrot=true
|
|
||||||
block:id=%crafter2,state=facing:west,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machinecrafter2,stdrot=true
|
|
||||||
block:id=%crafter2,state=facing:up,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machinecrafter2,stdrot=true
|
|
||||||
block:id=%crafter2,state=facing:down,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machinecrafter2,stdrot=true
|
|
||||||
block:id=%crafter3,state=facing:north,patch0=0:machineside,patch1=0:machinebottom,patch2=0:machinecrafter3,patch3=0:machineside,patch4=0:machinetop,patch5=0:machineside,stdrot=true
|
|
||||||
block:id=%crafter3,state=facing:east,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machinecrafter3,stdrot=true
|
|
||||||
block:id=%crafter3,state=facing:south,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machinecrafter3,stdrot=true
|
|
||||||
block:id=%crafter3,state=facing:west,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machinecrafter3,stdrot=true
|
|
||||||
block:id=%crafter3,state=facing:up,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machinecrafter3,stdrot=true
|
|
||||||
block:id=%crafter3,state=facing:down,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machinecrafter3,stdrot=true
|
|
||||||
block:id=%analog,state=logic_facing:down_tonorth,patch0=0:machineanalogtop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%analog,state=logic_facing:down_tosouth,patch0=0:machineanalogtop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%analog,state=logic_facing:down_towest,patch0=0:machineanalogtop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%analog,state=logic_facing:down_toeast,patch0=0:machineanalogtop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%analog,state=logic_facing:up_tonorth,patch0=0:machineanalogtop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%analog,state=logic_facing:up_tosouth,patch0=0:machineanalogtop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%analog,state=logic_facing:up_towest,patch0=0:machineanalogtop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%analog,state=logic_facing:up_toeast,patch0=0:machineanalogtop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%analog,state=logic_facing:north_towest,patch0=0:machineanalogtop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%analog,state=logic_facing:north_toeast,patch0=0:machineanalogtop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%analog,state=logic_facing:north_toup,patch0=0:machineanalogtop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%analog,state=logic_facing:north_todown,patch0=0:machineanalogtop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%analog,state=logic_facing:south_towest,patch0=0:machineanalogtop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%analog,state=logic_facing:south_toeast,patch0=0:machineanalogtop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%analog,state=logic_facing:south_toup,patch0=0:machineanalogtop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%analog,state=logic_facing:south_todown,patch0=0:machineanalogtop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%analog,state=logic_facing:west_tonorth,patch0=0:machineanalogtop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%analog,state=logic_facing:west_tosouth,patch0=0:machineanalogtop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%analog,state=logic_facing:west_toup,patch0=0:machineanalogtop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%analog,state=logic_facing:west_todown,patch0=0:machineanalogtop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%analog,state=logic_facing:east_tonorth,patch0=0:machineanalogtop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%analog,state=logic_facing:east_tosouth,patch0=0:machineanalogtop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%analog,state=logic_facing:east_toup,patch0=0:machineanalogtop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%analog,state=logic_facing:east_todown,patch0=0:machineanalogtop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%counter,state=logic_facing:down_tonorth,patch0=0:machinecountertop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%counter,state=logic_facing:down_tosouth,patch0=0:machinecountertop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%counter,state=logic_facing:down_towest,patch0=0:machinecountertop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%counter,state=logic_facing:down_toeast,patch0=0:machinecountertop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%counter,state=logic_facing:up_tonorth,patch0=0:machinecountertop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%counter,state=logic_facing:up_tosouth,patch0=0:machinecountertop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%counter,state=logic_facing:up_towest,patch0=0:machinecountertop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%counter,state=logic_facing:up_toeast,patch0=0:machinecountertop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%counter,state=logic_facing:north_towest,patch0=0:machinecountertop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%counter,state=logic_facing:north_toeast,patch0=0:machinecountertop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%counter,state=logic_facing:north_toup,patch0=0:machinecountertop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%counter,state=logic_facing:north_todown,patch0=0:machinecountertop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%counter,state=logic_facing:south_towest,patch0=0:machinecountertop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%counter,state=logic_facing:south_toeast,patch0=0:machinecountertop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%counter,state=logic_facing:south_toup,patch0=0:machinecountertop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%counter,state=logic_facing:south_todown,patch0=0:machinecountertop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%counter,state=logic_facing:west_tonorth,patch0=0:machinecountertop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%counter,state=logic_facing:west_tosouth,patch0=0:machinecountertop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%counter,state=logic_facing:west_toup,patch0=0:machinecountertop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%counter,state=logic_facing:west_todown,patch0=0:machinecountertop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%counter,state=logic_facing:east_tonorth,patch0=0:machinecountertop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%counter,state=logic_facing:east_tosouth,patch0=0:machinecountertop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%counter,state=logic_facing:east_toup,patch0=0:machinecountertop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%counter,state=logic_facing:east_todown,patch0=0:machinecountertop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%digit,state=logic_facing:down_tonorth,patch0=0:machineoutput,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%digit,state=logic_facing:down_tosouth,patch0=0:machineoutput,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%digit,state=logic_facing:down_towest,patch0=0:machineoutput,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%digit,state=logic_facing:down_toeast,patch0=0:machineoutput,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%digit,state=logic_facing:up_tonorth,patch0=0:machineoutput,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%digit,state=logic_facing:up_tosouth,patch0=0:machineoutput,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%digit,state=logic_facing:up_towest,patch0=0:machineoutput,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%digit,state=logic_facing:up_toeast,patch0=0:machineoutput,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%digit,state=logic_facing:north_towest,patch0=0:machineoutput,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%digit,state=logic_facing:north_toeast,patch0=0:machineoutput,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%digit,state=logic_facing:north_toup,patch0=0:machineoutput,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%digit,state=logic_facing:north_todown,patch0=0:machineoutput,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%digit,state=logic_facing:south_towest,patch0=0:machineoutput,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%digit,state=logic_facing:south_toeast,patch0=0:machineoutput,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%digit,state=logic_facing:south_toup,patch0=0:machineoutput,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%digit,state=logic_facing:south_todown,patch0=0:machineoutput,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%digit,state=logic_facing:west_tonorth,patch0=0:machineoutput,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%digit,state=logic_facing:west_tosouth,patch0=0:machineoutput,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%digit,state=logic_facing:west_toup,patch0=0:machineoutput,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%digit,state=logic_facing:west_todown,patch0=0:machineoutput,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%digit,state=logic_facing:east_tonorth,patch0=0:machineoutput,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%digit,state=logic_facing:east_tosouth,patch0=0:machineoutput,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%digit,state=logic_facing:east_toup,patch0=0:machineoutput,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%digit,state=logic_facing:east_todown,patch0=0:machineoutput,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%invchecker,state=logic_facing:down_tonorth,patch0=0:machineinvchecker,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%invchecker,state=logic_facing:down_tosouth,patch0=0:machineinvchecker,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%invchecker,state=logic_facing:down_towest,patch0=0:machineinvchecker,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%invchecker,state=logic_facing:down_toeast,patch0=0:machineinvchecker,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%invchecker,state=logic_facing:up_tonorth,patch0=0:machineinvchecker,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%invchecker,state=logic_facing:up_tosouth,patch0=0:machineinvchecker,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%invchecker,state=logic_facing:up_towest,patch0=0:machineinvchecker,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%invchecker,state=logic_facing:up_toeast,patch0=0:machineinvchecker,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%invchecker,state=logic_facing:north_towest,patch0=0:machineinvchecker,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%invchecker,state=logic_facing:north_toeast,patch0=0:machineinvchecker,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%invchecker,state=logic_facing:north_toup,patch0=0:machineinvchecker,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%invchecker,state=logic_facing:north_todown,patch0=0:machineinvchecker,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%invchecker,state=logic_facing:south_towest,patch0=0:machineinvchecker,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%invchecker,state=logic_facing:south_toeast,patch0=0:machineinvchecker,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%invchecker,state=logic_facing:south_toup,patch0=0:machineinvchecker,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%invchecker,state=logic_facing:south_todown,patch0=0:machineinvchecker,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%invchecker,state=logic_facing:west_tonorth,patch0=0:machineinvchecker,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%invchecker,state=logic_facing:west_tosouth,patch0=0:machineinvchecker,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%invchecker,state=logic_facing:west_toup,patch0=0:machineinvchecker,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%invchecker,state=logic_facing:west_todown,patch0=0:machineinvchecker,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%invchecker,state=logic_facing:east_tonorth,patch0=0:machineinvchecker,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%invchecker,state=logic_facing:east_tosouth,patch0=0:machineinvchecker,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%invchecker,state=logic_facing:east_toup,patch0=0:machineinvchecker,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%invchecker,state=logic_facing:east_todown,patch0=0:machineinvchecker,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%sensor,state=logic_facing:down_tonorth,patch0=0:machinesensor,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%sensor,state=logic_facing:down_tosouth,patch0=0:machinesensor,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%sensor,state=logic_facing:down_towest,patch0=0:machinesensor,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%sensor,state=logic_facing:down_toeast,patch0=0:machinesensor,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%sensor,state=logic_facing:up_tonorth,patch0=0:machinesensor,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%sensor,state=logic_facing:up_tosouth,patch0=0:machinesensor,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%sensor,state=logic_facing:up_towest,patch0=0:machinesensor,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%sensor,state=logic_facing:up_toeast,patch0=0:machinesensor,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%sensor,state=logic_facing:north_towest,patch0=0:machinesensor,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%sensor,state=logic_facing:north_toeast,patch0=0:machinesensor,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%sensor,state=logic_facing:north_toup,patch0=0:machinesensor,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%sensor,state=logic_facing:north_todown,patch0=0:machinesensor,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%sensor,state=logic_facing:south_towest,patch0=0:machinesensor,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%sensor,state=logic_facing:south_toeast,patch0=0:machinesensor,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%sensor,state=logic_facing:south_toup,patch0=0:machinesensor,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%sensor,state=logic_facing:south_todown,patch0=0:machinesensor,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%sensor,state=logic_facing:west_tonorth,patch0=0:machinesensor,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%sensor,state=logic_facing:west_tosouth,patch0=0:machinesensor,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%sensor,state=logic_facing:west_toup,patch0=0:machinesensor,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%sensor,state=logic_facing:west_todown,patch0=0:machinesensor,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%sensor,state=logic_facing:east_tonorth,patch0=0:machinesensor,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%sensor,state=logic_facing:east_tosouth,patch0=0:machinesensor,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%sensor,state=logic_facing:east_toup,patch0=0:machinesensor,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%sensor,state=logic_facing:east_todown,patch0=0:machinesensor,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%sequencer,state=logic_facing:down_tonorth,patch0=0:machinesequencertop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%sequencer,state=logic_facing:down_tosouth,patch0=0:machinesequencertop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%sequencer,state=logic_facing:down_towest,patch0=0:machinesequencertop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%sequencer,state=logic_facing:down_toeast,patch0=0:machinesequencertop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%sequencer,state=logic_facing:up_tonorth,patch0=0:machinesequencertop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%sequencer,state=logic_facing:up_tosouth,patch0=0:machinesequencertop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%sequencer,state=logic_facing:up_towest,patch0=0:machinesequencertop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%sequencer,state=logic_facing:up_toeast,patch0=0:machinesequencertop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%sequencer,state=logic_facing:north_towest,patch0=0:machinesequencertop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%sequencer,state=logic_facing:north_toeast,patch0=0:machinesequencertop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%sequencer,state=logic_facing:north_toup,patch0=0:machinesequencertop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%sequencer,state=logic_facing:north_todown,patch0=0:machinesequencertop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%sequencer,state=logic_facing:south_towest,patch0=0:machinesequencertop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%sequencer,state=logic_facing:south_toeast,patch0=0:machinesequencertop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%sequencer,state=logic_facing:south_toup,patch0=0:machinesequencertop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%sequencer,state=logic_facing:south_todown,patch0=0:machinesequencertop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%sequencer,state=logic_facing:west_tonorth,patch0=0:machinesequencertop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%sequencer,state=logic_facing:west_tosouth,patch0=0:machinesequencertop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%sequencer,state=logic_facing:west_toup,patch0=0:machinesequencertop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%sequencer,state=logic_facing:west_todown,patch0=0:machinesequencertop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%sequencer,state=logic_facing:east_tonorth,patch0=0:machinesequencertop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%sequencer,state=logic_facing:east_tosouth,patch0=0:machinesequencertop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%sequencer,state=logic_facing:east_toup,patch0=0:machinesequencertop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%sequencer,state=logic_facing:east_todown,patch0=0:machinesequencertop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%logic,state=logic_facing:down_tonorth,patch0=0:machinelogictop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%logic,state=logic_facing:down_tosouth,patch0=0:machinelogictop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%logic,state=logic_facing:down_towest,patch0=0:machinelogictop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%logic,state=logic_facing:down_toeast,patch0=0:machinelogictop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%logic,state=logic_facing:up_tonorth,patch0=0:machinelogictop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%logic,state=logic_facing:up_tosouth,patch0=0:machinelogictop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%logic,state=logic_facing:up_towest,patch0=0:machinelogictop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%logic,state=logic_facing:up_toeast,patch0=0:machinelogictop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%logic,state=logic_facing:north_towest,patch0=0:machinelogictop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%logic,state=logic_facing:north_toeast,patch0=0:machinelogictop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%logic,state=logic_facing:north_toup,patch0=0:machinelogictop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%logic,state=logic_facing:north_todown,patch0=0:machinelogictop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%logic,state=logic_facing:south_towest,patch0=0:machinelogictop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%logic,state=logic_facing:south_toeast,patch0=0:machinelogictop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%logic,state=logic_facing:south_toup,patch0=0:machinelogictop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%logic,state=logic_facing:south_todown,patch0=0:machinelogictop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%logic,state=logic_facing:west_tonorth,patch0=0:machinelogictop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%logic,state=logic_facing:west_tosouth,patch0=0:machinelogictop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%logic,state=logic_facing:west_toup,patch0=0:machinelogictop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%logic,state=logic_facing:west_todown,patch0=0:machinelogictop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%logic,state=logic_facing:east_tonorth,patch0=0:machinelogictop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%logic,state=logic_facing:east_tosouth,patch0=0:machinelogictop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%logic,state=logic_facing:east_toup,patch0=0:machinelogictop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%logic,state=logic_facing:east_todown,patch0=0:machinelogictop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%timer,state=logic_facing:down_tonorth,patch0=0:machinetimertop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%timer,state=logic_facing:down_tosouth,patch0=0:machinetimertop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%timer,state=logic_facing:down_towest,patch0=0:machinetimertop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%timer,state=logic_facing:down_toeast,patch0=0:machinetimertop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%timer,state=logic_facing:up_tonorth,patch0=0:machinetimertop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%timer,state=logic_facing:up_tosouth,patch0=0:machinetimertop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%timer,state=logic_facing:up_towest,patch0=0:machinetimertop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%timer,state=logic_facing:up_toeast,patch0=0:machinetimertop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%timer,state=logic_facing:north_towest,patch0=0:machinetimertop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%timer,state=logic_facing:north_toeast,patch0=0:machinetimertop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%timer,state=logic_facing:north_toup,patch0=0:machinetimertop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%timer,state=logic_facing:north_todown,patch0=0:machinetimertop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%timer,state=logic_facing:south_towest,patch0=0:machinetimertop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%timer,state=logic_facing:south_toeast,patch0=0:machinetimertop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%timer,state=logic_facing:south_toup,patch0=0:machinetimertop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%timer,state=logic_facing:south_todown,patch0=0:machinetimertop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%timer,state=logic_facing:west_tonorth,patch0=0:machinetimertop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%timer,state=logic_facing:west_tosouth,patch0=0:machinetimertop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%timer,state=logic_facing:west_toup,patch0=0:machinetimertop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%timer,state=logic_facing:west_todown,patch0=0:machinetimertop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%timer,state=logic_facing:east_tonorth,patch0=0:machinetimertop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%timer,state=logic_facing:east_tosouth,patch0=0:machinetimertop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%timer,state=logic_facing:east_toup,patch0=0:machinetimertop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%timer,state=logic_facing:east_todown,patch0=0:machinetimertop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%wire,state=logic_facing:down_tonorth,patch0=0:machinewiretop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%wire,state=logic_facing:down_tosouth,patch0=0:machinewiretop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%wire,state=logic_facing:down_towest,patch0=0:machinewiretop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%wire,state=logic_facing:down_toeast,patch0=0:machinewiretop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%wire,state=logic_facing:up_tonorth,patch0=0:machinewiretop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%wire,state=logic_facing:up_tosouth,patch0=0:machinewiretop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%wire,state=logic_facing:up_towest,patch0=0:machinewiretop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%wire,state=logic_facing:up_toeast,patch0=0:machinewiretop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%wire,state=logic_facing:north_towest,patch0=0:machinewiretop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%wire,state=logic_facing:north_toeast,patch0=0:machinewiretop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%wire,state=logic_facing:north_toup,patch0=0:machinewiretop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%wire,state=logic_facing:north_todown,patch0=0:machinewiretop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%wire,state=logic_facing:south_towest,patch0=0:machinewiretop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%wire,state=logic_facing:south_toeast,patch0=0:machinewiretop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%wire,state=logic_facing:south_toup,patch0=0:machinewiretop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%wire,state=logic_facing:south_todown,patch0=0:machinewiretop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%wire,state=logic_facing:west_tonorth,patch0=0:machinewiretop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%wire,state=logic_facing:west_tosouth,patch0=0:machinewiretop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%wire,state=logic_facing:west_toup,patch0=0:machinewiretop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%wire,state=logic_facing:west_todown,patch0=0:machinewiretop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%wire,state=logic_facing:east_tonorth,patch0=0:machinewiretop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%wire,state=logic_facing:east_tosouth,patch0=0:machinewiretop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%wire,state=logic_facing:east_toup,patch0=0:machinewiretop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%wire,state=logic_facing:east_todown,patch0=0:machinewiretop,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%redstone_receiver,state=logic_facing:down_tonorth,patch0=0:machineredstonereceiver,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%redstone_receiver,state=logic_facing:down_tosouth,patch0=0:machineredstonereceiver,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%redstone_receiver,state=logic_facing:down_towest,patch0=0:machineredstonereceiver,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%redstone_receiver,state=logic_facing:down_toeast,patch0=0:machineredstonereceiver,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%redstone_receiver,state=logic_facing:up_tonorth,patch0=0:machineredstonereceiver,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%redstone_receiver,state=logic_facing:up_tosouth,patch0=0:machineredstonereceiver,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%redstone_receiver,state=logic_facing:up_towest,patch0=0:machineredstonereceiver,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%redstone_receiver,state=logic_facing:up_toeast,patch0=0:machineredstonereceiver,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%redstone_receiver,state=logic_facing:north_towest,patch0=0:machineredstonereceiver,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%redstone_receiver,state=logic_facing:north_toeast,patch0=0:machineredstonereceiver,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%redstone_receiver,state=logic_facing:north_toup,patch0=0:machineredstonereceiver,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%redstone_receiver,state=logic_facing:north_todown,patch0=0:machineredstonereceiver,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%redstone_receiver,state=logic_facing:south_towest,patch0=0:machineredstonereceiver,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%redstone_receiver,state=logic_facing:south_toeast,patch0=0:machineredstonereceiver,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%redstone_receiver,state=logic_facing:south_toup,patch0=0:machineredstonereceiver,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%redstone_receiver,state=logic_facing:south_todown,patch0=0:machineredstonereceiver,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%redstone_receiver,state=logic_facing:west_tonorth,patch0=0:machineredstonereceiver,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%redstone_receiver,state=logic_facing:west_tosouth,patch0=0:machineredstonereceiver,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%redstone_receiver,state=logic_facing:west_toup,patch0=0:machineredstonereceiver,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%redstone_receiver,state=logic_facing:west_todown,patch0=0:machineredstonereceiver,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%redstone_receiver,state=logic_facing:east_tonorth,patch0=0:machineredstonereceiver,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%redstone_receiver,state=logic_facing:east_tosouth,patch0=0:machineredstonereceiver,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%redstone_receiver,state=logic_facing:east_toup,patch0=0:machineredstonereceiver,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%redstone_receiver,state=logic_facing:east_todown,patch0=0:machineredstonereceiver,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%redstone_transmitter,state=logic_facing:down_tonorth,patch0=0:machineredstonetransmitter,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%redstone_transmitter,state=logic_facing:down_tosouth,patch0=0:machineredstonetransmitter,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%redstone_transmitter,state=logic_facing:down_towest,patch0=0:machineredstonetransmitter,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%redstone_transmitter,state=logic_facing:down_toeast,patch0=0:machineredstonetransmitter,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%redstone_transmitter,state=logic_facing:up_tonorth,patch0=0:machineredstonetransmitter,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%redstone_transmitter,state=logic_facing:up_tosouth,patch0=0:machineredstonetransmitter,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%redstone_transmitter,state=logic_facing:up_towest,patch0=0:machineredstonetransmitter,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%redstone_transmitter,state=logic_facing:up_toeast,patch0=0:machineredstonetransmitter,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%redstone_transmitter,state=logic_facing:north_towest,patch0=0:machineredstonetransmitter,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%redstone_transmitter,state=logic_facing:north_toeast,patch0=0:machineredstonetransmitter,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%redstone_transmitter,state=logic_facing:north_toup,patch0=0:machineredstonetransmitter,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%redstone_transmitter,state=logic_facing:north_todown,patch0=0:machineredstonetransmitter,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%redstone_transmitter,state=logic_facing:south_towest,patch0=0:machineredstonetransmitter,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%redstone_transmitter,state=logic_facing:south_toeast,patch0=0:machineredstonetransmitter,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%redstone_transmitter,state=logic_facing:south_toup,patch0=0:machineredstonetransmitter,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%redstone_transmitter,state=logic_facing:south_todown,patch0=0:machineredstonetransmitter,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%redstone_transmitter,state=logic_facing:west_tonorth,patch0=0:machineredstonetransmitter,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%redstone_transmitter,state=logic_facing:west_tosouth,patch0=0:machineredstonetransmitter,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%redstone_transmitter,state=logic_facing:west_toup,patch0=0:machineredstonetransmitter,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%redstone_transmitter,state=logic_facing:west_todown,patch0=0:machineredstonetransmitter,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%redstone_transmitter,state=logic_facing:east_tonorth,patch0=0:machineredstonetransmitter,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%redstone_transmitter,state=logic_facing:east_tosouth,patch0=0:machineredstonetransmitter,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%redstone_transmitter,state=logic_facing:east_toup,patch0=0:machineredstonetransmitter,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%redstone_transmitter,state=logic_facing:east_todown,patch0=0:machineredstonetransmitter,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%screen_controller,state=facing:north,patch0=0:machineside,patch1=0:machinebottom,patch2=0:machinescreencontroller,patch3=0:machineside,patch4=0:machinetop,patch5=0:machineside,stdrot=true
|
|
||||||
block:id=%screen_controller,state=facing:east,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machinescreencontroller,stdrot=true
|
|
||||||
block:id=%screen_controller,state=facing:south,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machinescreencontroller,stdrot=true
|
|
||||||
block:id=%screen_controller,state=facing:west,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machinescreencontroller,stdrot=true
|
|
||||||
block:id=%screen_controller,state=facing:up,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machinescreencontroller,stdrot=true
|
|
||||||
block:id=%screen_controller,state=facing:down,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machinescreencontroller,stdrot=true
|
|
||||||
block:id=%matter_beamer,state=lit:true,patch0=0:machinebeamer,patch1=0:machinebeamer,patch2=0:machinebeamer,patch3=0:machinebeamer,patch4=0:machinebeamer,patch5=0:machinebeamer,stdrot=true
|
|
||||||
block:id=%matter_beamer,state=lit:false,patch0=0:machinebeameroff,patch1=0:machinebeameroff,patch2=0:machinebeameroff,patch3=0:machinebeameroff,patch4=0:machinebeameroff,patch5=0:machinebeameroff,stdrot=true
|
|
||||||
block:id=%spawner,state=facing:north,patch0=0:machineside,patch1=0:machinebottom,patch2=0:machinespawner,patch3=0:machineside,patch4=0:machinetop,patch5=0:machineside,stdrot=true
|
|
||||||
block:id=%spawner,state=facing:east,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machinespawner,stdrot=true
|
|
||||||
block:id=%spawner,state=facing:south,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machinespawner,stdrot=true
|
|
||||||
block:id=%spawner,state=facing:west,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machinespawner,stdrot=true
|
|
||||||
block:id=%spawner,state=facing:up,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machinespawner,stdrot=true
|
|
||||||
block:id=%spawner,state=facing:down,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machinespawner,stdrot=true
|
|
||||||
block:id=%tank,stdrot=true
|
|
||||||
block:id=%matter_transmitter,patch0=0:machineside,patch1=0:machinebottom,patch2=0:machineside,patch3=0:machineside,patch4=0:machinetransmitter,patch5=0:machineside,stdrot=true
|
|
||||||
block:id=%matter_receiver,patch0=0:machineside,patch1=0:machinebottom,patch2=0:machineside,patch3=0:machineside,patch4=0:machinereceiver,patch5=0:machineside,stdrot=true
|
|
||||||
block:id=%dialing_device,state=facing:north,patch0=0:machineside,patch1=0:machinebottom,patch2=0:machinedialingdevice,patch3=0:machineside,patch4=0:machinetop,patch5=0:machineside,stdrot=true
|
|
||||||
block:id=%dialing_device,state=facing:east,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machinedialingdevice,stdrot=true
|
|
||||||
block:id=%dialing_device,state=facing:south,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machinedialingdevice,stdrot=true
|
|
||||||
block:id=%dialing_device,state=facing:west,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machinedialingdevice,stdrot=true
|
|
||||||
block:id=%dialing_device,state=facing:up,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machinedialingdevice,stdrot=true
|
|
||||||
block:id=%dialing_device,state=facing:down,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machinedialingdevice,stdrot=true
|
|
||||||
block:id=%destination_analyzer,state=facing:north,patch0=0:machineside,patch1=0:machinebottom,patch2=0:machinedestinationanalyzer,patch3=0:machineside,patch4=0:machinetop,patch5=0:machineside,stdrot=true
|
|
||||||
block:id=%destination_analyzer,state=facing:east,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machinedestinationanalyzer,stdrot=true
|
|
||||||
block:id=%destination_analyzer,state=facing:south,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machinedestinationanalyzer,stdrot=true
|
|
||||||
block:id=%destination_analyzer,state=facing:west,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machinedestinationanalyzer,stdrot=true
|
|
||||||
block:id=%destination_analyzer,state=facing:up,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machinedestinationanalyzer,stdrot=true
|
|
||||||
block:id=%destination_analyzer,state=facing:down,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machinedestinationanalyzer,stdrot=true
|
|
||||||
block:id=%matter_booster,state=facing:north,patch0=0:machineside,patch1=0:machinebottom,patch2=0:machinematterbooster,patch3=0:machineside,patch4=0:machinetop,patch5=0:machineside,stdrot=true
|
|
||||||
block:id=%matter_booster,state=facing:east,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machinematterbooster,stdrot=true
|
|
||||||
block:id=%matter_booster,state=facing:south,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machinematterbooster,stdrot=true
|
|
||||||
block:id=%matter_booster,state=facing:west,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machinematterbooster,stdrot=true
|
|
||||||
block:id=%matter_booster,state=facing:up,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machinematterbooster,stdrot=true
|
|
||||||
block:id=%matter_booster,state=facing:down,patch0=0:machinetop,patch1=0:machineside,patch2=0:machinebottom,patch3=0:machinematterbooster,stdrot=true
|
|
||||||
block:id=%simple_dialer,state=logic_facing:down_tonorth,patch0=0:machinesimpledialer,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%simple_dialer,state=logic_facing:down_tosouth,patch0=0:machinesimpledialer,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%simple_dialer,state=logic_facing:down_towest,patch0=0:machinesimpledialer,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%simple_dialer,state=logic_facing:down_toeast,patch0=0:machinesimpledialer,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%simple_dialer,state=logic_facing:up_tonorth,patch0=0:machinesimpledialer,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%simple_dialer,state=logic_facing:up_tosouth,patch0=0:machinesimpledialer,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%simple_dialer,state=logic_facing:up_towest,patch0=0:machinesimpledialer,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%simple_dialer,state=logic_facing:up_toeast,patch0=0:machinesimpledialer,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%simple_dialer,state=logic_facing:north_towest,patch0=0:machinesimpledialer,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%simple_dialer,state=logic_facing:north_toeast,patch0=0:machinesimpledialer,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%simple_dialer,state=logic_facing:north_toup,patch0=0:machinesimpledialer,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%simple_dialer,state=logic_facing:north_todown,patch0=0:machinesimpledialer,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%simple_dialer,state=logic_facing:south_towest,patch0=0:machinesimpledialer,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%simple_dialer,state=logic_facing:south_toeast,patch0=0:machinesimpledialer,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%simple_dialer,state=logic_facing:south_toup,patch0=0:machinesimpledialer,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%simple_dialer,state=logic_facing:south_todown,patch0=0:machinesimpledialer,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%simple_dialer,state=logic_facing:west_tonorth,patch0=0:machinesimpledialer,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%simple_dialer,state=logic_facing:west_tosouth,patch0=0:machinesimpledialer,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%simple_dialer,state=logic_facing:west_toup,patch0=0:machinesimpledialer,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%simple_dialer,state=logic_facing:west_todown,patch0=0:machinesimpledialer,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%simple_dialer,state=logic_facing:east_tonorth,patch0=0:machinesimpledialer,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%simple_dialer,state=logic_facing:east_tosouth,patch0=0:machinesimpledialer,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%simple_dialer,state=logic_facing:east_toup,patch0=0:machinesimpledialer,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%simple_dialer,state=logic_facing:east_todown,patch0=0:machinesimpledialer,patch1=0:machineside,patch2=0:machinebottom,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%environmental_controller,patch0=0:machinetop,patch1=0:machineenvironmentalcontroller,patch2=0:machinebottom,stdrot=true
|
|
@ -1,66 +0,0 @@
|
|||||||
modname:simpletomb
|
|
||||||
|
|
||||||
modellist:id=%grave_simple,state=facing:north/model_texture:0/is_engraved:true,box=4.000000/1.000000/12.985000:12.000000/8.000000/12.985000:n/0/1.500000/11.375000/14.500000/0.000000,box=4.000000/8.000000/12.985000:12.000000/13.000000/12.985000:n/0/14.500000/0.000000/1.500000/8.125000,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/1.000000:w/1/0.000000/0.000000/16.000000/1.000000:e/1/0.000000/0.000000/16.000000/1.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/1.000000,box=3.000000/1.000000/13.000000:13.000000/13.000000/16.000000:u/2/3.000000/13.000000/13.000000/16.000000:s/2/3.000000/1.000000/13.000000/13.000000:w/2/13.000000/1.000000/16.000000/13.000000:e/2/0.000000/1.000000/3.000000/13.000000:n/2/3.000000/1.000000/13.000000/13.000000,box=4.000000/13.000000/13.000000:12.000000/14.000000/16.000000:u/2/4.000000/11.000000/12.000000/14.000000:s/2/4.000000/0.000000/12.000000/1.000000:w/2/13.000000/0.000000/16.000000/1.000000:e/2/0.000000/0.000000/3.000000/1.000000:n/2/4.000000/0.000000/12.000000/1.000000
|
|
||||||
modellist:id=%grave_simple,state=facing:north/model_texture:1/is_engraved:true,box=4.000000/1.000000/12.985000:12.000000/8.000000/12.985000:n/0/1.500000/11.375000/14.500000/0.000000,box=4.000000/8.000000/12.985000:12.000000/13.000000/12.985000:n/0/14.500000/0.000000/1.500000/8.125000,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/1.000000:w/1/0.000000/0.000000/16.000000/1.000000:e/1/0.000000/0.000000/16.000000/1.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/1.000000,box=3.000000/1.000000/13.000000:13.000000/13.000000/16.000000:u/2/3.000000/13.000000/13.000000/16.000000:s/2/3.000000/1.000000/13.000000/13.000000:w/2/13.000000/1.000000/16.000000/13.000000:e/2/0.000000/1.000000/3.000000/13.000000:n/2/3.000000/1.000000/13.000000/13.000000,box=4.000000/13.000000/13.000000:12.000000/14.000000/16.000000:u/2/4.000000/11.000000/12.000000/14.000000:s/2/4.000000/0.000000/12.000000/1.000000:w/2/13.000000/0.000000/16.000000/1.000000:e/2/0.000000/0.000000/3.000000/1.000000:n/2/4.000000/0.000000/12.000000/1.000000
|
|
||||||
modellist:id=%grave_simple,state=facing:north/model_texture:0/is_engraved:false,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/1.000000:w/0/0.000000/0.000000/16.000000/1.000000:e/0/0.000000/0.000000/16.000000/1.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/1.000000,box=3.000000/1.000000/13.000000:13.000000/13.000000/16.000000:u/1/3.000000/13.000000/13.000000/16.000000:s/1/3.000000/1.000000/13.000000/13.000000:w/1/13.000000/1.000000/16.000000/13.000000:e/1/0.000000/1.000000/3.000000/13.000000:n/1/3.000000/1.000000/13.000000/13.000000,box=4.000000/13.000000/13.000000:12.000000/14.000000/16.000000:u/1/4.000000/11.000000/12.000000/14.000000:s/1/4.000000/0.000000/12.000000/1.000000:w/1/13.000000/0.000000/16.000000/1.000000:e/1/0.000000/0.000000/3.000000/1.000000:n/1/4.000000/0.000000/12.000000/1.000000
|
|
||||||
modellist:id=%grave_simple,state=facing:north/model_texture:1/is_engraved:false,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/1.000000:w/0/0.000000/0.000000/16.000000/1.000000:e/0/0.000000/0.000000/16.000000/1.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/1.000000,box=3.000000/1.000000/13.000000:13.000000/13.000000/16.000000:u/1/3.000000/13.000000/13.000000/16.000000:s/1/3.000000/1.000000/13.000000/13.000000:w/1/13.000000/1.000000/16.000000/13.000000:e/1/0.000000/1.000000/3.000000/13.000000:n/1/3.000000/1.000000/13.000000/13.000000,box=4.000000/13.000000/13.000000:12.000000/14.000000/16.000000:u/1/4.000000/11.000000/12.000000/14.000000:s/1/4.000000/0.000000/12.000000/1.000000:w/1/13.000000/0.000000/16.000000/1.000000:e/1/0.000000/0.000000/3.000000/1.000000:n/1/4.000000/0.000000/12.000000/1.000000
|
|
||||||
modellist:id=%grave_simple,state=facing:south/model_texture:0/is_engraved:true,box=4.000000/1.000000/12.985000:12.000000/8.000000/12.985000:n/0/1.500000/11.375000/14.500000/0.000000:R/0/180/0,box=4.000000/8.000000/12.985000:12.000000/13.000000/12.985000:n/0/14.500000/0.000000/1.500000/8.125000:R/0/180/0,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/1.000000:w/1/0.000000/0.000000/16.000000/1.000000:e/1/0.000000/0.000000/16.000000/1.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/1.000000:R/0/180/0,box=3.000000/1.000000/13.000000:13.000000/13.000000/16.000000:u/2/3.000000/13.000000/13.000000/16.000000:s/2/3.000000/1.000000/13.000000/13.000000:w/2/13.000000/1.000000/16.000000/13.000000:e/2/0.000000/1.000000/3.000000/13.000000:n/2/3.000000/1.000000/13.000000/13.000000:R/0/180/0,box=4.000000/13.000000/13.000000:12.000000/14.000000/16.000000:u/2/4.000000/11.000000/12.000000/14.000000:s/2/4.000000/0.000000/12.000000/1.000000:w/2/13.000000/0.000000/16.000000/1.000000:e/2/0.000000/0.000000/3.000000/1.000000:n/2/4.000000/0.000000/12.000000/1.000000:R/0/180/0
|
|
||||||
modellist:id=%grave_simple,state=facing:south/model_texture:1/is_engraved:true,box=4.000000/1.000000/12.985000:12.000000/8.000000/12.985000:n/0/1.500000/11.375000/14.500000/0.000000:R/0/180/0,box=4.000000/8.000000/12.985000:12.000000/13.000000/12.985000:n/0/14.500000/0.000000/1.500000/8.125000:R/0/180/0,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/1.000000:w/1/0.000000/0.000000/16.000000/1.000000:e/1/0.000000/0.000000/16.000000/1.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/1.000000:R/0/180/0,box=3.000000/1.000000/13.000000:13.000000/13.000000/16.000000:u/2/3.000000/13.000000/13.000000/16.000000:s/2/3.000000/1.000000/13.000000/13.000000:w/2/13.000000/1.000000/16.000000/13.000000:e/2/0.000000/1.000000/3.000000/13.000000:n/2/3.000000/1.000000/13.000000/13.000000:R/0/180/0,box=4.000000/13.000000/13.000000:12.000000/14.000000/16.000000:u/2/4.000000/11.000000/12.000000/14.000000:s/2/4.000000/0.000000/12.000000/1.000000:w/2/13.000000/0.000000/16.000000/1.000000:e/2/0.000000/0.000000/3.000000/1.000000:n/2/4.000000/0.000000/12.000000/1.000000:R/0/180/0
|
|
||||||
modellist:id=%grave_simple,state=facing:south/model_texture:0/is_engraved:false,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/1.000000:w/0/0.000000/0.000000/16.000000/1.000000:e/0/0.000000/0.000000/16.000000/1.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/1.000000:R/0/180/0,box=3.000000/1.000000/13.000000:13.000000/13.000000/16.000000:u/1/3.000000/13.000000/13.000000/16.000000:s/1/3.000000/1.000000/13.000000/13.000000:w/1/13.000000/1.000000/16.000000/13.000000:e/1/0.000000/1.000000/3.000000/13.000000:n/1/3.000000/1.000000/13.000000/13.000000:R/0/180/0,box=4.000000/13.000000/13.000000:12.000000/14.000000/16.000000:u/1/4.000000/11.000000/12.000000/14.000000:s/1/4.000000/0.000000/12.000000/1.000000:w/1/13.000000/0.000000/16.000000/1.000000:e/1/0.000000/0.000000/3.000000/1.000000:n/1/4.000000/0.000000/12.000000/1.000000:R/0/180/0
|
|
||||||
modellist:id=%grave_simple,state=facing:south/model_texture:1/is_engraved:false,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/1.000000:w/0/0.000000/0.000000/16.000000/1.000000:e/0/0.000000/0.000000/16.000000/1.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/1.000000:R/0/180/0,box=3.000000/1.000000/13.000000:13.000000/13.000000/16.000000:u/1/3.000000/13.000000/13.000000/16.000000:s/1/3.000000/1.000000/13.000000/13.000000:w/1/13.000000/1.000000/16.000000/13.000000:e/1/0.000000/1.000000/3.000000/13.000000:n/1/3.000000/1.000000/13.000000/13.000000:R/0/180/0,box=4.000000/13.000000/13.000000:12.000000/14.000000/16.000000:u/1/4.000000/11.000000/12.000000/14.000000:s/1/4.000000/0.000000/12.000000/1.000000:w/1/13.000000/0.000000/16.000000/1.000000:e/1/0.000000/0.000000/3.000000/1.000000:n/1/4.000000/0.000000/12.000000/1.000000:R/0/180/0
|
|
||||||
modellist:id=%grave_simple,state=facing:west/model_texture:0/is_engraved:true,box=4.000000/1.000000/12.985000:12.000000/8.000000/12.985000:n/0/1.500000/11.375000/14.500000/0.000000:R/0/270/0,box=4.000000/8.000000/12.985000:12.000000/13.000000/12.985000:n/0/14.500000/0.000000/1.500000/8.125000:R/0/270/0,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/1.000000:w/1/0.000000/0.000000/16.000000/1.000000:e/1/0.000000/0.000000/16.000000/1.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/1.000000:R/0/270/0,box=3.000000/1.000000/13.000000:13.000000/13.000000/16.000000:u/2/3.000000/13.000000/13.000000/16.000000:s/2/3.000000/1.000000/13.000000/13.000000:w/2/13.000000/1.000000/16.000000/13.000000:e/2/0.000000/1.000000/3.000000/13.000000:n/2/3.000000/1.000000/13.000000/13.000000:R/0/270/0,box=4.000000/13.000000/13.000000:12.000000/14.000000/16.000000:u/2/4.000000/11.000000/12.000000/14.000000:s/2/4.000000/0.000000/12.000000/1.000000:w/2/13.000000/0.000000/16.000000/1.000000:e/2/0.000000/0.000000/3.000000/1.000000:n/2/4.000000/0.000000/12.000000/1.000000:R/0/270/0
|
|
||||||
modellist:id=%grave_simple,state=facing:west/model_texture:1/is_engraved:true,box=4.000000/1.000000/12.985000:12.000000/8.000000/12.985000:n/0/1.500000/11.375000/14.500000/0.000000:R/0/270/0,box=4.000000/8.000000/12.985000:12.000000/13.000000/12.985000:n/0/14.500000/0.000000/1.500000/8.125000:R/0/270/0,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/1.000000:w/1/0.000000/0.000000/16.000000/1.000000:e/1/0.000000/0.000000/16.000000/1.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/1.000000:R/0/270/0,box=3.000000/1.000000/13.000000:13.000000/13.000000/16.000000:u/2/3.000000/13.000000/13.000000/16.000000:s/2/3.000000/1.000000/13.000000/13.000000:w/2/13.000000/1.000000/16.000000/13.000000:e/2/0.000000/1.000000/3.000000/13.000000:n/2/3.000000/1.000000/13.000000/13.000000:R/0/270/0,box=4.000000/13.000000/13.000000:12.000000/14.000000/16.000000:u/2/4.000000/11.000000/12.000000/14.000000:s/2/4.000000/0.000000/12.000000/1.000000:w/2/13.000000/0.000000/16.000000/1.000000:e/2/0.000000/0.000000/3.000000/1.000000:n/2/4.000000/0.000000/12.000000/1.000000:R/0/270/0
|
|
||||||
modellist:id=%grave_simple,state=facing:west/model_texture:0/is_engraved:false,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/1.000000:w/0/0.000000/0.000000/16.000000/1.000000:e/0/0.000000/0.000000/16.000000/1.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/1.000000:R/0/270/0,box=3.000000/1.000000/13.000000:13.000000/13.000000/16.000000:u/1/3.000000/13.000000/13.000000/16.000000:s/1/3.000000/1.000000/13.000000/13.000000:w/1/13.000000/1.000000/16.000000/13.000000:e/1/0.000000/1.000000/3.000000/13.000000:n/1/3.000000/1.000000/13.000000/13.000000:R/0/270/0,box=4.000000/13.000000/13.000000:12.000000/14.000000/16.000000:u/1/4.000000/11.000000/12.000000/14.000000:s/1/4.000000/0.000000/12.000000/1.000000:w/1/13.000000/0.000000/16.000000/1.000000:e/1/0.000000/0.000000/3.000000/1.000000:n/1/4.000000/0.000000/12.000000/1.000000:R/0/270/0
|
|
||||||
modellist:id=%grave_simple,state=facing:west/model_texture:1/is_engraved:false,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/1.000000:w/0/0.000000/0.000000/16.000000/1.000000:e/0/0.000000/0.000000/16.000000/1.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/1.000000:R/0/270/0,box=3.000000/1.000000/13.000000:13.000000/13.000000/16.000000:u/1/3.000000/13.000000/13.000000/16.000000:s/1/3.000000/1.000000/13.000000/13.000000:w/1/13.000000/1.000000/16.000000/13.000000:e/1/0.000000/1.000000/3.000000/13.000000:n/1/3.000000/1.000000/13.000000/13.000000:R/0/270/0,box=4.000000/13.000000/13.000000:12.000000/14.000000/16.000000:u/1/4.000000/11.000000/12.000000/14.000000:s/1/4.000000/0.000000/12.000000/1.000000:w/1/13.000000/0.000000/16.000000/1.000000:e/1/0.000000/0.000000/3.000000/1.000000:n/1/4.000000/0.000000/12.000000/1.000000:R/0/270/0
|
|
||||||
modellist:id=%grave_simple,state=facing:east/model_texture:0/is_engraved:true,box=4.000000/1.000000/12.985000:12.000000/8.000000/12.985000:n/0/1.500000/11.375000/14.500000/0.000000:R/0/90/0,box=4.000000/8.000000/12.985000:12.000000/13.000000/12.985000:n/0/14.500000/0.000000/1.500000/8.125000:R/0/90/0,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/1.000000:w/1/0.000000/0.000000/16.000000/1.000000:e/1/0.000000/0.000000/16.000000/1.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/1.000000:R/0/90/0,box=3.000000/1.000000/13.000000:13.000000/13.000000/16.000000:u/2/3.000000/13.000000/13.000000/16.000000:s/2/3.000000/1.000000/13.000000/13.000000:w/2/13.000000/1.000000/16.000000/13.000000:e/2/0.000000/1.000000/3.000000/13.000000:n/2/3.000000/1.000000/13.000000/13.000000:R/0/90/0,box=4.000000/13.000000/13.000000:12.000000/14.000000/16.000000:u/2/4.000000/11.000000/12.000000/14.000000:s/2/4.000000/0.000000/12.000000/1.000000:w/2/13.000000/0.000000/16.000000/1.000000:e/2/0.000000/0.000000/3.000000/1.000000:n/2/4.000000/0.000000/12.000000/1.000000:R/0/90/0
|
|
||||||
modellist:id=%grave_simple,state=facing:east/model_texture:1/is_engraved:true,box=4.000000/1.000000/12.985000:12.000000/8.000000/12.985000:n/0/1.500000/11.375000/14.500000/0.000000:R/0/90/0,box=4.000000/8.000000/12.985000:12.000000/13.000000/12.985000:n/0/14.500000/0.000000/1.500000/8.125000:R/0/90/0,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/1.000000:w/1/0.000000/0.000000/16.000000/1.000000:e/1/0.000000/0.000000/16.000000/1.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/1.000000:R/0/90/0,box=3.000000/1.000000/13.000000:13.000000/13.000000/16.000000:u/2/3.000000/13.000000/13.000000/16.000000:s/2/3.000000/1.000000/13.000000/13.000000:w/2/13.000000/1.000000/16.000000/13.000000:e/2/0.000000/1.000000/3.000000/13.000000:n/2/3.000000/1.000000/13.000000/13.000000:R/0/90/0,box=4.000000/13.000000/13.000000:12.000000/14.000000/16.000000:u/2/4.000000/11.000000/12.000000/14.000000:s/2/4.000000/0.000000/12.000000/1.000000:w/2/13.000000/0.000000/16.000000/1.000000:e/2/0.000000/0.000000/3.000000/1.000000:n/2/4.000000/0.000000/12.000000/1.000000:R/0/90/0
|
|
||||||
modellist:id=%grave_simple,state=facing:east/model_texture:0/is_engraved:false,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/1.000000:w/0/0.000000/0.000000/16.000000/1.000000:e/0/0.000000/0.000000/16.000000/1.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/1.000000:R/0/90/0,box=3.000000/1.000000/13.000000:13.000000/13.000000/16.000000:u/1/3.000000/13.000000/13.000000/16.000000:s/1/3.000000/1.000000/13.000000/13.000000:w/1/13.000000/1.000000/16.000000/13.000000:e/1/0.000000/1.000000/3.000000/13.000000:n/1/3.000000/1.000000/13.000000/13.000000:R/0/90/0,box=4.000000/13.000000/13.000000:12.000000/14.000000/16.000000:u/1/4.000000/11.000000/12.000000/14.000000:s/1/4.000000/0.000000/12.000000/1.000000:w/1/13.000000/0.000000/16.000000/1.000000:e/1/0.000000/0.000000/3.000000/1.000000:n/1/4.000000/0.000000/12.000000/1.000000:R/0/90/0
|
|
||||||
modellist:id=%grave_simple,state=facing:east/model_texture:1/is_engraved:false,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/1.000000:w/0/0.000000/0.000000/16.000000/1.000000:e/0/0.000000/0.000000/16.000000/1.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/1.000000:R/0/90/0,box=3.000000/1.000000/13.000000:13.000000/13.000000/16.000000:u/1/3.000000/13.000000/13.000000/16.000000:s/1/3.000000/1.000000/13.000000/13.000000:w/1/13.000000/1.000000/16.000000/13.000000:e/1/0.000000/1.000000/3.000000/13.000000:n/1/3.000000/1.000000/13.000000/13.000000:R/0/90/0,box=4.000000/13.000000/13.000000:12.000000/14.000000/16.000000:u/1/4.000000/11.000000/12.000000/14.000000:s/1/4.000000/0.000000/12.000000/1.000000:w/1/13.000000/0.000000/16.000000/1.000000:e/1/0.000000/0.000000/3.000000/1.000000:n/1/4.000000/0.000000/12.000000/1.000000:R/0/90/0
|
|
||||||
modellist:id=%grave_normal,state=facing:north/model_texture:0/is_engraved:true,box=4.000000/4.500000/13.985000:12.000000/13.000000/13.985000:n/0/1.500000/0.000000/14.500000/13.812500,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/1.000000:w/1/0.000000/0.000000/16.000000/1.000000:e/1/0.000000/0.000000/16.000000/1.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/1.000000,box=3.000000/1.000000/0.000000:13.000000/4.000000/16.000000:u/2/3.000000/0.000000/13.000000/16.000000:s/2/3.000000/1.000000/13.000000/4.000000:w/2/0.000000/1.000000/16.000000/4.000000:e/2/0.000000/1.000000/16.000000/4.000000:n/2/3.000000/1.000000/13.000000/4.000000,box=4.000000/4.000000/1.000000:12.000000/5.000000/14.000000:u/2/4.000000/1.000000/12.000000/14.000000:s/2/4.000000/4.000000/12.000000/5.000000:w/2/4.000000/4.000000/12.000000/5.000000:e/2/4.000000/4.000000/12.000000/5.000000:n/2/4.000000/4.000000/12.000000/5.000000,box=3.000000/4.000000/14.000000:13.000000/13.000000/16.000000:u/2/4.000000/14.000000/12.000000/16.000000:s/2/3.000000/4.000000/13.000000/13.000000:w/2/14.000000/4.000000/16.000000/13.000000:e/2/14.000000/4.000000/16.000000/13.000000:n/2/3.000000/4.000000/13.000000/13.000000,box=4.000000/13.000000/14.000000:12.000000/14.000000/16.000000:u/2/4.000000/14.000000/12.000000/16.000000:s/2/4.000000/13.000000/12.000000/14.000000:w/2/14.000000/13.000000/16.000000/14.000000:e/2/14.000000/13.000000/16.000000/14.000000:n/2/4.000000/13.000000/12.000000/14.000000
|
|
||||||
modellist:id=%grave_normal,state=facing:north/model_texture:1/is_engraved:true,box=4.000000/4.500000/13.985000:12.000000/13.000000/13.985000:n/0/1.500000/0.000000/14.500000/13.812500,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/1.000000:w/1/0.000000/0.000000/16.000000/1.000000:e/1/0.000000/0.000000/16.000000/1.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/1.000000,box=3.000000/1.000000/0.000000:13.000000/4.000000/16.000000:u/2/3.000000/0.000000/13.000000/16.000000:s/2/3.000000/1.000000/13.000000/4.000000:w/2/0.000000/1.000000/16.000000/4.000000:e/2/0.000000/1.000000/16.000000/4.000000:n/2/3.000000/1.000000/13.000000/4.000000,box=4.000000/4.000000/1.000000:12.000000/5.000000/14.000000:u/2/4.000000/1.000000/12.000000/14.000000:s/2/4.000000/4.000000/12.000000/5.000000:w/2/4.000000/4.000000/12.000000/5.000000:e/2/4.000000/4.000000/12.000000/5.000000:n/2/4.000000/4.000000/12.000000/5.000000,box=3.000000/4.000000/14.000000:13.000000/13.000000/16.000000:u/2/4.000000/14.000000/12.000000/16.000000:s/2/3.000000/4.000000/13.000000/13.000000:w/2/14.000000/4.000000/16.000000/13.000000:e/2/14.000000/4.000000/16.000000/13.000000:n/2/3.000000/4.000000/13.000000/13.000000,box=4.000000/13.000000/14.000000:12.000000/14.000000/16.000000:u/2/4.000000/14.000000/12.000000/16.000000:s/2/4.000000/13.000000/12.000000/14.000000:w/2/14.000000/13.000000/16.000000/14.000000:e/2/14.000000/13.000000/16.000000/14.000000:n/2/4.000000/13.000000/12.000000/14.000000
|
|
||||||
modellist:id=%grave_normal,state=facing:north/model_texture:0/is_engraved:false,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/1.000000:w/0/0.000000/0.000000/16.000000/1.000000:e/0/0.000000/0.000000/16.000000/1.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/1.000000,box=3.000000/1.000000/0.000000:13.000000/4.000000/16.000000:u/1/3.000000/0.000000/13.000000/16.000000:s/1/3.000000/1.000000/13.000000/4.000000:w/1/0.000000/1.000000/16.000000/4.000000:e/1/0.000000/1.000000/16.000000/4.000000:n/1/3.000000/1.000000/13.000000/4.000000,box=4.000000/4.000000/1.000000:12.000000/5.000000/14.000000:u/1/4.000000/1.000000/12.000000/14.000000:s/1/4.000000/4.000000/12.000000/5.000000:w/1/4.000000/4.000000/12.000000/5.000000:e/1/4.000000/4.000000/12.000000/5.000000:n/1/4.000000/4.000000/12.000000/5.000000,box=3.000000/4.000000/14.000000:13.000000/13.000000/16.000000:u/1/4.000000/14.000000/12.000000/16.000000:s/1/3.000000/4.000000/13.000000/13.000000:w/1/14.000000/4.000000/16.000000/13.000000:e/1/14.000000/4.000000/16.000000/13.000000:n/1/3.000000/4.000000/13.000000/13.000000,box=4.000000/13.000000/14.000000:12.000000/14.000000/16.000000:u/1/4.000000/14.000000/12.000000/16.000000:s/1/4.000000/13.000000/12.000000/14.000000:w/1/14.000000/13.000000/16.000000/14.000000:e/1/14.000000/13.000000/16.000000/14.000000:n/1/4.000000/13.000000/12.000000/14.000000
|
|
||||||
modellist:id=%grave_normal,state=facing:north/model_texture:1/is_engraved:false,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/1.000000:w/0/0.000000/0.000000/16.000000/1.000000:e/0/0.000000/0.000000/16.000000/1.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/1.000000,box=3.000000/1.000000/0.000000:13.000000/4.000000/16.000000:u/1/3.000000/0.000000/13.000000/16.000000:s/1/3.000000/1.000000/13.000000/4.000000:w/1/0.000000/1.000000/16.000000/4.000000:e/1/0.000000/1.000000/16.000000/4.000000:n/1/3.000000/1.000000/13.000000/4.000000,box=4.000000/4.000000/1.000000:12.000000/5.000000/14.000000:u/1/4.000000/1.000000/12.000000/14.000000:s/1/4.000000/4.000000/12.000000/5.000000:w/1/4.000000/4.000000/12.000000/5.000000:e/1/4.000000/4.000000/12.000000/5.000000:n/1/4.000000/4.000000/12.000000/5.000000,box=3.000000/4.000000/14.000000:13.000000/13.000000/16.000000:u/1/4.000000/14.000000/12.000000/16.000000:s/1/3.000000/4.000000/13.000000/13.000000:w/1/14.000000/4.000000/16.000000/13.000000:e/1/14.000000/4.000000/16.000000/13.000000:n/1/3.000000/4.000000/13.000000/13.000000,box=4.000000/13.000000/14.000000:12.000000/14.000000/16.000000:u/1/4.000000/14.000000/12.000000/16.000000:s/1/4.000000/13.000000/12.000000/14.000000:w/1/14.000000/13.000000/16.000000/14.000000:e/1/14.000000/13.000000/16.000000/14.000000:n/1/4.000000/13.000000/12.000000/14.000000
|
|
||||||
modellist:id=%grave_normal,state=facing:south/model_texture:0/is_engraved:true,box=4.000000/4.500000/13.985000:12.000000/13.000000/13.985000:n/0/1.500000/0.000000/14.500000/13.812500:R/0/180/0,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/1.000000:w/1/0.000000/0.000000/16.000000/1.000000:e/1/0.000000/0.000000/16.000000/1.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/1.000000:R/0/180/0,box=3.000000/1.000000/0.000000:13.000000/4.000000/16.000000:u/2/3.000000/0.000000/13.000000/16.000000:s/2/3.000000/1.000000/13.000000/4.000000:w/2/0.000000/1.000000/16.000000/4.000000:e/2/0.000000/1.000000/16.000000/4.000000:n/2/3.000000/1.000000/13.000000/4.000000:R/0/180/0,box=4.000000/4.000000/1.000000:12.000000/5.000000/14.000000:u/2/4.000000/1.000000/12.000000/14.000000:s/2/4.000000/4.000000/12.000000/5.000000:w/2/4.000000/4.000000/12.000000/5.000000:e/2/4.000000/4.000000/12.000000/5.000000:n/2/4.000000/4.000000/12.000000/5.000000:R/0/180/0,box=3.000000/4.000000/14.000000:13.000000/13.000000/16.000000:u/2/4.000000/14.000000/12.000000/16.000000:s/2/3.000000/4.000000/13.000000/13.000000:w/2/14.000000/4.000000/16.000000/13.000000:e/2/14.000000/4.000000/16.000000/13.000000:n/2/3.000000/4.000000/13.000000/13.000000:R/0/180/0,box=4.000000/13.000000/14.000000:12.000000/14.000000/16.000000:u/2/4.000000/14.000000/12.000000/16.000000:s/2/4.000000/13.000000/12.000000/14.000000:w/2/14.000000/13.000000/16.000000/14.000000:e/2/14.000000/13.000000/16.000000/14.000000:n/2/4.000000/13.000000/12.000000/14.000000:R/0/180/0
|
|
||||||
modellist:id=%grave_normal,state=facing:south/model_texture:1/is_engraved:true,box=4.000000/4.500000/13.985000:12.000000/13.000000/13.985000:n/0/1.500000/0.000000/14.500000/13.812500:R/0/180/0,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/1.000000:w/1/0.000000/0.000000/16.000000/1.000000:e/1/0.000000/0.000000/16.000000/1.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/1.000000:R/0/180/0,box=3.000000/1.000000/0.000000:13.000000/4.000000/16.000000:u/2/3.000000/0.000000/13.000000/16.000000:s/2/3.000000/1.000000/13.000000/4.000000:w/2/0.000000/1.000000/16.000000/4.000000:e/2/0.000000/1.000000/16.000000/4.000000:n/2/3.000000/1.000000/13.000000/4.000000:R/0/180/0,box=4.000000/4.000000/1.000000:12.000000/5.000000/14.000000:u/2/4.000000/1.000000/12.000000/14.000000:s/2/4.000000/4.000000/12.000000/5.000000:w/2/4.000000/4.000000/12.000000/5.000000:e/2/4.000000/4.000000/12.000000/5.000000:n/2/4.000000/4.000000/12.000000/5.000000:R/0/180/0,box=3.000000/4.000000/14.000000:13.000000/13.000000/16.000000:u/2/4.000000/14.000000/12.000000/16.000000:s/2/3.000000/4.000000/13.000000/13.000000:w/2/14.000000/4.000000/16.000000/13.000000:e/2/14.000000/4.000000/16.000000/13.000000:n/2/3.000000/4.000000/13.000000/13.000000:R/0/180/0,box=4.000000/13.000000/14.000000:12.000000/14.000000/16.000000:u/2/4.000000/14.000000/12.000000/16.000000:s/2/4.000000/13.000000/12.000000/14.000000:w/2/14.000000/13.000000/16.000000/14.000000:e/2/14.000000/13.000000/16.000000/14.000000:n/2/4.000000/13.000000/12.000000/14.000000:R/0/180/0
|
|
||||||
modellist:id=%grave_normal,state=facing:south/model_texture:0/is_engraved:false,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/1.000000:w/0/0.000000/0.000000/16.000000/1.000000:e/0/0.000000/0.000000/16.000000/1.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/1.000000:R/0/180/0,box=3.000000/1.000000/0.000000:13.000000/4.000000/16.000000:u/1/3.000000/0.000000/13.000000/16.000000:s/1/3.000000/1.000000/13.000000/4.000000:w/1/0.000000/1.000000/16.000000/4.000000:e/1/0.000000/1.000000/16.000000/4.000000:n/1/3.000000/1.000000/13.000000/4.000000:R/0/180/0,box=4.000000/4.000000/1.000000:12.000000/5.000000/14.000000:u/1/4.000000/1.000000/12.000000/14.000000:s/1/4.000000/4.000000/12.000000/5.000000:w/1/4.000000/4.000000/12.000000/5.000000:e/1/4.000000/4.000000/12.000000/5.000000:n/1/4.000000/4.000000/12.000000/5.000000:R/0/180/0,box=3.000000/4.000000/14.000000:13.000000/13.000000/16.000000:u/1/4.000000/14.000000/12.000000/16.000000:s/1/3.000000/4.000000/13.000000/13.000000:w/1/14.000000/4.000000/16.000000/13.000000:e/1/14.000000/4.000000/16.000000/13.000000:n/1/3.000000/4.000000/13.000000/13.000000:R/0/180/0,box=4.000000/13.000000/14.000000:12.000000/14.000000/16.000000:u/1/4.000000/14.000000/12.000000/16.000000:s/1/4.000000/13.000000/12.000000/14.000000:w/1/14.000000/13.000000/16.000000/14.000000:e/1/14.000000/13.000000/16.000000/14.000000:n/1/4.000000/13.000000/12.000000/14.000000:R/0/180/0
|
|
||||||
modellist:id=%grave_normal,state=facing:south/model_texture:1/is_engraved:false,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/1.000000:w/0/0.000000/0.000000/16.000000/1.000000:e/0/0.000000/0.000000/16.000000/1.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/1.000000:R/0/180/0,box=3.000000/1.000000/0.000000:13.000000/4.000000/16.000000:u/1/3.000000/0.000000/13.000000/16.000000:s/1/3.000000/1.000000/13.000000/4.000000:w/1/0.000000/1.000000/16.000000/4.000000:e/1/0.000000/1.000000/16.000000/4.000000:n/1/3.000000/1.000000/13.000000/4.000000:R/0/180/0,box=4.000000/4.000000/1.000000:12.000000/5.000000/14.000000:u/1/4.000000/1.000000/12.000000/14.000000:s/1/4.000000/4.000000/12.000000/5.000000:w/1/4.000000/4.000000/12.000000/5.000000:e/1/4.000000/4.000000/12.000000/5.000000:n/1/4.000000/4.000000/12.000000/5.000000:R/0/180/0,box=3.000000/4.000000/14.000000:13.000000/13.000000/16.000000:u/1/4.000000/14.000000/12.000000/16.000000:s/1/3.000000/4.000000/13.000000/13.000000:w/1/14.000000/4.000000/16.000000/13.000000:e/1/14.000000/4.000000/16.000000/13.000000:n/1/3.000000/4.000000/13.000000/13.000000:R/0/180/0,box=4.000000/13.000000/14.000000:12.000000/14.000000/16.000000:u/1/4.000000/14.000000/12.000000/16.000000:s/1/4.000000/13.000000/12.000000/14.000000:w/1/14.000000/13.000000/16.000000/14.000000:e/1/14.000000/13.000000/16.000000/14.000000:n/1/4.000000/13.000000/12.000000/14.000000:R/0/180/0
|
|
||||||
modellist:id=%grave_normal,state=facing:west/model_texture:0/is_engraved:true,box=4.000000/4.500000/13.985000:12.000000/13.000000/13.985000:n/0/1.500000/0.000000/14.500000/13.812500:R/0/270/0,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/1.000000:w/1/0.000000/0.000000/16.000000/1.000000:e/1/0.000000/0.000000/16.000000/1.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/1.000000:R/0/270/0,box=3.000000/1.000000/0.000000:13.000000/4.000000/16.000000:u/2/3.000000/0.000000/13.000000/16.000000:s/2/3.000000/1.000000/13.000000/4.000000:w/2/0.000000/1.000000/16.000000/4.000000:e/2/0.000000/1.000000/16.000000/4.000000:n/2/3.000000/1.000000/13.000000/4.000000:R/0/270/0,box=4.000000/4.000000/1.000000:12.000000/5.000000/14.000000:u/2/4.000000/1.000000/12.000000/14.000000:s/2/4.000000/4.000000/12.000000/5.000000:w/2/4.000000/4.000000/12.000000/5.000000:e/2/4.000000/4.000000/12.000000/5.000000:n/2/4.000000/4.000000/12.000000/5.000000:R/0/270/0,box=3.000000/4.000000/14.000000:13.000000/13.000000/16.000000:u/2/4.000000/14.000000/12.000000/16.000000:s/2/3.000000/4.000000/13.000000/13.000000:w/2/14.000000/4.000000/16.000000/13.000000:e/2/14.000000/4.000000/16.000000/13.000000:n/2/3.000000/4.000000/13.000000/13.000000:R/0/270/0,box=4.000000/13.000000/14.000000:12.000000/14.000000/16.000000:u/2/4.000000/14.000000/12.000000/16.000000:s/2/4.000000/13.000000/12.000000/14.000000:w/2/14.000000/13.000000/16.000000/14.000000:e/2/14.000000/13.000000/16.000000/14.000000:n/2/4.000000/13.000000/12.000000/14.000000:R/0/270/0
|
|
||||||
modellist:id=%grave_normal,state=facing:west/model_texture:1/is_engraved:true,box=4.000000/4.500000/13.985000:12.000000/13.000000/13.985000:n/0/1.500000/0.000000/14.500000/13.812500:R/0/270/0,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/1.000000:w/1/0.000000/0.000000/16.000000/1.000000:e/1/0.000000/0.000000/16.000000/1.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/1.000000:R/0/270/0,box=3.000000/1.000000/0.000000:13.000000/4.000000/16.000000:u/2/3.000000/0.000000/13.000000/16.000000:s/2/3.000000/1.000000/13.000000/4.000000:w/2/0.000000/1.000000/16.000000/4.000000:e/2/0.000000/1.000000/16.000000/4.000000:n/2/3.000000/1.000000/13.000000/4.000000:R/0/270/0,box=4.000000/4.000000/1.000000:12.000000/5.000000/14.000000:u/2/4.000000/1.000000/12.000000/14.000000:s/2/4.000000/4.000000/12.000000/5.000000:w/2/4.000000/4.000000/12.000000/5.000000:e/2/4.000000/4.000000/12.000000/5.000000:n/2/4.000000/4.000000/12.000000/5.000000:R/0/270/0,box=3.000000/4.000000/14.000000:13.000000/13.000000/16.000000:u/2/4.000000/14.000000/12.000000/16.000000:s/2/3.000000/4.000000/13.000000/13.000000:w/2/14.000000/4.000000/16.000000/13.000000:e/2/14.000000/4.000000/16.000000/13.000000:n/2/3.000000/4.000000/13.000000/13.000000:R/0/270/0,box=4.000000/13.000000/14.000000:12.000000/14.000000/16.000000:u/2/4.000000/14.000000/12.000000/16.000000:s/2/4.000000/13.000000/12.000000/14.000000:w/2/14.000000/13.000000/16.000000/14.000000:e/2/14.000000/13.000000/16.000000/14.000000:n/2/4.000000/13.000000/12.000000/14.000000:R/0/270/0
|
|
||||||
modellist:id=%grave_normal,state=facing:west/model_texture:0/is_engraved:false,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/1.000000:w/0/0.000000/0.000000/16.000000/1.000000:e/0/0.000000/0.000000/16.000000/1.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/1.000000:R/0/270/0,box=3.000000/1.000000/0.000000:13.000000/4.000000/16.000000:u/1/3.000000/0.000000/13.000000/16.000000:s/1/3.000000/1.000000/13.000000/4.000000:w/1/0.000000/1.000000/16.000000/4.000000:e/1/0.000000/1.000000/16.000000/4.000000:n/1/3.000000/1.000000/13.000000/4.000000:R/0/270/0,box=4.000000/4.000000/1.000000:12.000000/5.000000/14.000000:u/1/4.000000/1.000000/12.000000/14.000000:s/1/4.000000/4.000000/12.000000/5.000000:w/1/4.000000/4.000000/12.000000/5.000000:e/1/4.000000/4.000000/12.000000/5.000000:n/1/4.000000/4.000000/12.000000/5.000000:R/0/270/0,box=3.000000/4.000000/14.000000:13.000000/13.000000/16.000000:u/1/4.000000/14.000000/12.000000/16.000000:s/1/3.000000/4.000000/13.000000/13.000000:w/1/14.000000/4.000000/16.000000/13.000000:e/1/14.000000/4.000000/16.000000/13.000000:n/1/3.000000/4.000000/13.000000/13.000000:R/0/270/0,box=4.000000/13.000000/14.000000:12.000000/14.000000/16.000000:u/1/4.000000/14.000000/12.000000/16.000000:s/1/4.000000/13.000000/12.000000/14.000000:w/1/14.000000/13.000000/16.000000/14.000000:e/1/14.000000/13.000000/16.000000/14.000000:n/1/4.000000/13.000000/12.000000/14.000000:R/0/270/0
|
|
||||||
modellist:id=%grave_normal,state=facing:west/model_texture:1/is_engraved:false,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/1.000000:w/0/0.000000/0.000000/16.000000/1.000000:e/0/0.000000/0.000000/16.000000/1.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/1.000000:R/0/270/0,box=3.000000/1.000000/0.000000:13.000000/4.000000/16.000000:u/1/3.000000/0.000000/13.000000/16.000000:s/1/3.000000/1.000000/13.000000/4.000000:w/1/0.000000/1.000000/16.000000/4.000000:e/1/0.000000/1.000000/16.000000/4.000000:n/1/3.000000/1.000000/13.000000/4.000000:R/0/270/0,box=4.000000/4.000000/1.000000:12.000000/5.000000/14.000000:u/1/4.000000/1.000000/12.000000/14.000000:s/1/4.000000/4.000000/12.000000/5.000000:w/1/4.000000/4.000000/12.000000/5.000000:e/1/4.000000/4.000000/12.000000/5.000000:n/1/4.000000/4.000000/12.000000/5.000000:R/0/270/0,box=3.000000/4.000000/14.000000:13.000000/13.000000/16.000000:u/1/4.000000/14.000000/12.000000/16.000000:s/1/3.000000/4.000000/13.000000/13.000000:w/1/14.000000/4.000000/16.000000/13.000000:e/1/14.000000/4.000000/16.000000/13.000000:n/1/3.000000/4.000000/13.000000/13.000000:R/0/270/0,box=4.000000/13.000000/14.000000:12.000000/14.000000/16.000000:u/1/4.000000/14.000000/12.000000/16.000000:s/1/4.000000/13.000000/12.000000/14.000000:w/1/14.000000/13.000000/16.000000/14.000000:e/1/14.000000/13.000000/16.000000/14.000000:n/1/4.000000/13.000000/12.000000/14.000000:R/0/270/0
|
|
||||||
modellist:id=%grave_normal,state=facing:east/model_texture:0/is_engraved:true,box=4.000000/4.500000/13.985000:12.000000/13.000000/13.985000:n/0/1.500000/0.000000/14.500000/13.812500:R/0/90/0,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/1.000000:w/1/0.000000/0.000000/16.000000/1.000000:e/1/0.000000/0.000000/16.000000/1.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/1.000000:R/0/90/0,box=3.000000/1.000000/0.000000:13.000000/4.000000/16.000000:u/2/3.000000/0.000000/13.000000/16.000000:s/2/3.000000/1.000000/13.000000/4.000000:w/2/0.000000/1.000000/16.000000/4.000000:e/2/0.000000/1.000000/16.000000/4.000000:n/2/3.000000/1.000000/13.000000/4.000000:R/0/90/0,box=4.000000/4.000000/1.000000:12.000000/5.000000/14.000000:u/2/4.000000/1.000000/12.000000/14.000000:s/2/4.000000/4.000000/12.000000/5.000000:w/2/4.000000/4.000000/12.000000/5.000000:e/2/4.000000/4.000000/12.000000/5.000000:n/2/4.000000/4.000000/12.000000/5.000000:R/0/90/0,box=3.000000/4.000000/14.000000:13.000000/13.000000/16.000000:u/2/4.000000/14.000000/12.000000/16.000000:s/2/3.000000/4.000000/13.000000/13.000000:w/2/14.000000/4.000000/16.000000/13.000000:e/2/14.000000/4.000000/16.000000/13.000000:n/2/3.000000/4.000000/13.000000/13.000000:R/0/90/0,box=4.000000/13.000000/14.000000:12.000000/14.000000/16.000000:u/2/4.000000/14.000000/12.000000/16.000000:s/2/4.000000/13.000000/12.000000/14.000000:w/2/14.000000/13.000000/16.000000/14.000000:e/2/14.000000/13.000000/16.000000/14.000000:n/2/4.000000/13.000000/12.000000/14.000000:R/0/90/0
|
|
||||||
modellist:id=%grave_normal,state=facing:east/model_texture:1/is_engraved:true,box=4.000000/4.500000/13.985000:12.000000/13.000000/13.985000:n/0/1.500000/0.000000/14.500000/13.812500:R/0/90/0,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/1.000000:w/1/0.000000/0.000000/16.000000/1.000000:e/1/0.000000/0.000000/16.000000/1.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/1.000000:R/0/90/0,box=3.000000/1.000000/0.000000:13.000000/4.000000/16.000000:u/2/3.000000/0.000000/13.000000/16.000000:s/2/3.000000/1.000000/13.000000/4.000000:w/2/0.000000/1.000000/16.000000/4.000000:e/2/0.000000/1.000000/16.000000/4.000000:n/2/3.000000/1.000000/13.000000/4.000000:R/0/90/0,box=4.000000/4.000000/1.000000:12.000000/5.000000/14.000000:u/2/4.000000/1.000000/12.000000/14.000000:s/2/4.000000/4.000000/12.000000/5.000000:w/2/4.000000/4.000000/12.000000/5.000000:e/2/4.000000/4.000000/12.000000/5.000000:n/2/4.000000/4.000000/12.000000/5.000000:R/0/90/0,box=3.000000/4.000000/14.000000:13.000000/13.000000/16.000000:u/2/4.000000/14.000000/12.000000/16.000000:s/2/3.000000/4.000000/13.000000/13.000000:w/2/14.000000/4.000000/16.000000/13.000000:e/2/14.000000/4.000000/16.000000/13.000000:n/2/3.000000/4.000000/13.000000/13.000000:R/0/90/0,box=4.000000/13.000000/14.000000:12.000000/14.000000/16.000000:u/2/4.000000/14.000000/12.000000/16.000000:s/2/4.000000/13.000000/12.000000/14.000000:w/2/14.000000/13.000000/16.000000/14.000000:e/2/14.000000/13.000000/16.000000/14.000000:n/2/4.000000/13.000000/12.000000/14.000000:R/0/90/0
|
|
||||||
modellist:id=%grave_normal,state=facing:east/model_texture:0/is_engraved:false,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/1.000000:w/0/0.000000/0.000000/16.000000/1.000000:e/0/0.000000/0.000000/16.000000/1.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/1.000000:R/0/90/0,box=3.000000/1.000000/0.000000:13.000000/4.000000/16.000000:u/1/3.000000/0.000000/13.000000/16.000000:s/1/3.000000/1.000000/13.000000/4.000000:w/1/0.000000/1.000000/16.000000/4.000000:e/1/0.000000/1.000000/16.000000/4.000000:n/1/3.000000/1.000000/13.000000/4.000000:R/0/90/0,box=4.000000/4.000000/1.000000:12.000000/5.000000/14.000000:u/1/4.000000/1.000000/12.000000/14.000000:s/1/4.000000/4.000000/12.000000/5.000000:w/1/4.000000/4.000000/12.000000/5.000000:e/1/4.000000/4.000000/12.000000/5.000000:n/1/4.000000/4.000000/12.000000/5.000000:R/0/90/0,box=3.000000/4.000000/14.000000:13.000000/13.000000/16.000000:u/1/4.000000/14.000000/12.000000/16.000000:s/1/3.000000/4.000000/13.000000/13.000000:w/1/14.000000/4.000000/16.000000/13.000000:e/1/14.000000/4.000000/16.000000/13.000000:n/1/3.000000/4.000000/13.000000/13.000000:R/0/90/0,box=4.000000/13.000000/14.000000:12.000000/14.000000/16.000000:u/1/4.000000/14.000000/12.000000/16.000000:s/1/4.000000/13.000000/12.000000/14.000000:w/1/14.000000/13.000000/16.000000/14.000000:e/1/14.000000/13.000000/16.000000/14.000000:n/1/4.000000/13.000000/12.000000/14.000000:R/0/90/0
|
|
||||||
modellist:id=%grave_normal,state=facing:east/model_texture:1/is_engraved:false,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/1.000000:w/0/0.000000/0.000000/16.000000/1.000000:e/0/0.000000/0.000000/16.000000/1.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/1.000000:R/0/90/0,box=3.000000/1.000000/0.000000:13.000000/4.000000/16.000000:u/1/3.000000/0.000000/13.000000/16.000000:s/1/3.000000/1.000000/13.000000/4.000000:w/1/0.000000/1.000000/16.000000/4.000000:e/1/0.000000/1.000000/16.000000/4.000000:n/1/3.000000/1.000000/13.000000/4.000000:R/0/90/0,box=4.000000/4.000000/1.000000:12.000000/5.000000/14.000000:u/1/4.000000/1.000000/12.000000/14.000000:s/1/4.000000/4.000000/12.000000/5.000000:w/1/4.000000/4.000000/12.000000/5.000000:e/1/4.000000/4.000000/12.000000/5.000000:n/1/4.000000/4.000000/12.000000/5.000000:R/0/90/0,box=3.000000/4.000000/14.000000:13.000000/13.000000/16.000000:u/1/4.000000/14.000000/12.000000/16.000000:s/1/3.000000/4.000000/13.000000/13.000000:w/1/14.000000/4.000000/16.000000/13.000000:e/1/14.000000/4.000000/16.000000/13.000000:n/1/3.000000/4.000000/13.000000/13.000000:R/0/90/0,box=4.000000/13.000000/14.000000:12.000000/14.000000/16.000000:u/1/4.000000/14.000000/12.000000/16.000000:s/1/4.000000/13.000000/12.000000/14.000000:w/1/14.000000/13.000000/16.000000/14.000000:e/1/14.000000/13.000000/16.000000/14.000000:n/1/4.000000/13.000000/12.000000/14.000000:R/0/90/0
|
|
||||||
modellist:id=%grave_cross,state=facing:north/model_texture:0/is_engraved:true,box=3.000000/1.015000/0.000000:13.000000/1.015000/5.500000:u/0/1.500000/0.000000/14.500000/5.055500,box=3.000000/1.015000/5.500000:13.000000/1.015000/9.000000:u/0/14.500000/5.055500/1.500000/0.000000,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/1.000000:w/1/0.000000/0.000000/16.000000/1.000000:e/1/0.000000/0.000000/16.000000/1.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/1.000000,box=6.500000/2.000000/11.000000:9.500000/9.000000/14.000000:s/2/6.500000/6.000000/9.500000/15.000000:w/2/11.000000/2.000000/14.000000/9.000000:e/2/11.000000/2.000000/14.000000/9.000000:n/2/6.500000/6.000000/9.500000/15.000000,box=6.500000/12.000000/11.000000:9.500000/15.000000/14.000000:u/2/6.500000/11.000000/9.500000/14.000000:s/2/6.500000/0.000000/9.500000/3.000000:w/2/11.000000/12.000000/14.000000/15.000000:e/2/11.000000/12.000000/14.000000/15.000000:n/2/6.500000/0.000000/9.500000/3.000000,box=3.500000/9.000000/11.000000:12.500000/12.000000/14.000000:u/2/3.500000/11.000000/12.500000/14.000000:s/2/3.500000/3.000000/12.500000/6.000000:w/2/11.000000/9.000000/14.000000/12.000000:e/2/11.000000/9.000000/14.000000/12.000000:d/2/3.500000/11.000000/12.500000/14.000000:n/2/3.500000/3.000000/12.500000/6.000000,box=4.500000/1.000000/9.000000:11.500000/2.000000/16.000000:u/2/0.000000/0.000000/7.000000/7.000000:s/2/0.000000/0.000000/7.000000/1.000000:w/2/0.000000/0.000000/7.000000/7.000000:e/2/0.000000/0.000000/7.000000/7.000000:n/2/0.000000/0.000000/7.000000/1.000000,box=5.500000/2.000000/10.000000:10.500000/3.000000/15.000000:u/2/1.000000/1.000000/6.000000/6.000000:s/2/0.000000/0.000000/5.000000/1.000000:w/2/0.000000/0.000000/5.000000/1.000000:e/2/0.000000/0.000000/5.000000/1.000000:n/2/0.000000/0.000000/5.000000/1.000000
|
|
||||||
modellist:id=%grave_cross,state=facing:north/model_texture:1/is_engraved:true,box=3.000000/1.015000/0.000000:13.000000/1.015000/5.500000:u/0/1.500000/0.000000/14.500000/5.055500,box=3.000000/1.015000/5.500000:13.000000/1.015000/9.000000:u/0/14.500000/5.055500/1.500000/0.000000,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/1.000000:w/1/0.000000/0.000000/16.000000/1.000000:e/1/0.000000/0.000000/16.000000/1.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/1.000000,box=6.500000/2.000000/11.000000:9.500000/9.000000/14.000000:s/2/6.500000/6.000000/9.500000/15.000000:w/2/11.000000/2.000000/14.000000/9.000000:e/2/11.000000/2.000000/14.000000/9.000000:n/2/6.500000/6.000000/9.500000/15.000000,box=6.500000/12.000000/11.000000:9.500000/15.000000/14.000000:u/2/6.500000/11.000000/9.500000/14.000000:s/2/6.500000/0.000000/9.500000/3.000000:w/2/11.000000/12.000000/14.000000/15.000000:e/2/11.000000/12.000000/14.000000/15.000000:n/2/6.500000/0.000000/9.500000/3.000000,box=3.500000/9.000000/11.000000:12.500000/12.000000/14.000000:u/2/3.500000/11.000000/12.500000/14.000000:s/2/3.500000/3.000000/12.500000/6.000000:w/2/11.000000/9.000000/14.000000/12.000000:e/2/11.000000/9.000000/14.000000/12.000000:d/2/3.500000/11.000000/12.500000/14.000000:n/2/3.500000/3.000000/12.500000/6.000000,box=4.500000/1.000000/9.000000:11.500000/2.000000/16.000000:u/2/0.000000/0.000000/7.000000/7.000000:s/2/0.000000/0.000000/7.000000/1.000000:w/2/0.000000/0.000000/7.000000/7.000000:e/2/0.000000/0.000000/7.000000/7.000000:n/2/0.000000/0.000000/7.000000/1.000000,box=5.500000/2.000000/10.000000:10.500000/3.000000/15.000000:u/2/1.000000/1.000000/6.000000/6.000000:s/2/0.000000/0.000000/5.000000/1.000000:w/2/0.000000/0.000000/5.000000/1.000000:e/2/0.000000/0.000000/5.000000/1.000000:n/2/0.000000/0.000000/5.000000/1.000000
|
|
||||||
modellist:id=%grave_cross,state=facing:north/model_texture:0/is_engraved:false,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/1.000000:w/0/0.000000/0.000000/16.000000/1.000000:e/0/0.000000/0.000000/16.000000/1.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/1.000000,box=6.500000/2.000000/11.000000:9.500000/9.000000/14.000000:s/1/6.500000/6.000000/9.500000/15.000000:w/1/11.000000/2.000000/14.000000/9.000000:e/1/11.000000/2.000000/14.000000/9.000000:n/1/6.500000/6.000000/9.500000/15.000000,box=6.500000/12.000000/11.000000:9.500000/15.000000/14.000000:u/1/6.500000/11.000000/9.500000/14.000000:s/1/6.500000/0.000000/9.500000/3.000000:w/1/11.000000/12.000000/14.000000/15.000000:e/1/11.000000/12.000000/14.000000/15.000000:n/1/6.500000/0.000000/9.500000/3.000000,box=3.500000/9.000000/11.000000:12.500000/12.000000/14.000000:u/1/3.500000/11.000000/12.500000/14.000000:s/1/3.500000/3.000000/12.500000/6.000000:w/1/11.000000/9.000000/14.000000/12.000000:e/1/11.000000/9.000000/14.000000/12.000000:d/1/3.500000/11.000000/12.500000/14.000000:n/1/3.500000/3.000000/12.500000/6.000000,box=4.500000/1.000000/9.000000:11.500000/2.000000/16.000000:u/1/0.000000/0.000000/7.000000/7.000000:s/1/0.000000/0.000000/7.000000/1.000000:w/1/0.000000/0.000000/7.000000/7.000000:e/1/0.000000/0.000000/7.000000/7.000000:n/1/0.000000/0.000000/7.000000/1.000000,box=5.500000/2.000000/10.000000:10.500000/3.000000/15.000000:u/1/1.000000/1.000000/6.000000/6.000000:s/1/0.000000/0.000000/5.000000/1.000000:w/1/0.000000/0.000000/5.000000/1.000000:e/1/0.000000/0.000000/5.000000/1.000000:n/1/0.000000/0.000000/5.000000/1.000000
|
|
||||||
modellist:id=%grave_cross,state=facing:north/model_texture:1/is_engraved:false,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/1.000000:w/0/0.000000/0.000000/16.000000/1.000000:e/0/0.000000/0.000000/16.000000/1.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/1.000000,box=6.500000/2.000000/11.000000:9.500000/9.000000/14.000000:s/1/6.500000/6.000000/9.500000/15.000000:w/1/11.000000/2.000000/14.000000/9.000000:e/1/11.000000/2.000000/14.000000/9.000000:n/1/6.500000/6.000000/9.500000/15.000000,box=6.500000/12.000000/11.000000:9.500000/15.000000/14.000000:u/1/6.500000/11.000000/9.500000/14.000000:s/1/6.500000/0.000000/9.500000/3.000000:w/1/11.000000/12.000000/14.000000/15.000000:e/1/11.000000/12.000000/14.000000/15.000000:n/1/6.500000/0.000000/9.500000/3.000000,box=3.500000/9.000000/11.000000:12.500000/12.000000/14.000000:u/1/3.500000/11.000000/12.500000/14.000000:s/1/3.500000/3.000000/12.500000/6.000000:w/1/11.000000/9.000000/14.000000/12.000000:e/1/11.000000/9.000000/14.000000/12.000000:d/1/3.500000/11.000000/12.500000/14.000000:n/1/3.500000/3.000000/12.500000/6.000000,box=4.500000/1.000000/9.000000:11.500000/2.000000/16.000000:u/1/0.000000/0.000000/7.000000/7.000000:s/1/0.000000/0.000000/7.000000/1.000000:w/1/0.000000/0.000000/7.000000/7.000000:e/1/0.000000/0.000000/7.000000/7.000000:n/1/0.000000/0.000000/7.000000/1.000000,box=5.500000/2.000000/10.000000:10.500000/3.000000/15.000000:u/1/1.000000/1.000000/6.000000/6.000000:s/1/0.000000/0.000000/5.000000/1.000000:w/1/0.000000/0.000000/5.000000/1.000000:e/1/0.000000/0.000000/5.000000/1.000000:n/1/0.000000/0.000000/5.000000/1.000000
|
|
||||||
modellist:id=%grave_cross,state=facing:south/model_texture:0/is_engraved:true,box=3.000000/1.015000/0.000000:13.000000/1.015000/5.500000:u/0/1.500000/0.000000/14.500000/5.055500:R/0/180/0,box=3.000000/1.015000/5.500000:13.000000/1.015000/9.000000:u/0/14.500000/5.055500/1.500000/0.000000:R/0/180/0,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/1.000000:w/1/0.000000/0.000000/16.000000/1.000000:e/1/0.000000/0.000000/16.000000/1.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/1.000000:R/0/180/0,box=6.500000/2.000000/11.000000:9.500000/9.000000/14.000000:s/2/6.500000/6.000000/9.500000/15.000000:w/2/11.000000/2.000000/14.000000/9.000000:e/2/11.000000/2.000000/14.000000/9.000000:n/2/6.500000/6.000000/9.500000/15.000000:R/0/180/0,box=6.500000/12.000000/11.000000:9.500000/15.000000/14.000000:u/2/6.500000/11.000000/9.500000/14.000000:s/2/6.500000/0.000000/9.500000/3.000000:w/2/11.000000/12.000000/14.000000/15.000000:e/2/11.000000/12.000000/14.000000/15.000000:n/2/6.500000/0.000000/9.500000/3.000000:R/0/180/0,box=3.500000/9.000000/11.000000:12.500000/12.000000/14.000000:u/2/3.500000/11.000000/12.500000/14.000000:s/2/3.500000/3.000000/12.500000/6.000000:w/2/11.000000/9.000000/14.000000/12.000000:e/2/11.000000/9.000000/14.000000/12.000000:d/2/3.500000/11.000000/12.500000/14.000000:n/2/3.500000/3.000000/12.500000/6.000000:R/0/180/0,box=4.500000/1.000000/9.000000:11.500000/2.000000/16.000000:u/2/0.000000/0.000000/7.000000/7.000000:s/2/0.000000/0.000000/7.000000/1.000000:w/2/0.000000/0.000000/7.000000/7.000000:e/2/0.000000/0.000000/7.000000/7.000000:n/2/0.000000/0.000000/7.000000/1.000000:R/0/180/0,box=5.500000/2.000000/10.000000:10.500000/3.000000/15.000000:u/2/1.000000/1.000000/6.000000/6.000000:s/2/0.000000/0.000000/5.000000/1.000000:w/2/0.000000/0.000000/5.000000/1.000000:e/2/0.000000/0.000000/5.000000/1.000000:n/2/0.000000/0.000000/5.000000/1.000000:R/0/180/0
|
|
||||||
modellist:id=%grave_cross,state=facing:south/model_texture:1/is_engraved:true,box=3.000000/1.015000/0.000000:13.000000/1.015000/5.500000:u/0/1.500000/0.000000/14.500000/5.055500:R/0/180/0,box=3.000000/1.015000/5.500000:13.000000/1.015000/9.000000:u/0/14.500000/5.055500/1.500000/0.000000:R/0/180/0,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/1.000000:w/1/0.000000/0.000000/16.000000/1.000000:e/1/0.000000/0.000000/16.000000/1.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/1.000000:R/0/180/0,box=6.500000/2.000000/11.000000:9.500000/9.000000/14.000000:s/2/6.500000/6.000000/9.500000/15.000000:w/2/11.000000/2.000000/14.000000/9.000000:e/2/11.000000/2.000000/14.000000/9.000000:n/2/6.500000/6.000000/9.500000/15.000000:R/0/180/0,box=6.500000/12.000000/11.000000:9.500000/15.000000/14.000000:u/2/6.500000/11.000000/9.500000/14.000000:s/2/6.500000/0.000000/9.500000/3.000000:w/2/11.000000/12.000000/14.000000/15.000000:e/2/11.000000/12.000000/14.000000/15.000000:n/2/6.500000/0.000000/9.500000/3.000000:R/0/180/0,box=3.500000/9.000000/11.000000:12.500000/12.000000/14.000000:u/2/3.500000/11.000000/12.500000/14.000000:s/2/3.500000/3.000000/12.500000/6.000000:w/2/11.000000/9.000000/14.000000/12.000000:e/2/11.000000/9.000000/14.000000/12.000000:d/2/3.500000/11.000000/12.500000/14.000000:n/2/3.500000/3.000000/12.500000/6.000000:R/0/180/0,box=4.500000/1.000000/9.000000:11.500000/2.000000/16.000000:u/2/0.000000/0.000000/7.000000/7.000000:s/2/0.000000/0.000000/7.000000/1.000000:w/2/0.000000/0.000000/7.000000/7.000000:e/2/0.000000/0.000000/7.000000/7.000000:n/2/0.000000/0.000000/7.000000/1.000000:R/0/180/0,box=5.500000/2.000000/10.000000:10.500000/3.000000/15.000000:u/2/1.000000/1.000000/6.000000/6.000000:s/2/0.000000/0.000000/5.000000/1.000000:w/2/0.000000/0.000000/5.000000/1.000000:e/2/0.000000/0.000000/5.000000/1.000000:n/2/0.000000/0.000000/5.000000/1.000000:R/0/180/0
|
|
||||||
modellist:id=%grave_cross,state=facing:south/model_texture:0/is_engraved:false,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/1.000000:w/0/0.000000/0.000000/16.000000/1.000000:e/0/0.000000/0.000000/16.000000/1.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/1.000000:R/0/180/0,box=6.500000/2.000000/11.000000:9.500000/9.000000/14.000000:s/1/6.500000/6.000000/9.500000/15.000000:w/1/11.000000/2.000000/14.000000/9.000000:e/1/11.000000/2.000000/14.000000/9.000000:n/1/6.500000/6.000000/9.500000/15.000000:R/0/180/0,box=6.500000/12.000000/11.000000:9.500000/15.000000/14.000000:u/1/6.500000/11.000000/9.500000/14.000000:s/1/6.500000/0.000000/9.500000/3.000000:w/1/11.000000/12.000000/14.000000/15.000000:e/1/11.000000/12.000000/14.000000/15.000000:n/1/6.500000/0.000000/9.500000/3.000000:R/0/180/0,box=3.500000/9.000000/11.000000:12.500000/12.000000/14.000000:u/1/3.500000/11.000000/12.500000/14.000000:s/1/3.500000/3.000000/12.500000/6.000000:w/1/11.000000/9.000000/14.000000/12.000000:e/1/11.000000/9.000000/14.000000/12.000000:d/1/3.500000/11.000000/12.500000/14.000000:n/1/3.500000/3.000000/12.500000/6.000000:R/0/180/0,box=4.500000/1.000000/9.000000:11.500000/2.000000/16.000000:u/1/0.000000/0.000000/7.000000/7.000000:s/1/0.000000/0.000000/7.000000/1.000000:w/1/0.000000/0.000000/7.000000/7.000000:e/1/0.000000/0.000000/7.000000/7.000000:n/1/0.000000/0.000000/7.000000/1.000000:R/0/180/0,box=5.500000/2.000000/10.000000:10.500000/3.000000/15.000000:u/1/1.000000/1.000000/6.000000/6.000000:s/1/0.000000/0.000000/5.000000/1.000000:w/1/0.000000/0.000000/5.000000/1.000000:e/1/0.000000/0.000000/5.000000/1.000000:n/1/0.000000/0.000000/5.000000/1.000000:R/0/180/0
|
|
||||||
modellist:id=%grave_cross,state=facing:south/model_texture:1/is_engraved:false,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/1.000000:w/0/0.000000/0.000000/16.000000/1.000000:e/0/0.000000/0.000000/16.000000/1.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/1.000000:R/0/180/0,box=6.500000/2.000000/11.000000:9.500000/9.000000/14.000000:s/1/6.500000/6.000000/9.500000/15.000000:w/1/11.000000/2.000000/14.000000/9.000000:e/1/11.000000/2.000000/14.000000/9.000000:n/1/6.500000/6.000000/9.500000/15.000000:R/0/180/0,box=6.500000/12.000000/11.000000:9.500000/15.000000/14.000000:u/1/6.500000/11.000000/9.500000/14.000000:s/1/6.500000/0.000000/9.500000/3.000000:w/1/11.000000/12.000000/14.000000/15.000000:e/1/11.000000/12.000000/14.000000/15.000000:n/1/6.500000/0.000000/9.500000/3.000000:R/0/180/0,box=3.500000/9.000000/11.000000:12.500000/12.000000/14.000000:u/1/3.500000/11.000000/12.500000/14.000000:s/1/3.500000/3.000000/12.500000/6.000000:w/1/11.000000/9.000000/14.000000/12.000000:e/1/11.000000/9.000000/14.000000/12.000000:d/1/3.500000/11.000000/12.500000/14.000000:n/1/3.500000/3.000000/12.500000/6.000000:R/0/180/0,box=4.500000/1.000000/9.000000:11.500000/2.000000/16.000000:u/1/0.000000/0.000000/7.000000/7.000000:s/1/0.000000/0.000000/7.000000/1.000000:w/1/0.000000/0.000000/7.000000/7.000000:e/1/0.000000/0.000000/7.000000/7.000000:n/1/0.000000/0.000000/7.000000/1.000000:R/0/180/0,box=5.500000/2.000000/10.000000:10.500000/3.000000/15.000000:u/1/1.000000/1.000000/6.000000/6.000000:s/1/0.000000/0.000000/5.000000/1.000000:w/1/0.000000/0.000000/5.000000/1.000000:e/1/0.000000/0.000000/5.000000/1.000000:n/1/0.000000/0.000000/5.000000/1.000000:R/0/180/0
|
|
||||||
modellist:id=%grave_cross,state=facing:west/model_texture:0/is_engraved:true,box=3.000000/1.015000/0.000000:13.000000/1.015000/5.500000:u/0/1.500000/0.000000/14.500000/5.055500:R/0/270/0,box=3.000000/1.015000/5.500000:13.000000/1.015000/9.000000:u/0/14.500000/5.055500/1.500000/0.000000:R/0/270/0,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/1.000000:w/1/0.000000/0.000000/16.000000/1.000000:e/1/0.000000/0.000000/16.000000/1.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/1.000000:R/0/270/0,box=6.500000/2.000000/11.000000:9.500000/9.000000/14.000000:s/2/6.500000/6.000000/9.500000/15.000000:w/2/11.000000/2.000000/14.000000/9.000000:e/2/11.000000/2.000000/14.000000/9.000000:n/2/6.500000/6.000000/9.500000/15.000000:R/0/270/0,box=6.500000/12.000000/11.000000:9.500000/15.000000/14.000000:u/2/6.500000/11.000000/9.500000/14.000000:s/2/6.500000/0.000000/9.500000/3.000000:w/2/11.000000/12.000000/14.000000/15.000000:e/2/11.000000/12.000000/14.000000/15.000000:n/2/6.500000/0.000000/9.500000/3.000000:R/0/270/0,box=3.500000/9.000000/11.000000:12.500000/12.000000/14.000000:u/2/3.500000/11.000000/12.500000/14.000000:s/2/3.500000/3.000000/12.500000/6.000000:w/2/11.000000/9.000000/14.000000/12.000000:e/2/11.000000/9.000000/14.000000/12.000000:d/2/3.500000/11.000000/12.500000/14.000000:n/2/3.500000/3.000000/12.500000/6.000000:R/0/270/0,box=4.500000/1.000000/9.000000:11.500000/2.000000/16.000000:u/2/0.000000/0.000000/7.000000/7.000000:s/2/0.000000/0.000000/7.000000/1.000000:w/2/0.000000/0.000000/7.000000/7.000000:e/2/0.000000/0.000000/7.000000/7.000000:n/2/0.000000/0.000000/7.000000/1.000000:R/0/270/0,box=5.500000/2.000000/10.000000:10.500000/3.000000/15.000000:u/2/1.000000/1.000000/6.000000/6.000000:s/2/0.000000/0.000000/5.000000/1.000000:w/2/0.000000/0.000000/5.000000/1.000000:e/2/0.000000/0.000000/5.000000/1.000000:n/2/0.000000/0.000000/5.000000/1.000000:R/0/270/0
|
|
||||||
modellist:id=%grave_cross,state=facing:west/model_texture:1/is_engraved:true,box=3.000000/1.015000/0.000000:13.000000/1.015000/5.500000:u/0/1.500000/0.000000/14.500000/5.055500:R/0/270/0,box=3.000000/1.015000/5.500000:13.000000/1.015000/9.000000:u/0/14.500000/5.055500/1.500000/0.000000:R/0/270/0,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/1.000000:w/1/0.000000/0.000000/16.000000/1.000000:e/1/0.000000/0.000000/16.000000/1.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/1.000000:R/0/270/0,box=6.500000/2.000000/11.000000:9.500000/9.000000/14.000000:s/2/6.500000/6.000000/9.500000/15.000000:w/2/11.000000/2.000000/14.000000/9.000000:e/2/11.000000/2.000000/14.000000/9.000000:n/2/6.500000/6.000000/9.500000/15.000000:R/0/270/0,box=6.500000/12.000000/11.000000:9.500000/15.000000/14.000000:u/2/6.500000/11.000000/9.500000/14.000000:s/2/6.500000/0.000000/9.500000/3.000000:w/2/11.000000/12.000000/14.000000/15.000000:e/2/11.000000/12.000000/14.000000/15.000000:n/2/6.500000/0.000000/9.500000/3.000000:R/0/270/0,box=3.500000/9.000000/11.000000:12.500000/12.000000/14.000000:u/2/3.500000/11.000000/12.500000/14.000000:s/2/3.500000/3.000000/12.500000/6.000000:w/2/11.000000/9.000000/14.000000/12.000000:e/2/11.000000/9.000000/14.000000/12.000000:d/2/3.500000/11.000000/12.500000/14.000000:n/2/3.500000/3.000000/12.500000/6.000000:R/0/270/0,box=4.500000/1.000000/9.000000:11.500000/2.000000/16.000000:u/2/0.000000/0.000000/7.000000/7.000000:s/2/0.000000/0.000000/7.000000/1.000000:w/2/0.000000/0.000000/7.000000/7.000000:e/2/0.000000/0.000000/7.000000/7.000000:n/2/0.000000/0.000000/7.000000/1.000000:R/0/270/0,box=5.500000/2.000000/10.000000:10.500000/3.000000/15.000000:u/2/1.000000/1.000000/6.000000/6.000000:s/2/0.000000/0.000000/5.000000/1.000000:w/2/0.000000/0.000000/5.000000/1.000000:e/2/0.000000/0.000000/5.000000/1.000000:n/2/0.000000/0.000000/5.000000/1.000000:R/0/270/0
|
|
||||||
modellist:id=%grave_cross,state=facing:west/model_texture:0/is_engraved:false,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/1.000000:w/0/0.000000/0.000000/16.000000/1.000000:e/0/0.000000/0.000000/16.000000/1.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/1.000000:R/0/270/0,box=6.500000/2.000000/11.000000:9.500000/9.000000/14.000000:s/1/6.500000/6.000000/9.500000/15.000000:w/1/11.000000/2.000000/14.000000/9.000000:e/1/11.000000/2.000000/14.000000/9.000000:n/1/6.500000/6.000000/9.500000/15.000000:R/0/270/0,box=6.500000/12.000000/11.000000:9.500000/15.000000/14.000000:u/1/6.500000/11.000000/9.500000/14.000000:s/1/6.500000/0.000000/9.500000/3.000000:w/1/11.000000/12.000000/14.000000/15.000000:e/1/11.000000/12.000000/14.000000/15.000000:n/1/6.500000/0.000000/9.500000/3.000000:R/0/270/0,box=3.500000/9.000000/11.000000:12.500000/12.000000/14.000000:u/1/3.500000/11.000000/12.500000/14.000000:s/1/3.500000/3.000000/12.500000/6.000000:w/1/11.000000/9.000000/14.000000/12.000000:e/1/11.000000/9.000000/14.000000/12.000000:d/1/3.500000/11.000000/12.500000/14.000000:n/1/3.500000/3.000000/12.500000/6.000000:R/0/270/0,box=4.500000/1.000000/9.000000:11.500000/2.000000/16.000000:u/1/0.000000/0.000000/7.000000/7.000000:s/1/0.000000/0.000000/7.000000/1.000000:w/1/0.000000/0.000000/7.000000/7.000000:e/1/0.000000/0.000000/7.000000/7.000000:n/1/0.000000/0.000000/7.000000/1.000000:R/0/270/0,box=5.500000/2.000000/10.000000:10.500000/3.000000/15.000000:u/1/1.000000/1.000000/6.000000/6.000000:s/1/0.000000/0.000000/5.000000/1.000000:w/1/0.000000/0.000000/5.000000/1.000000:e/1/0.000000/0.000000/5.000000/1.000000:n/1/0.000000/0.000000/5.000000/1.000000:R/0/270/0
|
|
||||||
modellist:id=%grave_cross,state=facing:west/model_texture:1/is_engraved:false,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/1.000000:w/0/0.000000/0.000000/16.000000/1.000000:e/0/0.000000/0.000000/16.000000/1.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/1.000000:R/0/270/0,box=6.500000/2.000000/11.000000:9.500000/9.000000/14.000000:s/1/6.500000/6.000000/9.500000/15.000000:w/1/11.000000/2.000000/14.000000/9.000000:e/1/11.000000/2.000000/14.000000/9.000000:n/1/6.500000/6.000000/9.500000/15.000000:R/0/270/0,box=6.500000/12.000000/11.000000:9.500000/15.000000/14.000000:u/1/6.500000/11.000000/9.500000/14.000000:s/1/6.500000/0.000000/9.500000/3.000000:w/1/11.000000/12.000000/14.000000/15.000000:e/1/11.000000/12.000000/14.000000/15.000000:n/1/6.500000/0.000000/9.500000/3.000000:R/0/270/0,box=3.500000/9.000000/11.000000:12.500000/12.000000/14.000000:u/1/3.500000/11.000000/12.500000/14.000000:s/1/3.500000/3.000000/12.500000/6.000000:w/1/11.000000/9.000000/14.000000/12.000000:e/1/11.000000/9.000000/14.000000/12.000000:d/1/3.500000/11.000000/12.500000/14.000000:n/1/3.500000/3.000000/12.500000/6.000000:R/0/270/0,box=4.500000/1.000000/9.000000:11.500000/2.000000/16.000000:u/1/0.000000/0.000000/7.000000/7.000000:s/1/0.000000/0.000000/7.000000/1.000000:w/1/0.000000/0.000000/7.000000/7.000000:e/1/0.000000/0.000000/7.000000/7.000000:n/1/0.000000/0.000000/7.000000/1.000000:R/0/270/0,box=5.500000/2.000000/10.000000:10.500000/3.000000/15.000000:u/1/1.000000/1.000000/6.000000/6.000000:s/1/0.000000/0.000000/5.000000/1.000000:w/1/0.000000/0.000000/5.000000/1.000000:e/1/0.000000/0.000000/5.000000/1.000000:n/1/0.000000/0.000000/5.000000/1.000000:R/0/270/0
|
|
||||||
modellist:id=%grave_cross,state=facing:east/model_texture:0/is_engraved:true,box=3.000000/1.015000/0.000000:13.000000/1.015000/5.500000:u/0/1.500000/0.000000/14.500000/5.055500:R/0/90/0,box=3.000000/1.015000/5.500000:13.000000/1.015000/9.000000:u/0/14.500000/5.055500/1.500000/0.000000:R/0/90/0,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/1.000000:w/1/0.000000/0.000000/16.000000/1.000000:e/1/0.000000/0.000000/16.000000/1.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/1.000000:R/0/90/0,box=6.500000/2.000000/11.000000:9.500000/9.000000/14.000000:s/2/6.500000/6.000000/9.500000/15.000000:w/2/11.000000/2.000000/14.000000/9.000000:e/2/11.000000/2.000000/14.000000/9.000000:n/2/6.500000/6.000000/9.500000/15.000000:R/0/90/0,box=6.500000/12.000000/11.000000:9.500000/15.000000/14.000000:u/2/6.500000/11.000000/9.500000/14.000000:s/2/6.500000/0.000000/9.500000/3.000000:w/2/11.000000/12.000000/14.000000/15.000000:e/2/11.000000/12.000000/14.000000/15.000000:n/2/6.500000/0.000000/9.500000/3.000000:R/0/90/0,box=3.500000/9.000000/11.000000:12.500000/12.000000/14.000000:u/2/3.500000/11.000000/12.500000/14.000000:s/2/3.500000/3.000000/12.500000/6.000000:w/2/11.000000/9.000000/14.000000/12.000000:e/2/11.000000/9.000000/14.000000/12.000000:d/2/3.500000/11.000000/12.500000/14.000000:n/2/3.500000/3.000000/12.500000/6.000000:R/0/90/0,box=4.500000/1.000000/9.000000:11.500000/2.000000/16.000000:u/2/0.000000/0.000000/7.000000/7.000000:s/2/0.000000/0.000000/7.000000/1.000000:w/2/0.000000/0.000000/7.000000/7.000000:e/2/0.000000/0.000000/7.000000/7.000000:n/2/0.000000/0.000000/7.000000/1.000000:R/0/90/0,box=5.500000/2.000000/10.000000:10.500000/3.000000/15.000000:u/2/1.000000/1.000000/6.000000/6.000000:s/2/0.000000/0.000000/5.000000/1.000000:w/2/0.000000/0.000000/5.000000/1.000000:e/2/0.000000/0.000000/5.000000/1.000000:n/2/0.000000/0.000000/5.000000/1.000000:R/0/90/0
|
|
||||||
modellist:id=%grave_cross,state=facing:east/model_texture:1/is_engraved:true,box=3.000000/1.015000/0.000000:13.000000/1.015000/5.500000:u/0/1.500000/0.000000/14.500000/5.055500:R/0/90/0,box=3.000000/1.015000/5.500000:13.000000/1.015000/9.000000:u/0/14.500000/5.055500/1.500000/0.000000:R/0/90/0,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/1.000000:w/1/0.000000/0.000000/16.000000/1.000000:e/1/0.000000/0.000000/16.000000/1.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/1.000000:R/0/90/0,box=6.500000/2.000000/11.000000:9.500000/9.000000/14.000000:s/2/6.500000/6.000000/9.500000/15.000000:w/2/11.000000/2.000000/14.000000/9.000000:e/2/11.000000/2.000000/14.000000/9.000000:n/2/6.500000/6.000000/9.500000/15.000000:R/0/90/0,box=6.500000/12.000000/11.000000:9.500000/15.000000/14.000000:u/2/6.500000/11.000000/9.500000/14.000000:s/2/6.500000/0.000000/9.500000/3.000000:w/2/11.000000/12.000000/14.000000/15.000000:e/2/11.000000/12.000000/14.000000/15.000000:n/2/6.500000/0.000000/9.500000/3.000000:R/0/90/0,box=3.500000/9.000000/11.000000:12.500000/12.000000/14.000000:u/2/3.500000/11.000000/12.500000/14.000000:s/2/3.500000/3.000000/12.500000/6.000000:w/2/11.000000/9.000000/14.000000/12.000000:e/2/11.000000/9.000000/14.000000/12.000000:d/2/3.500000/11.000000/12.500000/14.000000:n/2/3.500000/3.000000/12.500000/6.000000:R/0/90/0,box=4.500000/1.000000/9.000000:11.500000/2.000000/16.000000:u/2/0.000000/0.000000/7.000000/7.000000:s/2/0.000000/0.000000/7.000000/1.000000:w/2/0.000000/0.000000/7.000000/7.000000:e/2/0.000000/0.000000/7.000000/7.000000:n/2/0.000000/0.000000/7.000000/1.000000:R/0/90/0,box=5.500000/2.000000/10.000000:10.500000/3.000000/15.000000:u/2/1.000000/1.000000/6.000000/6.000000:s/2/0.000000/0.000000/5.000000/1.000000:w/2/0.000000/0.000000/5.000000/1.000000:e/2/0.000000/0.000000/5.000000/1.000000:n/2/0.000000/0.000000/5.000000/1.000000:R/0/90/0
|
|
||||||
modellist:id=%grave_cross,state=facing:east/model_texture:0/is_engraved:false,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/1.000000:w/0/0.000000/0.000000/16.000000/1.000000:e/0/0.000000/0.000000/16.000000/1.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/1.000000:R/0/90/0,box=6.500000/2.000000/11.000000:9.500000/9.000000/14.000000:s/1/6.500000/6.000000/9.500000/15.000000:w/1/11.000000/2.000000/14.000000/9.000000:e/1/11.000000/2.000000/14.000000/9.000000:n/1/6.500000/6.000000/9.500000/15.000000:R/0/90/0,box=6.500000/12.000000/11.000000:9.500000/15.000000/14.000000:u/1/6.500000/11.000000/9.500000/14.000000:s/1/6.500000/0.000000/9.500000/3.000000:w/1/11.000000/12.000000/14.000000/15.000000:e/1/11.000000/12.000000/14.000000/15.000000:n/1/6.500000/0.000000/9.500000/3.000000:R/0/90/0,box=3.500000/9.000000/11.000000:12.500000/12.000000/14.000000:u/1/3.500000/11.000000/12.500000/14.000000:s/1/3.500000/3.000000/12.500000/6.000000:w/1/11.000000/9.000000/14.000000/12.000000:e/1/11.000000/9.000000/14.000000/12.000000:d/1/3.500000/11.000000/12.500000/14.000000:n/1/3.500000/3.000000/12.500000/6.000000:R/0/90/0,box=4.500000/1.000000/9.000000:11.500000/2.000000/16.000000:u/1/0.000000/0.000000/7.000000/7.000000:s/1/0.000000/0.000000/7.000000/1.000000:w/1/0.000000/0.000000/7.000000/7.000000:e/1/0.000000/0.000000/7.000000/7.000000:n/1/0.000000/0.000000/7.000000/1.000000:R/0/90/0,box=5.500000/2.000000/10.000000:10.500000/3.000000/15.000000:u/1/1.000000/1.000000/6.000000/6.000000:s/1/0.000000/0.000000/5.000000/1.000000:w/1/0.000000/0.000000/5.000000/1.000000:e/1/0.000000/0.000000/5.000000/1.000000:n/1/0.000000/0.000000/5.000000/1.000000:R/0/90/0
|
|
||||||
modellist:id=%grave_cross,state=facing:east/model_texture:1/is_engraved:false,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/1.000000:w/0/0.000000/0.000000/16.000000/1.000000:e/0/0.000000/0.000000/16.000000/1.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/1.000000:R/0/90/0,box=6.500000/2.000000/11.000000:9.500000/9.000000/14.000000:s/1/6.500000/6.000000/9.500000/15.000000:w/1/11.000000/2.000000/14.000000/9.000000:e/1/11.000000/2.000000/14.000000/9.000000:n/1/6.500000/6.000000/9.500000/15.000000:R/0/90/0,box=6.500000/12.000000/11.000000:9.500000/15.000000/14.000000:u/1/6.500000/11.000000/9.500000/14.000000:s/1/6.500000/0.000000/9.500000/3.000000:w/1/11.000000/12.000000/14.000000/15.000000:e/1/11.000000/12.000000/14.000000/15.000000:n/1/6.500000/0.000000/9.500000/3.000000:R/0/90/0,box=3.500000/9.000000/11.000000:12.500000/12.000000/14.000000:u/1/3.500000/11.000000/12.500000/14.000000:s/1/3.500000/3.000000/12.500000/6.000000:w/1/11.000000/9.000000/14.000000/12.000000:e/1/11.000000/9.000000/14.000000/12.000000:d/1/3.500000/11.000000/12.500000/14.000000:n/1/3.500000/3.000000/12.500000/6.000000:R/0/90/0,box=4.500000/1.000000/9.000000:11.500000/2.000000/16.000000:u/1/0.000000/0.000000/7.000000/7.000000:s/1/0.000000/0.000000/7.000000/1.000000:w/1/0.000000/0.000000/7.000000/7.000000:e/1/0.000000/0.000000/7.000000/7.000000:n/1/0.000000/0.000000/7.000000/1.000000:R/0/90/0,box=5.500000/2.000000/10.000000:10.500000/3.000000/15.000000:u/1/1.000000/1.000000/6.000000/6.000000:s/1/0.000000/0.000000/5.000000/1.000000:w/1/0.000000/0.000000/5.000000/1.000000:e/1/0.000000/0.000000/5.000000/1.000000:n/1/0.000000/0.000000/5.000000/1.000000:R/0/90/0
|
|
||||||
modellist:id=%tombstone,state=facing:north/model_texture:0/is_engraved:true,box=4.000000/2.000000/6.985000:12.000000/9.000000/6.985000:n/0/14.500000/0.000000/1.500000/11.375000,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/1.000000:w/1/0.000000/0.000000/16.000000/1.000000:e/1/0.000000/0.000000/16.000000/1.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/1.000000,box=1.000000/1.000000/1.000000:15.000000/1.500000/7.000000:u/2/1.000000/10.000000/9.000000/16.000000:w/2/0.000000/13.500000/6.000000/14.000000:e/2/10.000000/15.500000/16.000000/16.000000:n/2/1.000000/10.000000/15.000000/10.500000,box=1.000000/1.500000/3.000000:15.000000/2.000000/7.000000:u/2/1.000000/12.000000/15.000000/16.000000:w/2/5.000000/11.000000/9.000000/11.500000:e/2/12.000000/11.000000/16.000000/11.500000:n/2/1.000000/11.000000/15.000000/11.500000,box=1.000000/1.000000/7.000000:15.000000/9.500000/15.000000:s/2/1.000000/7.500000/15.000000/16.000000:w/2/3.000000/7.000000/11.000000/15.500000:e/2/0.000000/6.000000/8.000000/14.500000:n/2/1.000000/7.500000/15.000000/16.000000,box=1.000000/10.000000/4.000000:15.000000/10.300000/15.000000:u/2/1.000000/2.500000/15.000000/13.500000:s/2/1.000000/0.100000/15.000000/0.400000:w/2/2.000000/4.000000/14.400000/4.200000:e/2/2.000000/7.000000/13.000000/7.300000:n/2/1.000000/0.100000/15.000000/0.400000,box=0.500000/9.500000/3.500000:15.500000/10.000000/15.500000:u/2/0.500000/2.000000/15.500000/14.000000:s/2/0.500000/0.000000/15.500000/0.500000:w/2/2.000000/4.000000/14.400000/4.200000:e/2/2.000000/7.000000/14.000000/7.500000:d/2/0.500000/3.000000/15.500000/15.000000:n/2/0.500000/1.000000/15.500000/1.500000,box=13.500000/2.000000/4.500000:14.500000/9.500000/5.500000:s/2/2.000000/8.500000/3.000000/16.000000:w/2/1.000000/8.500000/2.000000/16.000000:e/2/3.000000/8.500000/4.000000/16.000000:n/2/0.000000/8.500000/1.000000/16.000000,box=1.500000/2.000000/4.500000:2.500000/9.500000/5.500000:s/2/13.000000/8.500000/14.000000/16.000000:w/2/12.000000/8.500000/13.000000/16.000000:e/2/14.000000/8.500000/15.000000/16.000000:n/2/15.000000/8.500000/16.000000/16.000000,box=0.700000/4.000000/10.500000:1.000000/8.500000/11.500000:u/3/0.000000/0.000000/0.300000/1.000000:s/3/0.000000/0.000000/0.300000/4.500000:w/3/0.000000/0.000000/1.000000/4.500000:d/3/0.000000/0.000000/0.300000/1.000000:n/3/0.000000/0.000000/0.500000/5.500000,box=0.700000/6.500000/9.500000:1.000000/7.500000/10.500000:u/3/0.000000/0.000000/0.300000/1.000000:w/3/0.000000/0.000000/1.000000/1.000000:d/3/0.000000/0.000000/0.300000/1.000000:n/3/0.000000/0.000000/0.300000/1.000000,box=0.700000/6.500000/11.500000:1.000000/7.500000/12.500000:u/3/0.000000/0.000000/0.300000/1.000000:s/3/0.000000/0.000000/0.300000/1.000000:w/3/0.000000/0.000000/1.000000/1.000000:d/3/0.000000/0.000000/0.300000/1.000000,box=15.000000/4.000000/10.500000:15.300000/8.500000/11.500000:u/3/0.000000/0.000000/0.300000/1.000000:s/3/0.000000/0.000000/0.300000/4.500000:e/3/0.000000/0.000000/1.000000/4.500000:d/3/0.000000/0.000000/0.300000/1.000000:n/3/0.000000/0.000000/0.500000/5.500000,box=15.000000/6.500000/9.500000:15.300000/7.500000/10.500000:u/3/0.000000/0.000000/0.300000/1.000000:e/3/0.000000/0.000000/1.000000/1.000000:d/3/0.000000/0.000000/0.300000/1.000000:n/3/0.000000/0.000000/0.300000/1.000000,box=15.000000/6.500000/11.500000:15.300000/7.500000/12.500000:u/3/0.000000/0.000000/0.300000/1.000000:s/3/0.000000/0.000000/0.300000/1.000000:e/3/0.000000/0.000000/1.000000/1.000000:d/3/0.000000/0.000000/0.300000/1.000000
|
|
||||||
modellist:id=%tombstone,state=facing:north/model_texture:1/is_engraved:true,box=4.000000/2.000000/6.985000:12.000000/9.000000/6.985000:n/0/14.500000/0.000000/1.500000/11.375000,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/1.000000:w/1/0.000000/0.000000/16.000000/1.000000:e/1/0.000000/0.000000/16.000000/1.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/1.000000,box=1.000000/1.000000/1.000000:15.000000/1.500000/7.000000:u/2/1.000000/10.000000/9.000000/16.000000:w/2/0.000000/13.500000/6.000000/14.000000:e/2/10.000000/15.500000/16.000000/16.000000:n/2/1.000000/10.000000/15.000000/10.500000,box=1.000000/1.500000/3.000000:15.000000/2.000000/7.000000:u/2/1.000000/12.000000/15.000000/16.000000:w/2/5.000000/11.000000/9.000000/11.500000:e/2/12.000000/11.000000/16.000000/11.500000:n/2/1.000000/11.000000/15.000000/11.500000,box=1.000000/1.000000/7.000000:15.000000/9.500000/15.000000:s/2/1.000000/7.500000/15.000000/16.000000:w/2/3.000000/7.000000/11.000000/15.500000:e/2/0.000000/6.000000/8.000000/14.500000:n/2/1.000000/7.500000/15.000000/16.000000,box=1.000000/10.000000/4.000000:15.000000/10.300000/15.000000:u/2/1.000000/2.500000/15.000000/13.500000:s/2/1.000000/0.100000/15.000000/0.400000:w/2/2.000000/4.000000/14.400000/4.200000:e/2/2.000000/7.000000/13.000000/7.300000:n/2/1.000000/0.100000/15.000000/0.400000,box=0.500000/9.500000/3.500000:15.500000/10.000000/15.500000:u/2/0.500000/2.000000/15.500000/14.000000:s/2/0.500000/0.000000/15.500000/0.500000:w/2/2.000000/4.000000/14.400000/4.200000:e/2/2.000000/7.000000/14.000000/7.500000:d/2/0.500000/3.000000/15.500000/15.000000:n/2/0.500000/1.000000/15.500000/1.500000,box=13.500000/2.000000/4.500000:14.500000/9.500000/5.500000:s/2/2.000000/8.500000/3.000000/16.000000:w/2/1.000000/8.500000/2.000000/16.000000:e/2/3.000000/8.500000/4.000000/16.000000:n/2/0.000000/8.500000/1.000000/16.000000,box=1.500000/2.000000/4.500000:2.500000/9.500000/5.500000:s/2/13.000000/8.500000/14.000000/16.000000:w/2/12.000000/8.500000/13.000000/16.000000:e/2/14.000000/8.500000/15.000000/16.000000:n/2/15.000000/8.500000/16.000000/16.000000,box=0.700000/4.000000/10.500000:1.000000/8.500000/11.500000:u/3/0.000000/0.000000/0.300000/1.000000:s/3/0.000000/0.000000/0.300000/4.500000:w/3/0.000000/0.000000/1.000000/4.500000:d/3/0.000000/0.000000/0.300000/1.000000:n/3/0.000000/0.000000/0.500000/5.500000,box=0.700000/6.500000/9.500000:1.000000/7.500000/10.500000:u/3/0.000000/0.000000/0.300000/1.000000:w/3/0.000000/0.000000/1.000000/1.000000:d/3/0.000000/0.000000/0.300000/1.000000:n/3/0.000000/0.000000/0.300000/1.000000,box=0.700000/6.500000/11.500000:1.000000/7.500000/12.500000:u/3/0.000000/0.000000/0.300000/1.000000:s/3/0.000000/0.000000/0.300000/1.000000:w/3/0.000000/0.000000/1.000000/1.000000:d/3/0.000000/0.000000/0.300000/1.000000,box=15.000000/4.000000/10.500000:15.300000/8.500000/11.500000:u/3/0.000000/0.000000/0.300000/1.000000:s/3/0.000000/0.000000/0.300000/4.500000:e/3/0.000000/0.000000/1.000000/4.500000:d/3/0.000000/0.000000/0.300000/1.000000:n/3/0.000000/0.000000/0.500000/5.500000,box=15.000000/6.500000/9.500000:15.300000/7.500000/10.500000:u/3/0.000000/0.000000/0.300000/1.000000:e/3/0.000000/0.000000/1.000000/1.000000:d/3/0.000000/0.000000/0.300000/1.000000:n/3/0.000000/0.000000/0.300000/1.000000,box=15.000000/6.500000/11.500000:15.300000/7.500000/12.500000:u/3/0.000000/0.000000/0.300000/1.000000:s/3/0.000000/0.000000/0.300000/1.000000:e/3/0.000000/0.000000/1.000000/1.000000:d/3/0.000000/0.000000/0.300000/1.000000
|
|
||||||
modellist:id=%tombstone,state=facing:north/model_texture:0/is_engraved:false,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/1.000000:w/0/0.000000/0.000000/16.000000/1.000000:e/0/0.000000/0.000000/16.000000/1.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/1.000000,box=1.000000/1.000000/1.000000:15.000000/1.500000/7.000000:u/1/1.000000/10.000000/9.000000/16.000000:w/1/0.000000/13.500000/6.000000/14.000000:e/1/10.000000/15.500000/16.000000/16.000000:n/1/1.000000/10.000000/15.000000/10.500000,box=1.000000/1.500000/3.000000:15.000000/2.000000/7.000000:u/1/1.000000/12.000000/15.000000/16.000000:w/1/5.000000/11.000000/9.000000/11.500000:e/1/12.000000/11.000000/16.000000/11.500000:n/1/1.000000/11.000000/15.000000/11.500000,box=1.000000/1.000000/7.000000:15.000000/9.500000/15.000000:s/1/1.000000/7.500000/15.000000/16.000000:w/1/3.000000/7.000000/11.000000/15.500000:e/1/0.000000/6.000000/8.000000/14.500000:n/1/1.000000/7.500000/15.000000/16.000000,box=1.000000/10.000000/4.000000:15.000000/10.300000/15.000000:u/1/1.000000/2.500000/15.000000/13.500000:s/1/1.000000/0.100000/15.000000/0.400000:w/1/2.000000/4.000000/14.400000/4.200000:e/1/2.000000/7.000000/13.000000/7.300000:n/1/1.000000/0.100000/15.000000/0.400000,box=0.500000/9.500000/3.500000:15.500000/10.000000/15.500000:u/1/0.500000/2.000000/15.500000/14.000000:s/1/0.500000/0.000000/15.500000/0.500000:w/1/2.000000/4.000000/14.400000/4.200000:e/1/2.000000/7.000000/14.000000/7.500000:d/1/0.500000/3.000000/15.500000/15.000000:n/1/0.500000/1.000000/15.500000/1.500000,box=13.500000/2.000000/4.500000:14.500000/9.500000/5.500000:s/1/2.000000/8.500000/3.000000/16.000000:w/1/1.000000/8.500000/2.000000/16.000000:e/1/3.000000/8.500000/4.000000/16.000000:n/1/0.000000/8.500000/1.000000/16.000000,box=1.500000/2.000000/4.500000:2.500000/9.500000/5.500000:s/1/13.000000/8.500000/14.000000/16.000000:w/1/12.000000/8.500000/13.000000/16.000000:e/1/14.000000/8.500000/15.000000/16.000000:n/1/15.000000/8.500000/16.000000/16.000000,box=0.700000/4.000000/10.500000:1.000000/8.500000/11.500000:u/2/0.000000/0.000000/0.300000/1.000000:s/2/0.000000/0.000000/0.300000/4.500000:w/2/0.000000/0.000000/1.000000/4.500000:d/2/0.000000/0.000000/0.300000/1.000000:n/2/0.000000/0.000000/0.500000/5.500000,box=0.700000/6.500000/9.500000:1.000000/7.500000/10.500000:u/2/0.000000/0.000000/0.300000/1.000000:w/2/0.000000/0.000000/1.000000/1.000000:d/2/0.000000/0.000000/0.300000/1.000000:n/2/0.000000/0.000000/0.300000/1.000000,box=0.700000/6.500000/11.500000:1.000000/7.500000/12.500000:u/2/0.000000/0.000000/0.300000/1.000000:s/2/0.000000/0.000000/0.300000/1.000000:w/2/0.000000/0.000000/1.000000/1.000000:d/2/0.000000/0.000000/0.300000/1.000000,box=15.000000/4.000000/10.500000:15.300000/8.500000/11.500000:u/2/0.000000/0.000000/0.300000/1.000000:s/2/0.000000/0.000000/0.300000/4.500000:e/2/0.000000/0.000000/1.000000/4.500000:d/2/0.000000/0.000000/0.300000/1.000000:n/2/0.000000/0.000000/0.500000/5.500000,box=15.000000/6.500000/9.500000:15.300000/7.500000/10.500000:u/2/0.000000/0.000000/0.300000/1.000000:e/2/0.000000/0.000000/1.000000/1.000000:d/2/0.000000/0.000000/0.300000/1.000000:n/2/0.000000/0.000000/0.300000/1.000000,box=15.000000/6.500000/11.500000:15.300000/7.500000/12.500000:u/2/0.000000/0.000000/0.300000/1.000000:s/2/0.000000/0.000000/0.300000/1.000000:e/2/0.000000/0.000000/1.000000/1.000000:d/2/0.000000/0.000000/0.300000/1.000000
|
|
||||||
modellist:id=%tombstone,state=facing:north/model_texture:1/is_engraved:false,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/1.000000:w/0/0.000000/0.000000/16.000000/1.000000:e/0/0.000000/0.000000/16.000000/1.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/1.000000,box=1.000000/1.000000/1.000000:15.000000/1.500000/7.000000:u/1/1.000000/10.000000/9.000000/16.000000:w/1/0.000000/13.500000/6.000000/14.000000:e/1/10.000000/15.500000/16.000000/16.000000:n/1/1.000000/10.000000/15.000000/10.500000,box=1.000000/1.500000/3.000000:15.000000/2.000000/7.000000:u/1/1.000000/12.000000/15.000000/16.000000:w/1/5.000000/11.000000/9.000000/11.500000:e/1/12.000000/11.000000/16.000000/11.500000:n/1/1.000000/11.000000/15.000000/11.500000,box=1.000000/1.000000/7.000000:15.000000/9.500000/15.000000:s/1/1.000000/7.500000/15.000000/16.000000:w/1/3.000000/7.000000/11.000000/15.500000:e/1/0.000000/6.000000/8.000000/14.500000:n/1/1.000000/7.500000/15.000000/16.000000,box=1.000000/10.000000/4.000000:15.000000/10.300000/15.000000:u/1/1.000000/2.500000/15.000000/13.500000:s/1/1.000000/0.100000/15.000000/0.400000:w/1/2.000000/4.000000/14.400000/4.200000:e/1/2.000000/7.000000/13.000000/7.300000:n/1/1.000000/0.100000/15.000000/0.400000,box=0.500000/9.500000/3.500000:15.500000/10.000000/15.500000:u/1/0.500000/2.000000/15.500000/14.000000:s/1/0.500000/0.000000/15.500000/0.500000:w/1/2.000000/4.000000/14.400000/4.200000:e/1/2.000000/7.000000/14.000000/7.500000:d/1/0.500000/3.000000/15.500000/15.000000:n/1/0.500000/1.000000/15.500000/1.500000,box=13.500000/2.000000/4.500000:14.500000/9.500000/5.500000:s/1/2.000000/8.500000/3.000000/16.000000:w/1/1.000000/8.500000/2.000000/16.000000:e/1/3.000000/8.500000/4.000000/16.000000:n/1/0.000000/8.500000/1.000000/16.000000,box=1.500000/2.000000/4.500000:2.500000/9.500000/5.500000:s/1/13.000000/8.500000/14.000000/16.000000:w/1/12.000000/8.500000/13.000000/16.000000:e/1/14.000000/8.500000/15.000000/16.000000:n/1/15.000000/8.500000/16.000000/16.000000,box=0.700000/4.000000/10.500000:1.000000/8.500000/11.500000:u/2/0.000000/0.000000/0.300000/1.000000:s/2/0.000000/0.000000/0.300000/4.500000:w/2/0.000000/0.000000/1.000000/4.500000:d/2/0.000000/0.000000/0.300000/1.000000:n/2/0.000000/0.000000/0.500000/5.500000,box=0.700000/6.500000/9.500000:1.000000/7.500000/10.500000:u/2/0.000000/0.000000/0.300000/1.000000:w/2/0.000000/0.000000/1.000000/1.000000:d/2/0.000000/0.000000/0.300000/1.000000:n/2/0.000000/0.000000/0.300000/1.000000,box=0.700000/6.500000/11.500000:1.000000/7.500000/12.500000:u/2/0.000000/0.000000/0.300000/1.000000:s/2/0.000000/0.000000/0.300000/1.000000:w/2/0.000000/0.000000/1.000000/1.000000:d/2/0.000000/0.000000/0.300000/1.000000,box=15.000000/4.000000/10.500000:15.300000/8.500000/11.500000:u/2/0.000000/0.000000/0.300000/1.000000:s/2/0.000000/0.000000/0.300000/4.500000:e/2/0.000000/0.000000/1.000000/4.500000:d/2/0.000000/0.000000/0.300000/1.000000:n/2/0.000000/0.000000/0.500000/5.500000,box=15.000000/6.500000/9.500000:15.300000/7.500000/10.500000:u/2/0.000000/0.000000/0.300000/1.000000:e/2/0.000000/0.000000/1.000000/1.000000:d/2/0.000000/0.000000/0.300000/1.000000:n/2/0.000000/0.000000/0.300000/1.000000,box=15.000000/6.500000/11.500000:15.300000/7.500000/12.500000:u/2/0.000000/0.000000/0.300000/1.000000:s/2/0.000000/0.000000/0.300000/1.000000:e/2/0.000000/0.000000/1.000000/1.000000:d/2/0.000000/0.000000/0.300000/1.000000
|
|
||||||
modellist:id=%tombstone,state=facing:south/model_texture:0/is_engraved:true,box=4.000000/2.000000/6.985000:12.000000/9.000000/6.985000:n/0/14.500000/0.000000/1.500000/11.375000:R/0/180/0,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/1.000000:w/1/0.000000/0.000000/16.000000/1.000000:e/1/0.000000/0.000000/16.000000/1.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/1.000000:R/0/180/0,box=1.000000/1.000000/1.000000:15.000000/1.500000/7.000000:u/2/1.000000/10.000000/9.000000/16.000000:w/2/0.000000/13.500000/6.000000/14.000000:e/2/10.000000/15.500000/16.000000/16.000000:n/2/1.000000/10.000000/15.000000/10.500000:R/0/180/0,box=1.000000/1.500000/3.000000:15.000000/2.000000/7.000000:u/2/1.000000/12.000000/15.000000/16.000000:w/2/5.000000/11.000000/9.000000/11.500000:e/2/12.000000/11.000000/16.000000/11.500000:n/2/1.000000/11.000000/15.000000/11.500000:R/0/180/0,box=1.000000/1.000000/7.000000:15.000000/9.500000/15.000000:s/2/1.000000/7.500000/15.000000/16.000000:w/2/3.000000/7.000000/11.000000/15.500000:e/2/0.000000/6.000000/8.000000/14.500000:n/2/1.000000/7.500000/15.000000/16.000000:R/0/180/0,box=1.000000/10.000000/4.000000:15.000000/10.300000/15.000000:u/2/1.000000/2.500000/15.000000/13.500000:s/2/1.000000/0.100000/15.000000/0.400000:w/2/2.000000/4.000000/14.400000/4.200000:e/2/2.000000/7.000000/13.000000/7.300000:n/2/1.000000/0.100000/15.000000/0.400000:R/0/180/0,box=0.500000/9.500000/3.500000:15.500000/10.000000/15.500000:u/2/0.500000/2.000000/15.500000/14.000000:s/2/0.500000/0.000000/15.500000/0.500000:w/2/2.000000/4.000000/14.400000/4.200000:e/2/2.000000/7.000000/14.000000/7.500000:d/2/0.500000/3.000000/15.500000/15.000000:n/2/0.500000/1.000000/15.500000/1.500000:R/0/180/0,box=13.500000/2.000000/4.500000:14.500000/9.500000/5.500000:s/2/2.000000/8.500000/3.000000/16.000000:w/2/1.000000/8.500000/2.000000/16.000000:e/2/3.000000/8.500000/4.000000/16.000000:n/2/0.000000/8.500000/1.000000/16.000000:R/0/180/0,box=1.500000/2.000000/4.500000:2.500000/9.500000/5.500000:s/2/13.000000/8.500000/14.000000/16.000000:w/2/12.000000/8.500000/13.000000/16.000000:e/2/14.000000/8.500000/15.000000/16.000000:n/2/15.000000/8.500000/16.000000/16.000000:R/0/180/0,box=0.700000/4.000000/10.500000:1.000000/8.500000/11.500000:u/3/0.000000/0.000000/0.300000/1.000000:s/3/0.000000/0.000000/0.300000/4.500000:w/3/0.000000/0.000000/1.000000/4.500000:d/3/0.000000/0.000000/0.300000/1.000000:n/3/0.000000/0.000000/0.500000/5.500000:R/0/180/0,box=0.700000/6.500000/9.500000:1.000000/7.500000/10.500000:u/3/0.000000/0.000000/0.300000/1.000000:w/3/0.000000/0.000000/1.000000/1.000000:d/3/0.000000/0.000000/0.300000/1.000000:n/3/0.000000/0.000000/0.300000/1.000000:R/0/180/0,box=0.700000/6.500000/11.500000:1.000000/7.500000/12.500000:u/3/0.000000/0.000000/0.300000/1.000000:s/3/0.000000/0.000000/0.300000/1.000000:w/3/0.000000/0.000000/1.000000/1.000000:d/3/0.000000/0.000000/0.300000/1.000000:R/0/180/0,box=15.000000/4.000000/10.500000:15.300000/8.500000/11.500000:u/3/0.000000/0.000000/0.300000/1.000000:s/3/0.000000/0.000000/0.300000/4.500000:e/3/0.000000/0.000000/1.000000/4.500000:d/3/0.000000/0.000000/0.300000/1.000000:n/3/0.000000/0.000000/0.500000/5.500000:R/0/180/0,box=15.000000/6.500000/9.500000:15.300000/7.500000/10.500000:u/3/0.000000/0.000000/0.300000/1.000000:e/3/0.000000/0.000000/1.000000/1.000000:d/3/0.000000/0.000000/0.300000/1.000000:n/3/0.000000/0.000000/0.300000/1.000000:R/0/180/0,box=15.000000/6.500000/11.500000:15.300000/7.500000/12.500000:u/3/0.000000/0.000000/0.300000/1.000000:s/3/0.000000/0.000000/0.300000/1.000000:e/3/0.000000/0.000000/1.000000/1.000000:d/3/0.000000/0.000000/0.300000/1.000000:R/0/180/0
|
|
||||||
modellist:id=%tombstone,state=facing:south/model_texture:1/is_engraved:true,box=4.000000/2.000000/6.985000:12.000000/9.000000/6.985000:n/0/14.500000/0.000000/1.500000/11.375000:R/0/180/0,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/1.000000:w/1/0.000000/0.000000/16.000000/1.000000:e/1/0.000000/0.000000/16.000000/1.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/1.000000:R/0/180/0,box=1.000000/1.000000/1.000000:15.000000/1.500000/7.000000:u/2/1.000000/10.000000/9.000000/16.000000:w/2/0.000000/13.500000/6.000000/14.000000:e/2/10.000000/15.500000/16.000000/16.000000:n/2/1.000000/10.000000/15.000000/10.500000:R/0/180/0,box=1.000000/1.500000/3.000000:15.000000/2.000000/7.000000:u/2/1.000000/12.000000/15.000000/16.000000:w/2/5.000000/11.000000/9.000000/11.500000:e/2/12.000000/11.000000/16.000000/11.500000:n/2/1.000000/11.000000/15.000000/11.500000:R/0/180/0,box=1.000000/1.000000/7.000000:15.000000/9.500000/15.000000:s/2/1.000000/7.500000/15.000000/16.000000:w/2/3.000000/7.000000/11.000000/15.500000:e/2/0.000000/6.000000/8.000000/14.500000:n/2/1.000000/7.500000/15.000000/16.000000:R/0/180/0,box=1.000000/10.000000/4.000000:15.000000/10.300000/15.000000:u/2/1.000000/2.500000/15.000000/13.500000:s/2/1.000000/0.100000/15.000000/0.400000:w/2/2.000000/4.000000/14.400000/4.200000:e/2/2.000000/7.000000/13.000000/7.300000:n/2/1.000000/0.100000/15.000000/0.400000:R/0/180/0,box=0.500000/9.500000/3.500000:15.500000/10.000000/15.500000:u/2/0.500000/2.000000/15.500000/14.000000:s/2/0.500000/0.000000/15.500000/0.500000:w/2/2.000000/4.000000/14.400000/4.200000:e/2/2.000000/7.000000/14.000000/7.500000:d/2/0.500000/3.000000/15.500000/15.000000:n/2/0.500000/1.000000/15.500000/1.500000:R/0/180/0,box=13.500000/2.000000/4.500000:14.500000/9.500000/5.500000:s/2/2.000000/8.500000/3.000000/16.000000:w/2/1.000000/8.500000/2.000000/16.000000:e/2/3.000000/8.500000/4.000000/16.000000:n/2/0.000000/8.500000/1.000000/16.000000:R/0/180/0,box=1.500000/2.000000/4.500000:2.500000/9.500000/5.500000:s/2/13.000000/8.500000/14.000000/16.000000:w/2/12.000000/8.500000/13.000000/16.000000:e/2/14.000000/8.500000/15.000000/16.000000:n/2/15.000000/8.500000/16.000000/16.000000:R/0/180/0,box=0.700000/4.000000/10.500000:1.000000/8.500000/11.500000:u/3/0.000000/0.000000/0.300000/1.000000:s/3/0.000000/0.000000/0.300000/4.500000:w/3/0.000000/0.000000/1.000000/4.500000:d/3/0.000000/0.000000/0.300000/1.000000:n/3/0.000000/0.000000/0.500000/5.500000:R/0/180/0,box=0.700000/6.500000/9.500000:1.000000/7.500000/10.500000:u/3/0.000000/0.000000/0.300000/1.000000:w/3/0.000000/0.000000/1.000000/1.000000:d/3/0.000000/0.000000/0.300000/1.000000:n/3/0.000000/0.000000/0.300000/1.000000:R/0/180/0,box=0.700000/6.500000/11.500000:1.000000/7.500000/12.500000:u/3/0.000000/0.000000/0.300000/1.000000:s/3/0.000000/0.000000/0.300000/1.000000:w/3/0.000000/0.000000/1.000000/1.000000:d/3/0.000000/0.000000/0.300000/1.000000:R/0/180/0,box=15.000000/4.000000/10.500000:15.300000/8.500000/11.500000:u/3/0.000000/0.000000/0.300000/1.000000:s/3/0.000000/0.000000/0.300000/4.500000:e/3/0.000000/0.000000/1.000000/4.500000:d/3/0.000000/0.000000/0.300000/1.000000:n/3/0.000000/0.000000/0.500000/5.500000:R/0/180/0,box=15.000000/6.500000/9.500000:15.300000/7.500000/10.500000:u/3/0.000000/0.000000/0.300000/1.000000:e/3/0.000000/0.000000/1.000000/1.000000:d/3/0.000000/0.000000/0.300000/1.000000:n/3/0.000000/0.000000/0.300000/1.000000:R/0/180/0,box=15.000000/6.500000/11.500000:15.300000/7.500000/12.500000:u/3/0.000000/0.000000/0.300000/1.000000:s/3/0.000000/0.000000/0.300000/1.000000:e/3/0.000000/0.000000/1.000000/1.000000:d/3/0.000000/0.000000/0.300000/1.000000:R/0/180/0
|
|
||||||
modellist:id=%tombstone,state=facing:south/model_texture:0/is_engraved:false,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/1.000000:w/0/0.000000/0.000000/16.000000/1.000000:e/0/0.000000/0.000000/16.000000/1.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/1.000000:R/0/180/0,box=1.000000/1.000000/1.000000:15.000000/1.500000/7.000000:u/1/1.000000/10.000000/9.000000/16.000000:w/1/0.000000/13.500000/6.000000/14.000000:e/1/10.000000/15.500000/16.000000/16.000000:n/1/1.000000/10.000000/15.000000/10.500000:R/0/180/0,box=1.000000/1.500000/3.000000:15.000000/2.000000/7.000000:u/1/1.000000/12.000000/15.000000/16.000000:w/1/5.000000/11.000000/9.000000/11.500000:e/1/12.000000/11.000000/16.000000/11.500000:n/1/1.000000/11.000000/15.000000/11.500000:R/0/180/0,box=1.000000/1.000000/7.000000:15.000000/9.500000/15.000000:s/1/1.000000/7.500000/15.000000/16.000000:w/1/3.000000/7.000000/11.000000/15.500000:e/1/0.000000/6.000000/8.000000/14.500000:n/1/1.000000/7.500000/15.000000/16.000000:R/0/180/0,box=1.000000/10.000000/4.000000:15.000000/10.300000/15.000000:u/1/1.000000/2.500000/15.000000/13.500000:s/1/1.000000/0.100000/15.000000/0.400000:w/1/2.000000/4.000000/14.400000/4.200000:e/1/2.000000/7.000000/13.000000/7.300000:n/1/1.000000/0.100000/15.000000/0.400000:R/0/180/0,box=0.500000/9.500000/3.500000:15.500000/10.000000/15.500000:u/1/0.500000/2.000000/15.500000/14.000000:s/1/0.500000/0.000000/15.500000/0.500000:w/1/2.000000/4.000000/14.400000/4.200000:e/1/2.000000/7.000000/14.000000/7.500000:d/1/0.500000/3.000000/15.500000/15.000000:n/1/0.500000/1.000000/15.500000/1.500000:R/0/180/0,box=13.500000/2.000000/4.500000:14.500000/9.500000/5.500000:s/1/2.000000/8.500000/3.000000/16.000000:w/1/1.000000/8.500000/2.000000/16.000000:e/1/3.000000/8.500000/4.000000/16.000000:n/1/0.000000/8.500000/1.000000/16.000000:R/0/180/0,box=1.500000/2.000000/4.500000:2.500000/9.500000/5.500000:s/1/13.000000/8.500000/14.000000/16.000000:w/1/12.000000/8.500000/13.000000/16.000000:e/1/14.000000/8.500000/15.000000/16.000000:n/1/15.000000/8.500000/16.000000/16.000000:R/0/180/0,box=0.700000/4.000000/10.500000:1.000000/8.500000/11.500000:u/2/0.000000/0.000000/0.300000/1.000000:s/2/0.000000/0.000000/0.300000/4.500000:w/2/0.000000/0.000000/1.000000/4.500000:d/2/0.000000/0.000000/0.300000/1.000000:n/2/0.000000/0.000000/0.500000/5.500000:R/0/180/0,box=0.700000/6.500000/9.500000:1.000000/7.500000/10.500000:u/2/0.000000/0.000000/0.300000/1.000000:w/2/0.000000/0.000000/1.000000/1.000000:d/2/0.000000/0.000000/0.300000/1.000000:n/2/0.000000/0.000000/0.300000/1.000000:R/0/180/0,box=0.700000/6.500000/11.500000:1.000000/7.500000/12.500000:u/2/0.000000/0.000000/0.300000/1.000000:s/2/0.000000/0.000000/0.300000/1.000000:w/2/0.000000/0.000000/1.000000/1.000000:d/2/0.000000/0.000000/0.300000/1.000000:R/0/180/0,box=15.000000/4.000000/10.500000:15.300000/8.500000/11.500000:u/2/0.000000/0.000000/0.300000/1.000000:s/2/0.000000/0.000000/0.300000/4.500000:e/2/0.000000/0.000000/1.000000/4.500000:d/2/0.000000/0.000000/0.300000/1.000000:n/2/0.000000/0.000000/0.500000/5.500000:R/0/180/0,box=15.000000/6.500000/9.500000:15.300000/7.500000/10.500000:u/2/0.000000/0.000000/0.300000/1.000000:e/2/0.000000/0.000000/1.000000/1.000000:d/2/0.000000/0.000000/0.300000/1.000000:n/2/0.000000/0.000000/0.300000/1.000000:R/0/180/0,box=15.000000/6.500000/11.500000:15.300000/7.500000/12.500000:u/2/0.000000/0.000000/0.300000/1.000000:s/2/0.000000/0.000000/0.300000/1.000000:e/2/0.000000/0.000000/1.000000/1.000000:d/2/0.000000/0.000000/0.300000/1.000000:R/0/180/0
|
|
||||||
modellist:id=%tombstone,state=facing:south/model_texture:1/is_engraved:false,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/1.000000:w/0/0.000000/0.000000/16.000000/1.000000:e/0/0.000000/0.000000/16.000000/1.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/1.000000:R/0/180/0,box=1.000000/1.000000/1.000000:15.000000/1.500000/7.000000:u/1/1.000000/10.000000/9.000000/16.000000:w/1/0.000000/13.500000/6.000000/14.000000:e/1/10.000000/15.500000/16.000000/16.000000:n/1/1.000000/10.000000/15.000000/10.500000:R/0/180/0,box=1.000000/1.500000/3.000000:15.000000/2.000000/7.000000:u/1/1.000000/12.000000/15.000000/16.000000:w/1/5.000000/11.000000/9.000000/11.500000:e/1/12.000000/11.000000/16.000000/11.500000:n/1/1.000000/11.000000/15.000000/11.500000:R/0/180/0,box=1.000000/1.000000/7.000000:15.000000/9.500000/15.000000:s/1/1.000000/7.500000/15.000000/16.000000:w/1/3.000000/7.000000/11.000000/15.500000:e/1/0.000000/6.000000/8.000000/14.500000:n/1/1.000000/7.500000/15.000000/16.000000:R/0/180/0,box=1.000000/10.000000/4.000000:15.000000/10.300000/15.000000:u/1/1.000000/2.500000/15.000000/13.500000:s/1/1.000000/0.100000/15.000000/0.400000:w/1/2.000000/4.000000/14.400000/4.200000:e/1/2.000000/7.000000/13.000000/7.300000:n/1/1.000000/0.100000/15.000000/0.400000:R/0/180/0,box=0.500000/9.500000/3.500000:15.500000/10.000000/15.500000:u/1/0.500000/2.000000/15.500000/14.000000:s/1/0.500000/0.000000/15.500000/0.500000:w/1/2.000000/4.000000/14.400000/4.200000:e/1/2.000000/7.000000/14.000000/7.500000:d/1/0.500000/3.000000/15.500000/15.000000:n/1/0.500000/1.000000/15.500000/1.500000:R/0/180/0,box=13.500000/2.000000/4.500000:14.500000/9.500000/5.500000:s/1/2.000000/8.500000/3.000000/16.000000:w/1/1.000000/8.500000/2.000000/16.000000:e/1/3.000000/8.500000/4.000000/16.000000:n/1/0.000000/8.500000/1.000000/16.000000:R/0/180/0,box=1.500000/2.000000/4.500000:2.500000/9.500000/5.500000:s/1/13.000000/8.500000/14.000000/16.000000:w/1/12.000000/8.500000/13.000000/16.000000:e/1/14.000000/8.500000/15.000000/16.000000:n/1/15.000000/8.500000/16.000000/16.000000:R/0/180/0,box=0.700000/4.000000/10.500000:1.000000/8.500000/11.500000:u/2/0.000000/0.000000/0.300000/1.000000:s/2/0.000000/0.000000/0.300000/4.500000:w/2/0.000000/0.000000/1.000000/4.500000:d/2/0.000000/0.000000/0.300000/1.000000:n/2/0.000000/0.000000/0.500000/5.500000:R/0/180/0,box=0.700000/6.500000/9.500000:1.000000/7.500000/10.500000:u/2/0.000000/0.000000/0.300000/1.000000:w/2/0.000000/0.000000/1.000000/1.000000:d/2/0.000000/0.000000/0.300000/1.000000:n/2/0.000000/0.000000/0.300000/1.000000:R/0/180/0,box=0.700000/6.500000/11.500000:1.000000/7.500000/12.500000:u/2/0.000000/0.000000/0.300000/1.000000:s/2/0.000000/0.000000/0.300000/1.000000:w/2/0.000000/0.000000/1.000000/1.000000:d/2/0.000000/0.000000/0.300000/1.000000:R/0/180/0,box=15.000000/4.000000/10.500000:15.300000/8.500000/11.500000:u/2/0.000000/0.000000/0.300000/1.000000:s/2/0.000000/0.000000/0.300000/4.500000:e/2/0.000000/0.000000/1.000000/4.500000:d/2/0.000000/0.000000/0.300000/1.000000:n/2/0.000000/0.000000/0.500000/5.500000:R/0/180/0,box=15.000000/6.500000/9.500000:15.300000/7.500000/10.500000:u/2/0.000000/0.000000/0.300000/1.000000:e/2/0.000000/0.000000/1.000000/1.000000:d/2/0.000000/0.000000/0.300000/1.000000:n/2/0.000000/0.000000/0.300000/1.000000:R/0/180/0,box=15.000000/6.500000/11.500000:15.300000/7.500000/12.500000:u/2/0.000000/0.000000/0.300000/1.000000:s/2/0.000000/0.000000/0.300000/1.000000:e/2/0.000000/0.000000/1.000000/1.000000:d/2/0.000000/0.000000/0.300000/1.000000:R/0/180/0
|
|
||||||
modellist:id=%tombstone,state=facing:west/model_texture:0/is_engraved:true,box=4.000000/2.000000/6.985000:12.000000/9.000000/6.985000:n/0/14.500000/0.000000/1.500000/11.375000:R/0/270/0,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/1.000000:w/1/0.000000/0.000000/16.000000/1.000000:e/1/0.000000/0.000000/16.000000/1.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/1.000000:R/0/270/0,box=1.000000/1.000000/1.000000:15.000000/1.500000/7.000000:u/2/1.000000/10.000000/9.000000/16.000000:w/2/0.000000/13.500000/6.000000/14.000000:e/2/10.000000/15.500000/16.000000/16.000000:n/2/1.000000/10.000000/15.000000/10.500000:R/0/270/0,box=1.000000/1.500000/3.000000:15.000000/2.000000/7.000000:u/2/1.000000/12.000000/15.000000/16.000000:w/2/5.000000/11.000000/9.000000/11.500000:e/2/12.000000/11.000000/16.000000/11.500000:n/2/1.000000/11.000000/15.000000/11.500000:R/0/270/0,box=1.000000/1.000000/7.000000:15.000000/9.500000/15.000000:s/2/1.000000/7.500000/15.000000/16.000000:w/2/3.000000/7.000000/11.000000/15.500000:e/2/0.000000/6.000000/8.000000/14.500000:n/2/1.000000/7.500000/15.000000/16.000000:R/0/270/0,box=1.000000/10.000000/4.000000:15.000000/10.300000/15.000000:u/2/1.000000/2.500000/15.000000/13.500000:s/2/1.000000/0.100000/15.000000/0.400000:w/2/2.000000/4.000000/14.400000/4.200000:e/2/2.000000/7.000000/13.000000/7.300000:n/2/1.000000/0.100000/15.000000/0.400000:R/0/270/0,box=0.500000/9.500000/3.500000:15.500000/10.000000/15.500000:u/2/0.500000/2.000000/15.500000/14.000000:s/2/0.500000/0.000000/15.500000/0.500000:w/2/2.000000/4.000000/14.400000/4.200000:e/2/2.000000/7.000000/14.000000/7.500000:d/2/0.500000/3.000000/15.500000/15.000000:n/2/0.500000/1.000000/15.500000/1.500000:R/0/270/0,box=13.500000/2.000000/4.500000:14.500000/9.500000/5.500000:s/2/2.000000/8.500000/3.000000/16.000000:w/2/1.000000/8.500000/2.000000/16.000000:e/2/3.000000/8.500000/4.000000/16.000000:n/2/0.000000/8.500000/1.000000/16.000000:R/0/270/0,box=1.500000/2.000000/4.500000:2.500000/9.500000/5.500000:s/2/13.000000/8.500000/14.000000/16.000000:w/2/12.000000/8.500000/13.000000/16.000000:e/2/14.000000/8.500000/15.000000/16.000000:n/2/15.000000/8.500000/16.000000/16.000000:R/0/270/0,box=0.700000/4.000000/10.500000:1.000000/8.500000/11.500000:u/3/0.000000/0.000000/0.300000/1.000000:s/3/0.000000/0.000000/0.300000/4.500000:w/3/0.000000/0.000000/1.000000/4.500000:d/3/0.000000/0.000000/0.300000/1.000000:n/3/0.000000/0.000000/0.500000/5.500000:R/0/270/0,box=0.700000/6.500000/9.500000:1.000000/7.500000/10.500000:u/3/0.000000/0.000000/0.300000/1.000000:w/3/0.000000/0.000000/1.000000/1.000000:d/3/0.000000/0.000000/0.300000/1.000000:n/3/0.000000/0.000000/0.300000/1.000000:R/0/270/0,box=0.700000/6.500000/11.500000:1.000000/7.500000/12.500000:u/3/0.000000/0.000000/0.300000/1.000000:s/3/0.000000/0.000000/0.300000/1.000000:w/3/0.000000/0.000000/1.000000/1.000000:d/3/0.000000/0.000000/0.300000/1.000000:R/0/270/0,box=15.000000/4.000000/10.500000:15.300000/8.500000/11.500000:u/3/0.000000/0.000000/0.300000/1.000000:s/3/0.000000/0.000000/0.300000/4.500000:e/3/0.000000/0.000000/1.000000/4.500000:d/3/0.000000/0.000000/0.300000/1.000000:n/3/0.000000/0.000000/0.500000/5.500000:R/0/270/0,box=15.000000/6.500000/9.500000:15.300000/7.500000/10.500000:u/3/0.000000/0.000000/0.300000/1.000000:e/3/0.000000/0.000000/1.000000/1.000000:d/3/0.000000/0.000000/0.300000/1.000000:n/3/0.000000/0.000000/0.300000/1.000000:R/0/270/0,box=15.000000/6.500000/11.500000:15.300000/7.500000/12.500000:u/3/0.000000/0.000000/0.300000/1.000000:s/3/0.000000/0.000000/0.300000/1.000000:e/3/0.000000/0.000000/1.000000/1.000000:d/3/0.000000/0.000000/0.300000/1.000000:R/0/270/0
|
|
||||||
modellist:id=%tombstone,state=facing:west/model_texture:1/is_engraved:true,box=4.000000/2.000000/6.985000:12.000000/9.000000/6.985000:n/0/14.500000/0.000000/1.500000/11.375000:R/0/270/0,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/1.000000:w/1/0.000000/0.000000/16.000000/1.000000:e/1/0.000000/0.000000/16.000000/1.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/1.000000:R/0/270/0,box=1.000000/1.000000/1.000000:15.000000/1.500000/7.000000:u/2/1.000000/10.000000/9.000000/16.000000:w/2/0.000000/13.500000/6.000000/14.000000:e/2/10.000000/15.500000/16.000000/16.000000:n/2/1.000000/10.000000/15.000000/10.500000:R/0/270/0,box=1.000000/1.500000/3.000000:15.000000/2.000000/7.000000:u/2/1.000000/12.000000/15.000000/16.000000:w/2/5.000000/11.000000/9.000000/11.500000:e/2/12.000000/11.000000/16.000000/11.500000:n/2/1.000000/11.000000/15.000000/11.500000:R/0/270/0,box=1.000000/1.000000/7.000000:15.000000/9.500000/15.000000:s/2/1.000000/7.500000/15.000000/16.000000:w/2/3.000000/7.000000/11.000000/15.500000:e/2/0.000000/6.000000/8.000000/14.500000:n/2/1.000000/7.500000/15.000000/16.000000:R/0/270/0,box=1.000000/10.000000/4.000000:15.000000/10.300000/15.000000:u/2/1.000000/2.500000/15.000000/13.500000:s/2/1.000000/0.100000/15.000000/0.400000:w/2/2.000000/4.000000/14.400000/4.200000:e/2/2.000000/7.000000/13.000000/7.300000:n/2/1.000000/0.100000/15.000000/0.400000:R/0/270/0,box=0.500000/9.500000/3.500000:15.500000/10.000000/15.500000:u/2/0.500000/2.000000/15.500000/14.000000:s/2/0.500000/0.000000/15.500000/0.500000:w/2/2.000000/4.000000/14.400000/4.200000:e/2/2.000000/7.000000/14.000000/7.500000:d/2/0.500000/3.000000/15.500000/15.000000:n/2/0.500000/1.000000/15.500000/1.500000:R/0/270/0,box=13.500000/2.000000/4.500000:14.500000/9.500000/5.500000:s/2/2.000000/8.500000/3.000000/16.000000:w/2/1.000000/8.500000/2.000000/16.000000:e/2/3.000000/8.500000/4.000000/16.000000:n/2/0.000000/8.500000/1.000000/16.000000:R/0/270/0,box=1.500000/2.000000/4.500000:2.500000/9.500000/5.500000:s/2/13.000000/8.500000/14.000000/16.000000:w/2/12.000000/8.500000/13.000000/16.000000:e/2/14.000000/8.500000/15.000000/16.000000:n/2/15.000000/8.500000/16.000000/16.000000:R/0/270/0,box=0.700000/4.000000/10.500000:1.000000/8.500000/11.500000:u/3/0.000000/0.000000/0.300000/1.000000:s/3/0.000000/0.000000/0.300000/4.500000:w/3/0.000000/0.000000/1.000000/4.500000:d/3/0.000000/0.000000/0.300000/1.000000:n/3/0.000000/0.000000/0.500000/5.500000:R/0/270/0,box=0.700000/6.500000/9.500000:1.000000/7.500000/10.500000:u/3/0.000000/0.000000/0.300000/1.000000:w/3/0.000000/0.000000/1.000000/1.000000:d/3/0.000000/0.000000/0.300000/1.000000:n/3/0.000000/0.000000/0.300000/1.000000:R/0/270/0,box=0.700000/6.500000/11.500000:1.000000/7.500000/12.500000:u/3/0.000000/0.000000/0.300000/1.000000:s/3/0.000000/0.000000/0.300000/1.000000:w/3/0.000000/0.000000/1.000000/1.000000:d/3/0.000000/0.000000/0.300000/1.000000:R/0/270/0,box=15.000000/4.000000/10.500000:15.300000/8.500000/11.500000:u/3/0.000000/0.000000/0.300000/1.000000:s/3/0.000000/0.000000/0.300000/4.500000:e/3/0.000000/0.000000/1.000000/4.500000:d/3/0.000000/0.000000/0.300000/1.000000:n/3/0.000000/0.000000/0.500000/5.500000:R/0/270/0,box=15.000000/6.500000/9.500000:15.300000/7.500000/10.500000:u/3/0.000000/0.000000/0.300000/1.000000:e/3/0.000000/0.000000/1.000000/1.000000:d/3/0.000000/0.000000/0.300000/1.000000:n/3/0.000000/0.000000/0.300000/1.000000:R/0/270/0,box=15.000000/6.500000/11.500000:15.300000/7.500000/12.500000:u/3/0.000000/0.000000/0.300000/1.000000:s/3/0.000000/0.000000/0.300000/1.000000:e/3/0.000000/0.000000/1.000000/1.000000:d/3/0.000000/0.000000/0.300000/1.000000:R/0/270/0
|
|
||||||
modellist:id=%tombstone,state=facing:west/model_texture:0/is_engraved:false,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/1.000000:w/0/0.000000/0.000000/16.000000/1.000000:e/0/0.000000/0.000000/16.000000/1.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/1.000000:R/0/270/0,box=1.000000/1.000000/1.000000:15.000000/1.500000/7.000000:u/1/1.000000/10.000000/9.000000/16.000000:w/1/0.000000/13.500000/6.000000/14.000000:e/1/10.000000/15.500000/16.000000/16.000000:n/1/1.000000/10.000000/15.000000/10.500000:R/0/270/0,box=1.000000/1.500000/3.000000:15.000000/2.000000/7.000000:u/1/1.000000/12.000000/15.000000/16.000000:w/1/5.000000/11.000000/9.000000/11.500000:e/1/12.000000/11.000000/16.000000/11.500000:n/1/1.000000/11.000000/15.000000/11.500000:R/0/270/0,box=1.000000/1.000000/7.000000:15.000000/9.500000/15.000000:s/1/1.000000/7.500000/15.000000/16.000000:w/1/3.000000/7.000000/11.000000/15.500000:e/1/0.000000/6.000000/8.000000/14.500000:n/1/1.000000/7.500000/15.000000/16.000000:R/0/270/0,box=1.000000/10.000000/4.000000:15.000000/10.300000/15.000000:u/1/1.000000/2.500000/15.000000/13.500000:s/1/1.000000/0.100000/15.000000/0.400000:w/1/2.000000/4.000000/14.400000/4.200000:e/1/2.000000/7.000000/13.000000/7.300000:n/1/1.000000/0.100000/15.000000/0.400000:R/0/270/0,box=0.500000/9.500000/3.500000:15.500000/10.000000/15.500000:u/1/0.500000/2.000000/15.500000/14.000000:s/1/0.500000/0.000000/15.500000/0.500000:w/1/2.000000/4.000000/14.400000/4.200000:e/1/2.000000/7.000000/14.000000/7.500000:d/1/0.500000/3.000000/15.500000/15.000000:n/1/0.500000/1.000000/15.500000/1.500000:R/0/270/0,box=13.500000/2.000000/4.500000:14.500000/9.500000/5.500000:s/1/2.000000/8.500000/3.000000/16.000000:w/1/1.000000/8.500000/2.000000/16.000000:e/1/3.000000/8.500000/4.000000/16.000000:n/1/0.000000/8.500000/1.000000/16.000000:R/0/270/0,box=1.500000/2.000000/4.500000:2.500000/9.500000/5.500000:s/1/13.000000/8.500000/14.000000/16.000000:w/1/12.000000/8.500000/13.000000/16.000000:e/1/14.000000/8.500000/15.000000/16.000000:n/1/15.000000/8.500000/16.000000/16.000000:R/0/270/0,box=0.700000/4.000000/10.500000:1.000000/8.500000/11.500000:u/2/0.000000/0.000000/0.300000/1.000000:s/2/0.000000/0.000000/0.300000/4.500000:w/2/0.000000/0.000000/1.000000/4.500000:d/2/0.000000/0.000000/0.300000/1.000000:n/2/0.000000/0.000000/0.500000/5.500000:R/0/270/0,box=0.700000/6.500000/9.500000:1.000000/7.500000/10.500000:u/2/0.000000/0.000000/0.300000/1.000000:w/2/0.000000/0.000000/1.000000/1.000000:d/2/0.000000/0.000000/0.300000/1.000000:n/2/0.000000/0.000000/0.300000/1.000000:R/0/270/0,box=0.700000/6.500000/11.500000:1.000000/7.500000/12.500000:u/2/0.000000/0.000000/0.300000/1.000000:s/2/0.000000/0.000000/0.300000/1.000000:w/2/0.000000/0.000000/1.000000/1.000000:d/2/0.000000/0.000000/0.300000/1.000000:R/0/270/0,box=15.000000/4.000000/10.500000:15.300000/8.500000/11.500000:u/2/0.000000/0.000000/0.300000/1.000000:s/2/0.000000/0.000000/0.300000/4.500000:e/2/0.000000/0.000000/1.000000/4.500000:d/2/0.000000/0.000000/0.300000/1.000000:n/2/0.000000/0.000000/0.500000/5.500000:R/0/270/0,box=15.000000/6.500000/9.500000:15.300000/7.500000/10.500000:u/2/0.000000/0.000000/0.300000/1.000000:e/2/0.000000/0.000000/1.000000/1.000000:d/2/0.000000/0.000000/0.300000/1.000000:n/2/0.000000/0.000000/0.300000/1.000000:R/0/270/0,box=15.000000/6.500000/11.500000:15.300000/7.500000/12.500000:u/2/0.000000/0.000000/0.300000/1.000000:s/2/0.000000/0.000000/0.300000/1.000000:e/2/0.000000/0.000000/1.000000/1.000000:d/2/0.000000/0.000000/0.300000/1.000000:R/0/270/0
|
|
||||||
modellist:id=%tombstone,state=facing:west/model_texture:1/is_engraved:false,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/1.000000:w/0/0.000000/0.000000/16.000000/1.000000:e/0/0.000000/0.000000/16.000000/1.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/1.000000:R/0/270/0,box=1.000000/1.000000/1.000000:15.000000/1.500000/7.000000:u/1/1.000000/10.000000/9.000000/16.000000:w/1/0.000000/13.500000/6.000000/14.000000:e/1/10.000000/15.500000/16.000000/16.000000:n/1/1.000000/10.000000/15.000000/10.500000:R/0/270/0,box=1.000000/1.500000/3.000000:15.000000/2.000000/7.000000:u/1/1.000000/12.000000/15.000000/16.000000:w/1/5.000000/11.000000/9.000000/11.500000:e/1/12.000000/11.000000/16.000000/11.500000:n/1/1.000000/11.000000/15.000000/11.500000:R/0/270/0,box=1.000000/1.000000/7.000000:15.000000/9.500000/15.000000:s/1/1.000000/7.500000/15.000000/16.000000:w/1/3.000000/7.000000/11.000000/15.500000:e/1/0.000000/6.000000/8.000000/14.500000:n/1/1.000000/7.500000/15.000000/16.000000:R/0/270/0,box=1.000000/10.000000/4.000000:15.000000/10.300000/15.000000:u/1/1.000000/2.500000/15.000000/13.500000:s/1/1.000000/0.100000/15.000000/0.400000:w/1/2.000000/4.000000/14.400000/4.200000:e/1/2.000000/7.000000/13.000000/7.300000:n/1/1.000000/0.100000/15.000000/0.400000:R/0/270/0,box=0.500000/9.500000/3.500000:15.500000/10.000000/15.500000:u/1/0.500000/2.000000/15.500000/14.000000:s/1/0.500000/0.000000/15.500000/0.500000:w/1/2.000000/4.000000/14.400000/4.200000:e/1/2.000000/7.000000/14.000000/7.500000:d/1/0.500000/3.000000/15.500000/15.000000:n/1/0.500000/1.000000/15.500000/1.500000:R/0/270/0,box=13.500000/2.000000/4.500000:14.500000/9.500000/5.500000:s/1/2.000000/8.500000/3.000000/16.000000:w/1/1.000000/8.500000/2.000000/16.000000:e/1/3.000000/8.500000/4.000000/16.000000:n/1/0.000000/8.500000/1.000000/16.000000:R/0/270/0,box=1.500000/2.000000/4.500000:2.500000/9.500000/5.500000:s/1/13.000000/8.500000/14.000000/16.000000:w/1/12.000000/8.500000/13.000000/16.000000:e/1/14.000000/8.500000/15.000000/16.000000:n/1/15.000000/8.500000/16.000000/16.000000:R/0/270/0,box=0.700000/4.000000/10.500000:1.000000/8.500000/11.500000:u/2/0.000000/0.000000/0.300000/1.000000:s/2/0.000000/0.000000/0.300000/4.500000:w/2/0.000000/0.000000/1.000000/4.500000:d/2/0.000000/0.000000/0.300000/1.000000:n/2/0.000000/0.000000/0.500000/5.500000:R/0/270/0,box=0.700000/6.500000/9.500000:1.000000/7.500000/10.500000:u/2/0.000000/0.000000/0.300000/1.000000:w/2/0.000000/0.000000/1.000000/1.000000:d/2/0.000000/0.000000/0.300000/1.000000:n/2/0.000000/0.000000/0.300000/1.000000:R/0/270/0,box=0.700000/6.500000/11.500000:1.000000/7.500000/12.500000:u/2/0.000000/0.000000/0.300000/1.000000:s/2/0.000000/0.000000/0.300000/1.000000:w/2/0.000000/0.000000/1.000000/1.000000:d/2/0.000000/0.000000/0.300000/1.000000:R/0/270/0,box=15.000000/4.000000/10.500000:15.300000/8.500000/11.500000:u/2/0.000000/0.000000/0.300000/1.000000:s/2/0.000000/0.000000/0.300000/4.500000:e/2/0.000000/0.000000/1.000000/4.500000:d/2/0.000000/0.000000/0.300000/1.000000:n/2/0.000000/0.000000/0.500000/5.500000:R/0/270/0,box=15.000000/6.500000/9.500000:15.300000/7.500000/10.500000:u/2/0.000000/0.000000/0.300000/1.000000:e/2/0.000000/0.000000/1.000000/1.000000:d/2/0.000000/0.000000/0.300000/1.000000:n/2/0.000000/0.000000/0.300000/1.000000:R/0/270/0,box=15.000000/6.500000/11.500000:15.300000/7.500000/12.500000:u/2/0.000000/0.000000/0.300000/1.000000:s/2/0.000000/0.000000/0.300000/1.000000:e/2/0.000000/0.000000/1.000000/1.000000:d/2/0.000000/0.000000/0.300000/1.000000:R/0/270/0
|
|
||||||
modellist:id=%tombstone,state=facing:east/model_texture:0/is_engraved:true,box=4.000000/2.000000/6.985000:12.000000/9.000000/6.985000:n/0/14.500000/0.000000/1.500000/11.375000:R/0/90/0,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/1.000000:w/1/0.000000/0.000000/16.000000/1.000000:e/1/0.000000/0.000000/16.000000/1.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/1.000000:R/0/90/0,box=1.000000/1.000000/1.000000:15.000000/1.500000/7.000000:u/2/1.000000/10.000000/9.000000/16.000000:w/2/0.000000/13.500000/6.000000/14.000000:e/2/10.000000/15.500000/16.000000/16.000000:n/2/1.000000/10.000000/15.000000/10.500000:R/0/90/0,box=1.000000/1.500000/3.000000:15.000000/2.000000/7.000000:u/2/1.000000/12.000000/15.000000/16.000000:w/2/5.000000/11.000000/9.000000/11.500000:e/2/12.000000/11.000000/16.000000/11.500000:n/2/1.000000/11.000000/15.000000/11.500000:R/0/90/0,box=1.000000/1.000000/7.000000:15.000000/9.500000/15.000000:s/2/1.000000/7.500000/15.000000/16.000000:w/2/3.000000/7.000000/11.000000/15.500000:e/2/0.000000/6.000000/8.000000/14.500000:n/2/1.000000/7.500000/15.000000/16.000000:R/0/90/0,box=1.000000/10.000000/4.000000:15.000000/10.300000/15.000000:u/2/1.000000/2.500000/15.000000/13.500000:s/2/1.000000/0.100000/15.000000/0.400000:w/2/2.000000/4.000000/14.400000/4.200000:e/2/2.000000/7.000000/13.000000/7.300000:n/2/1.000000/0.100000/15.000000/0.400000:R/0/90/0,box=0.500000/9.500000/3.500000:15.500000/10.000000/15.500000:u/2/0.500000/2.000000/15.500000/14.000000:s/2/0.500000/0.000000/15.500000/0.500000:w/2/2.000000/4.000000/14.400000/4.200000:e/2/2.000000/7.000000/14.000000/7.500000:d/2/0.500000/3.000000/15.500000/15.000000:n/2/0.500000/1.000000/15.500000/1.500000:R/0/90/0,box=13.500000/2.000000/4.500000:14.500000/9.500000/5.500000:s/2/2.000000/8.500000/3.000000/16.000000:w/2/1.000000/8.500000/2.000000/16.000000:e/2/3.000000/8.500000/4.000000/16.000000:n/2/0.000000/8.500000/1.000000/16.000000:R/0/90/0,box=1.500000/2.000000/4.500000:2.500000/9.500000/5.500000:s/2/13.000000/8.500000/14.000000/16.000000:w/2/12.000000/8.500000/13.000000/16.000000:e/2/14.000000/8.500000/15.000000/16.000000:n/2/15.000000/8.500000/16.000000/16.000000:R/0/90/0,box=0.700000/4.000000/10.500000:1.000000/8.500000/11.500000:u/3/0.000000/0.000000/0.300000/1.000000:s/3/0.000000/0.000000/0.300000/4.500000:w/3/0.000000/0.000000/1.000000/4.500000:d/3/0.000000/0.000000/0.300000/1.000000:n/3/0.000000/0.000000/0.500000/5.500000:R/0/90/0,box=0.700000/6.500000/9.500000:1.000000/7.500000/10.500000:u/3/0.000000/0.000000/0.300000/1.000000:w/3/0.000000/0.000000/1.000000/1.000000:d/3/0.000000/0.000000/0.300000/1.000000:n/3/0.000000/0.000000/0.300000/1.000000:R/0/90/0,box=0.700000/6.500000/11.500000:1.000000/7.500000/12.500000:u/3/0.000000/0.000000/0.300000/1.000000:s/3/0.000000/0.000000/0.300000/1.000000:w/3/0.000000/0.000000/1.000000/1.000000:d/3/0.000000/0.000000/0.300000/1.000000:R/0/90/0,box=15.000000/4.000000/10.500000:15.300000/8.500000/11.500000:u/3/0.000000/0.000000/0.300000/1.000000:s/3/0.000000/0.000000/0.300000/4.500000:e/3/0.000000/0.000000/1.000000/4.500000:d/3/0.000000/0.000000/0.300000/1.000000:n/3/0.000000/0.000000/0.500000/5.500000:R/0/90/0,box=15.000000/6.500000/9.500000:15.300000/7.500000/10.500000:u/3/0.000000/0.000000/0.300000/1.000000:e/3/0.000000/0.000000/1.000000/1.000000:d/3/0.000000/0.000000/0.300000/1.000000:n/3/0.000000/0.000000/0.300000/1.000000:R/0/90/0,box=15.000000/6.500000/11.500000:15.300000/7.500000/12.500000:u/3/0.000000/0.000000/0.300000/1.000000:s/3/0.000000/0.000000/0.300000/1.000000:e/3/0.000000/0.000000/1.000000/1.000000:d/3/0.000000/0.000000/0.300000/1.000000:R/0/90/0
|
|
||||||
modellist:id=%tombstone,state=facing:east/model_texture:1/is_engraved:true,box=4.000000/2.000000/6.985000:12.000000/9.000000/6.985000:n/0/14.500000/0.000000/1.500000/11.375000:R/0/90/0,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000:s/1/0.000000/0.000000/16.000000/1.000000:w/1/0.000000/0.000000/16.000000/1.000000:e/1/0.000000/0.000000/16.000000/1.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/1/0.000000/0.000000/16.000000/1.000000:R/0/90/0,box=1.000000/1.000000/1.000000:15.000000/1.500000/7.000000:u/2/1.000000/10.000000/9.000000/16.000000:w/2/0.000000/13.500000/6.000000/14.000000:e/2/10.000000/15.500000/16.000000/16.000000:n/2/1.000000/10.000000/15.000000/10.500000:R/0/90/0,box=1.000000/1.500000/3.000000:15.000000/2.000000/7.000000:u/2/1.000000/12.000000/15.000000/16.000000:w/2/5.000000/11.000000/9.000000/11.500000:e/2/12.000000/11.000000/16.000000/11.500000:n/2/1.000000/11.000000/15.000000/11.500000:R/0/90/0,box=1.000000/1.000000/7.000000:15.000000/9.500000/15.000000:s/2/1.000000/7.500000/15.000000/16.000000:w/2/3.000000/7.000000/11.000000/15.500000:e/2/0.000000/6.000000/8.000000/14.500000:n/2/1.000000/7.500000/15.000000/16.000000:R/0/90/0,box=1.000000/10.000000/4.000000:15.000000/10.300000/15.000000:u/2/1.000000/2.500000/15.000000/13.500000:s/2/1.000000/0.100000/15.000000/0.400000:w/2/2.000000/4.000000/14.400000/4.200000:e/2/2.000000/7.000000/13.000000/7.300000:n/2/1.000000/0.100000/15.000000/0.400000:R/0/90/0,box=0.500000/9.500000/3.500000:15.500000/10.000000/15.500000:u/2/0.500000/2.000000/15.500000/14.000000:s/2/0.500000/0.000000/15.500000/0.500000:w/2/2.000000/4.000000/14.400000/4.200000:e/2/2.000000/7.000000/14.000000/7.500000:d/2/0.500000/3.000000/15.500000/15.000000:n/2/0.500000/1.000000/15.500000/1.500000:R/0/90/0,box=13.500000/2.000000/4.500000:14.500000/9.500000/5.500000:s/2/2.000000/8.500000/3.000000/16.000000:w/2/1.000000/8.500000/2.000000/16.000000:e/2/3.000000/8.500000/4.000000/16.000000:n/2/0.000000/8.500000/1.000000/16.000000:R/0/90/0,box=1.500000/2.000000/4.500000:2.500000/9.500000/5.500000:s/2/13.000000/8.500000/14.000000/16.000000:w/2/12.000000/8.500000/13.000000/16.000000:e/2/14.000000/8.500000/15.000000/16.000000:n/2/15.000000/8.500000/16.000000/16.000000:R/0/90/0,box=0.700000/4.000000/10.500000:1.000000/8.500000/11.500000:u/3/0.000000/0.000000/0.300000/1.000000:s/3/0.000000/0.000000/0.300000/4.500000:w/3/0.000000/0.000000/1.000000/4.500000:d/3/0.000000/0.000000/0.300000/1.000000:n/3/0.000000/0.000000/0.500000/5.500000:R/0/90/0,box=0.700000/6.500000/9.500000:1.000000/7.500000/10.500000:u/3/0.000000/0.000000/0.300000/1.000000:w/3/0.000000/0.000000/1.000000/1.000000:d/3/0.000000/0.000000/0.300000/1.000000:n/3/0.000000/0.000000/0.300000/1.000000:R/0/90/0,box=0.700000/6.500000/11.500000:1.000000/7.500000/12.500000:u/3/0.000000/0.000000/0.300000/1.000000:s/3/0.000000/0.000000/0.300000/1.000000:w/3/0.000000/0.000000/1.000000/1.000000:d/3/0.000000/0.000000/0.300000/1.000000:R/0/90/0,box=15.000000/4.000000/10.500000:15.300000/8.500000/11.500000:u/3/0.000000/0.000000/0.300000/1.000000:s/3/0.000000/0.000000/0.300000/4.500000:e/3/0.000000/0.000000/1.000000/4.500000:d/3/0.000000/0.000000/0.300000/1.000000:n/3/0.000000/0.000000/0.500000/5.500000:R/0/90/0,box=15.000000/6.500000/9.500000:15.300000/7.500000/10.500000:u/3/0.000000/0.000000/0.300000/1.000000:e/3/0.000000/0.000000/1.000000/1.000000:d/3/0.000000/0.000000/0.300000/1.000000:n/3/0.000000/0.000000/0.300000/1.000000:R/0/90/0,box=15.000000/6.500000/11.500000:15.300000/7.500000/12.500000:u/3/0.000000/0.000000/0.300000/1.000000:s/3/0.000000/0.000000/0.300000/1.000000:e/3/0.000000/0.000000/1.000000/1.000000:d/3/0.000000/0.000000/0.300000/1.000000:R/0/90/0
|
|
||||||
modellist:id=%tombstone,state=facing:east/model_texture:0/is_engraved:false,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/1.000000:w/0/0.000000/0.000000/16.000000/1.000000:e/0/0.000000/0.000000/16.000000/1.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/1.000000:R/0/90/0,box=1.000000/1.000000/1.000000:15.000000/1.500000/7.000000:u/1/1.000000/10.000000/9.000000/16.000000:w/1/0.000000/13.500000/6.000000/14.000000:e/1/10.000000/15.500000/16.000000/16.000000:n/1/1.000000/10.000000/15.000000/10.500000:R/0/90/0,box=1.000000/1.500000/3.000000:15.000000/2.000000/7.000000:u/1/1.000000/12.000000/15.000000/16.000000:w/1/5.000000/11.000000/9.000000/11.500000:e/1/12.000000/11.000000/16.000000/11.500000:n/1/1.000000/11.000000/15.000000/11.500000:R/0/90/0,box=1.000000/1.000000/7.000000:15.000000/9.500000/15.000000:s/1/1.000000/7.500000/15.000000/16.000000:w/1/3.000000/7.000000/11.000000/15.500000:e/1/0.000000/6.000000/8.000000/14.500000:n/1/1.000000/7.500000/15.000000/16.000000:R/0/90/0,box=1.000000/10.000000/4.000000:15.000000/10.300000/15.000000:u/1/1.000000/2.500000/15.000000/13.500000:s/1/1.000000/0.100000/15.000000/0.400000:w/1/2.000000/4.000000/14.400000/4.200000:e/1/2.000000/7.000000/13.000000/7.300000:n/1/1.000000/0.100000/15.000000/0.400000:R/0/90/0,box=0.500000/9.500000/3.500000:15.500000/10.000000/15.500000:u/1/0.500000/2.000000/15.500000/14.000000:s/1/0.500000/0.000000/15.500000/0.500000:w/1/2.000000/4.000000/14.400000/4.200000:e/1/2.000000/7.000000/14.000000/7.500000:d/1/0.500000/3.000000/15.500000/15.000000:n/1/0.500000/1.000000/15.500000/1.500000:R/0/90/0,box=13.500000/2.000000/4.500000:14.500000/9.500000/5.500000:s/1/2.000000/8.500000/3.000000/16.000000:w/1/1.000000/8.500000/2.000000/16.000000:e/1/3.000000/8.500000/4.000000/16.000000:n/1/0.000000/8.500000/1.000000/16.000000:R/0/90/0,box=1.500000/2.000000/4.500000:2.500000/9.500000/5.500000:s/1/13.000000/8.500000/14.000000/16.000000:w/1/12.000000/8.500000/13.000000/16.000000:e/1/14.000000/8.500000/15.000000/16.000000:n/1/15.000000/8.500000/16.000000/16.000000:R/0/90/0,box=0.700000/4.000000/10.500000:1.000000/8.500000/11.500000:u/2/0.000000/0.000000/0.300000/1.000000:s/2/0.000000/0.000000/0.300000/4.500000:w/2/0.000000/0.000000/1.000000/4.500000:d/2/0.000000/0.000000/0.300000/1.000000:n/2/0.000000/0.000000/0.500000/5.500000:R/0/90/0,box=0.700000/6.500000/9.500000:1.000000/7.500000/10.500000:u/2/0.000000/0.000000/0.300000/1.000000:w/2/0.000000/0.000000/1.000000/1.000000:d/2/0.000000/0.000000/0.300000/1.000000:n/2/0.000000/0.000000/0.300000/1.000000:R/0/90/0,box=0.700000/6.500000/11.500000:1.000000/7.500000/12.500000:u/2/0.000000/0.000000/0.300000/1.000000:s/2/0.000000/0.000000/0.300000/1.000000:w/2/0.000000/0.000000/1.000000/1.000000:d/2/0.000000/0.000000/0.300000/1.000000:R/0/90/0,box=15.000000/4.000000/10.500000:15.300000/8.500000/11.500000:u/2/0.000000/0.000000/0.300000/1.000000:s/2/0.000000/0.000000/0.300000/4.500000:e/2/0.000000/0.000000/1.000000/4.500000:d/2/0.000000/0.000000/0.300000/1.000000:n/2/0.000000/0.000000/0.500000/5.500000:R/0/90/0,box=15.000000/6.500000/9.500000:15.300000/7.500000/10.500000:u/2/0.000000/0.000000/0.300000/1.000000:e/2/0.000000/0.000000/1.000000/1.000000:d/2/0.000000/0.000000/0.300000/1.000000:n/2/0.000000/0.000000/0.300000/1.000000:R/0/90/0,box=15.000000/6.500000/11.500000:15.300000/7.500000/12.500000:u/2/0.000000/0.000000/0.300000/1.000000:s/2/0.000000/0.000000/0.300000/1.000000:e/2/0.000000/0.000000/1.000000/1.000000:d/2/0.000000/0.000000/0.300000/1.000000:R/0/90/0
|
|
||||||
modellist:id=%tombstone,state=facing:east/model_texture:1/is_engraved:false,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/1.000000:w/0/0.000000/0.000000/16.000000/1.000000:e/0/0.000000/0.000000/16.000000/1.000000:d/0/0.000000/0.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/1.000000:R/0/90/0,box=1.000000/1.000000/1.000000:15.000000/1.500000/7.000000:u/1/1.000000/10.000000/9.000000/16.000000:w/1/0.000000/13.500000/6.000000/14.000000:e/1/10.000000/15.500000/16.000000/16.000000:n/1/1.000000/10.000000/15.000000/10.500000:R/0/90/0,box=1.000000/1.500000/3.000000:15.000000/2.000000/7.000000:u/1/1.000000/12.000000/15.000000/16.000000:w/1/5.000000/11.000000/9.000000/11.500000:e/1/12.000000/11.000000/16.000000/11.500000:n/1/1.000000/11.000000/15.000000/11.500000:R/0/90/0,box=1.000000/1.000000/7.000000:15.000000/9.500000/15.000000:s/1/1.000000/7.500000/15.000000/16.000000:w/1/3.000000/7.000000/11.000000/15.500000:e/1/0.000000/6.000000/8.000000/14.500000:n/1/1.000000/7.500000/15.000000/16.000000:R/0/90/0,box=1.000000/10.000000/4.000000:15.000000/10.300000/15.000000:u/1/1.000000/2.500000/15.000000/13.500000:s/1/1.000000/0.100000/15.000000/0.400000:w/1/2.000000/4.000000/14.400000/4.200000:e/1/2.000000/7.000000/13.000000/7.300000:n/1/1.000000/0.100000/15.000000/0.400000:R/0/90/0,box=0.500000/9.500000/3.500000:15.500000/10.000000/15.500000:u/1/0.500000/2.000000/15.500000/14.000000:s/1/0.500000/0.000000/15.500000/0.500000:w/1/2.000000/4.000000/14.400000/4.200000:e/1/2.000000/7.000000/14.000000/7.500000:d/1/0.500000/3.000000/15.500000/15.000000:n/1/0.500000/1.000000/15.500000/1.500000:R/0/90/0,box=13.500000/2.000000/4.500000:14.500000/9.500000/5.500000:s/1/2.000000/8.500000/3.000000/16.000000:w/1/1.000000/8.500000/2.000000/16.000000:e/1/3.000000/8.500000/4.000000/16.000000:n/1/0.000000/8.500000/1.000000/16.000000:R/0/90/0,box=1.500000/2.000000/4.500000:2.500000/9.500000/5.500000:s/1/13.000000/8.500000/14.000000/16.000000:w/1/12.000000/8.500000/13.000000/16.000000:e/1/14.000000/8.500000/15.000000/16.000000:n/1/15.000000/8.500000/16.000000/16.000000:R/0/90/0,box=0.700000/4.000000/10.500000:1.000000/8.500000/11.500000:u/2/0.000000/0.000000/0.300000/1.000000:s/2/0.000000/0.000000/0.300000/4.500000:w/2/0.000000/0.000000/1.000000/4.500000:d/2/0.000000/0.000000/0.300000/1.000000:n/2/0.000000/0.000000/0.500000/5.500000:R/0/90/0,box=0.700000/6.500000/9.500000:1.000000/7.500000/10.500000:u/2/0.000000/0.000000/0.300000/1.000000:w/2/0.000000/0.000000/1.000000/1.000000:d/2/0.000000/0.000000/0.300000/1.000000:n/2/0.000000/0.000000/0.300000/1.000000:R/0/90/0,box=0.700000/6.500000/11.500000:1.000000/7.500000/12.500000:u/2/0.000000/0.000000/0.300000/1.000000:s/2/0.000000/0.000000/0.300000/1.000000:w/2/0.000000/0.000000/1.000000/1.000000:d/2/0.000000/0.000000/0.300000/1.000000:R/0/90/0,box=15.000000/4.000000/10.500000:15.300000/8.500000/11.500000:u/2/0.000000/0.000000/0.300000/1.000000:s/2/0.000000/0.000000/0.300000/4.500000:e/2/0.000000/0.000000/1.000000/4.500000:d/2/0.000000/0.000000/0.300000/1.000000:n/2/0.000000/0.000000/0.500000/5.500000:R/0/90/0,box=15.000000/6.500000/9.500000:15.300000/7.500000/10.500000:u/2/0.000000/0.000000/0.300000/1.000000:e/2/0.000000/0.000000/1.000000/1.000000:d/2/0.000000/0.000000/0.300000/1.000000:n/2/0.000000/0.000000/0.300000/1.000000:R/0/90/0,box=15.000000/6.500000/11.500000:15.300000/7.500000/12.500000:u/2/0.000000/0.000000/0.300000/1.000000:s/2/0.000000/0.000000/0.300000/1.000000:e/2/0.000000/0.000000/1.000000/1.000000:d/2/0.000000/0.000000/0.300000/1.000000:R/0/90/0
|
|
@ -1,73 +0,0 @@
|
|||||||
modname:simpletomb
|
|
||||||
|
|
||||||
texture:id=grave_plate,filename=assets/simpletomb/textures/blocks/grave_plate.png,xcount=1,ycount=1
|
|
||||||
texture:id=podzol_top,filename=assets/minecraft/textures/block/podzol_top.png,xcount=1,ycount=1
|
|
||||||
texture:id=tombstone,filename=assets/simpletomb/textures/blocks/tombstone.png,xcount=1,ycount=1
|
|
||||||
texture:id=white_tombstone,filename=assets/simpletomb/textures/blocks/white_tombstone.png,xcount=1,ycount=1
|
|
||||||
texture:id=white_concrete,filename=assets/minecraft/textures/block/white_concrete.png,xcount=1,ycount=1
|
|
||||||
texture:id=red_concrete,filename=assets/minecraft/textures/block/red_concrete.png,xcount=1,ycount=1
|
|
||||||
texture:id=concrete_white,filename=assets/minecraft/textures/blocks/concrete_white.png,xcount=1,ycount=1
|
|
||||||
block:id=%grave_simple,state=facing:north/model_texture:0/is_engraved:true,patch0=0:grave_plate,patch1=0:podzol_top,patch2=0:tombstone,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%grave_simple,state=facing:north/model_texture:1/is_engraved:true,patch0=0:grave_plate,patch1=0:podzol_top,patch2=0:white_tombstone,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%grave_simple,state=facing:north/model_texture:0/is_engraved:false,patch0=0:podzol_top,patch1=0:tombstone,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%grave_simple,state=facing:north/model_texture:1/is_engraved:false,patch0=0:podzol_top,patch1=0:white_tombstone,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%grave_simple,state=facing:south/model_texture:0/is_engraved:true,patch0=0:grave_plate,patch1=0:podzol_top,patch2=0:tombstone,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%grave_simple,state=facing:south/model_texture:1/is_engraved:true,patch0=0:grave_plate,patch1=0:podzol_top,patch2=0:white_tombstone,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%grave_simple,state=facing:south/model_texture:0/is_engraved:false,patch0=0:podzol_top,patch1=0:tombstone,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%grave_simple,state=facing:south/model_texture:1/is_engraved:false,patch0=0:podzol_top,patch1=0:white_tombstone,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%grave_simple,state=facing:west/model_texture:0/is_engraved:true,patch0=0:grave_plate,patch1=0:podzol_top,patch2=0:tombstone,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%grave_simple,state=facing:west/model_texture:1/is_engraved:true,patch0=0:grave_plate,patch1=0:podzol_top,patch2=0:white_tombstone,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%grave_simple,state=facing:west/model_texture:0/is_engraved:false,patch0=0:podzol_top,patch1=0:tombstone,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%grave_simple,state=facing:west/model_texture:1/is_engraved:false,patch0=0:podzol_top,patch1=0:white_tombstone,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%grave_simple,state=facing:east/model_texture:0/is_engraved:true,patch0=0:grave_plate,patch1=0:podzol_top,patch2=0:tombstone,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%grave_simple,state=facing:east/model_texture:1/is_engraved:true,patch0=0:grave_plate,patch1=0:podzol_top,patch2=0:white_tombstone,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%grave_simple,state=facing:east/model_texture:0/is_engraved:false,patch0=0:podzol_top,patch1=0:tombstone,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%grave_simple,state=facing:east/model_texture:1/is_engraved:false,patch0=0:podzol_top,patch1=0:white_tombstone,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%grave_normal,state=facing:north/model_texture:0/is_engraved:true,patch0=0:grave_plate,patch1=0:podzol_top,patch2=0:tombstone,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%grave_normal,state=facing:north/model_texture:1/is_engraved:true,patch0=0:grave_plate,patch1=0:podzol_top,patch2=0:white_tombstone,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%grave_normal,state=facing:north/model_texture:0/is_engraved:false,patch0=0:podzol_top,patch1=0:tombstone,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%grave_normal,state=facing:north/model_texture:1/is_engraved:false,patch0=0:podzol_top,patch1=0:white_tombstone,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%grave_normal,state=facing:south/model_texture:0/is_engraved:true,patch0=0:grave_plate,patch1=0:podzol_top,patch2=0:tombstone,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%grave_normal,state=facing:south/model_texture:1/is_engraved:true,patch0=0:grave_plate,patch1=0:podzol_top,patch2=0:white_tombstone,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%grave_normal,state=facing:south/model_texture:0/is_engraved:false,patch0=0:podzol_top,patch1=0:tombstone,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%grave_normal,state=facing:south/model_texture:1/is_engraved:false,patch0=0:podzol_top,patch1=0:white_tombstone,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%grave_normal,state=facing:west/model_texture:0/is_engraved:true,patch0=0:grave_plate,patch1=0:podzol_top,patch2=0:tombstone,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%grave_normal,state=facing:west/model_texture:1/is_engraved:true,patch0=0:grave_plate,patch1=0:podzol_top,patch2=0:white_tombstone,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%grave_normal,state=facing:west/model_texture:0/is_engraved:false,patch0=0:podzol_top,patch1=0:tombstone,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%grave_normal,state=facing:west/model_texture:1/is_engraved:false,patch0=0:podzol_top,patch1=0:white_tombstone,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%grave_normal,state=facing:east/model_texture:0/is_engraved:true,patch0=0:grave_plate,patch1=0:podzol_top,patch2=0:tombstone,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%grave_normal,state=facing:east/model_texture:1/is_engraved:true,patch0=0:grave_plate,patch1=0:podzol_top,patch2=0:white_tombstone,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%grave_normal,state=facing:east/model_texture:0/is_engraved:false,patch0=0:podzol_top,patch1=0:tombstone,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%grave_normal,state=facing:east/model_texture:1/is_engraved:false,patch0=0:podzol_top,patch1=0:white_tombstone,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%grave_cross,state=facing:north/model_texture:0/is_engraved:true,patch0=0:grave_plate,patch1=0:podzol_top,patch2=0:tombstone,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%grave_cross,state=facing:north/model_texture:1/is_engraved:true,patch0=0:grave_plate,patch1=0:podzol_top,patch2=0:white_tombstone,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%grave_cross,state=facing:north/model_texture:0/is_engraved:false,patch0=0:podzol_top,patch1=0:tombstone,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%grave_cross,state=facing:north/model_texture:1/is_engraved:false,patch0=0:podzol_top,patch1=0:white_tombstone,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%grave_cross,state=facing:south/model_texture:0/is_engraved:true,patch0=0:grave_plate,patch1=0:podzol_top,patch2=0:tombstone,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%grave_cross,state=facing:south/model_texture:1/is_engraved:true,patch0=0:grave_plate,patch1=0:podzol_top,patch2=0:white_tombstone,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%grave_cross,state=facing:south/model_texture:0/is_engraved:false,patch0=0:podzol_top,patch1=0:tombstone,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%grave_cross,state=facing:south/model_texture:1/is_engraved:false,patch0=0:podzol_top,patch1=0:white_tombstone,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%grave_cross,state=facing:west/model_texture:0/is_engraved:true,patch0=0:grave_plate,patch1=0:podzol_top,patch2=0:tombstone,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%grave_cross,state=facing:west/model_texture:1/is_engraved:true,patch0=0:grave_plate,patch1=0:podzol_top,patch2=0:white_tombstone,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%grave_cross,state=facing:west/model_texture:0/is_engraved:false,patch0=0:podzol_top,patch1=0:tombstone,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%grave_cross,state=facing:west/model_texture:1/is_engraved:false,patch0=0:podzol_top,patch1=0:white_tombstone,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%grave_cross,state=facing:east/model_texture:0/is_engraved:true,patch0=0:grave_plate,patch1=0:podzol_top,patch2=0:tombstone,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%grave_cross,state=facing:east/model_texture:1/is_engraved:true,patch0=0:grave_plate,patch1=0:podzol_top,patch2=0:white_tombstone,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%grave_cross,state=facing:east/model_texture:0/is_engraved:false,patch0=0:podzol_top,patch1=0:tombstone,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%grave_cross,state=facing:east/model_texture:1/is_engraved:false,patch0=0:podzol_top,patch1=0:white_tombstone,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%tombstone,state=facing:north/model_texture:0/is_engraved:true,patch0=0:grave_plate,patch1=0:podzol_top,patch2=0:tombstone,patch3=0:white_concrete,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%tombstone,state=facing:north/model_texture:1/is_engraved:true,patch0=0:grave_plate,patch1=0:podzol_top,patch2=0:white_tombstone,patch3=0:red_concrete,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%tombstone,state=facing:north/model_texture:0/is_engraved:false,patch0=0:podzol_top,patch1=0:tombstone,patch2=0:concrete_white,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%tombstone,state=facing:north/model_texture:1/is_engraved:false,patch0=0:podzol_top,patch1=0:white_tombstone,patch2=0:red_concrete,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%tombstone,state=facing:south/model_texture:0/is_engraved:true,patch0=0:grave_plate,patch1=0:podzol_top,patch2=0:tombstone,patch3=0:white_concrete,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%tombstone,state=facing:south/model_texture:1/is_engraved:true,patch0=0:grave_plate,patch1=0:podzol_top,patch2=0:white_tombstone,patch3=0:red_concrete,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%tombstone,state=facing:south/model_texture:0/is_engraved:false,patch0=0:podzol_top,patch1=0:tombstone,patch2=0:concrete_white,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%tombstone,state=facing:south/model_texture:1/is_engraved:false,patch0=0:podzol_top,patch1=0:white_tombstone,patch2=0:red_concrete,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%tombstone,state=facing:west/model_texture:0/is_engraved:true,patch0=0:grave_plate,patch1=0:podzol_top,patch2=0:tombstone,patch3=0:white_concrete,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%tombstone,state=facing:west/model_texture:1/is_engraved:true,patch0=0:grave_plate,patch1=0:podzol_top,patch2=0:white_tombstone,patch3=0:red_concrete,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%tombstone,state=facing:west/model_texture:0/is_engraved:false,patch0=0:podzol_top,patch1=0:tombstone,patch2=0:concrete_white,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%tombstone,state=facing:west/model_texture:1/is_engraved:false,patch0=0:podzol_top,patch1=0:white_tombstone,patch2=0:red_concrete,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%tombstone,state=facing:east/model_texture:0/is_engraved:true,patch0=0:grave_plate,patch1=0:podzol_top,patch2=0:tombstone,patch3=0:white_concrete,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%tombstone,state=facing:east/model_texture:1/is_engraved:true,patch0=0:grave_plate,patch1=0:podzol_top,patch2=0:white_tombstone,patch3=0:red_concrete,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%tombstone,state=facing:east/model_texture:0/is_engraved:false,patch0=0:podzol_top,patch1=0:tombstone,patch2=0:concrete_white,transparency=TRANSPARENT,stdrot=true
|
|
||||||
block:id=%tombstone,state=facing:east/model_texture:1/is_engraved:false,patch0=0:podzol_top,patch1=0:white_tombstone,patch2=0:red_concrete,transparency=TRANSPARENT,stdrot=true
|
|
@ -1,22 +0,0 @@
|
|||||||
modname:sophisticatedbackpacks
|
|
||||||
|
|
||||||
modellist:id=%backpack,state=facing:north
|
|
||||||
modellist:id=%backpack,state=facing:south
|
|
||||||
modellist:id=%backpack,state=facing:west
|
|
||||||
modellist:id=%backpack,state=facing:east
|
|
||||||
modellist:id=%iron_backpack,state=facing:north
|
|
||||||
modellist:id=%iron_backpack,state=facing:south
|
|
||||||
modellist:id=%iron_backpack,state=facing:west
|
|
||||||
modellist:id=%iron_backpack,state=facing:east
|
|
||||||
modellist:id=%gold_backpack,state=facing:north
|
|
||||||
modellist:id=%gold_backpack,state=facing:south
|
|
||||||
modellist:id=%gold_backpack,state=facing:west
|
|
||||||
modellist:id=%gold_backpack,state=facing:east
|
|
||||||
modellist:id=%diamond_backpack,state=facing:north
|
|
||||||
modellist:id=%diamond_backpack,state=facing:south
|
|
||||||
modellist:id=%diamond_backpack,state=facing:west
|
|
||||||
modellist:id=%diamond_backpack,state=facing:east
|
|
||||||
modellist:id=%netherite_backpack,state=facing:north
|
|
||||||
modellist:id=%netherite_backpack,state=facing:south
|
|
||||||
modellist:id=%netherite_backpack,state=facing:west
|
|
||||||
modellist:id=%netherite_backpack,state=facing:east
|
|
@ -1,22 +0,0 @@
|
|||||||
modname:sophisticatedbackpacks
|
|
||||||
|
|
||||||
block:id=%backpack,state=facing:north,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%backpack,state=facing:south,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%backpack,state=facing:west,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%backpack,state=facing:east,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%iron_backpack,state=facing:north,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%iron_backpack,state=facing:south,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%iron_backpack,state=facing:west,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%iron_backpack,state=facing:east,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gold_backpack,state=facing:north,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gold_backpack,state=facing:south,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gold_backpack,state=facing:west,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%gold_backpack,state=facing:east,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%diamond_backpack,state=facing:north,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%diamond_backpack,state=facing:south,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%diamond_backpack,state=facing:west,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%diamond_backpack,state=facing:east,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%netherite_backpack,state=facing:north,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%netherite_backpack,state=facing:south,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%netherite_backpack,state=facing:west,transparency=SEMITRANSPARENT,stdrot=true
|
|
||||||
block:id=%netherite_backpack,state=facing:east,transparency=SEMITRANSPARENT,stdrot=true
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user