From 8daac96e5843304af6eb9b6bbc0c5e1fcf1167ad Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Mon, 5 Jun 2017 18:40:56 +0200 Subject: [PATCH] Rename stairs mod to mcl_stairs --- mods/HELP/mcl_craftguide/init.lua | 4 +- mods/ITEMS/REDSTONE/mesecons_delayer/init.lua | 4 +- mods/ITEMS/mcl_nether/init.lua | 8 -- mods/ITEMS/{stairs => mcl_stairs}/README.txt | 3 +- mods/ITEMS/{stairs => mcl_stairs}/depends.txt | 0 mods/ITEMS/{stairs => mcl_stairs}/init.lua | 112 ++++++++++-------- mods/ITEMS/{stairs => mcl_stairs}/license.txt | 0 mods/ITEMS/mcl_stairs/mod.conf | 1 + .../models/stairs_stair.obj | 0 .../textures/mcl_stairs_stone_slab_side.png} | Bin .../textures/mcl_stairs_stone_slab_top.png} | Bin mods/ITEMS/mcstair/depends.txt | 2 +- mods/ITEMS/mcstair/init.lua | 4 +- .../3d_armor_stand/depends.txt | 2 +- .../minetest-3d_armor/3d_armor_stand/init.lua | 2 +- mods/MAPGEN/mcl_mapgen_core/depends.txt | 2 +- mods/MAPGEN/mcl_mapgen_core/init.lua | 8 +- .../mcl_structures/build/desert_temple.we | 2 +- .../mcl_structures/build/desert_well.mts | Bin 183 -> 183 bytes .../mcl_structures/build/pnj_house_1.we | 2 +- .../mcl_structures/build/pnj_house_2.we | 2 +- .../mcl_structures/build/pnj_house_3.we | 2 +- .../MAPGEN/mcl_structures/build/pnj_town_1.we | 2 +- .../build/pnj_town_withway_1.we | 2 +- .../mcl_structures/build/witcher_house.we | 2 +- mods/MAPGEN/mcl_structures/depends.txt | 2 +- 26 files changed, 85 insertions(+), 83 deletions(-) rename mods/ITEMS/{stairs => mcl_stairs}/README.txt (84%) rename mods/ITEMS/{stairs => mcl_stairs}/depends.txt (100%) rename mods/ITEMS/{stairs => mcl_stairs}/init.lua (79%) rename mods/ITEMS/{stairs => mcl_stairs}/license.txt (100%) create mode 100644 mods/ITEMS/mcl_stairs/mod.conf rename mods/ITEMS/{stairs => mcl_stairs}/models/stairs_stair.obj (100%) rename mods/ITEMS/{stairs/textures/stairs_stone_slab_side.png => mcl_stairs/textures/mcl_stairs_stone_slab_side.png} (100%) rename mods/ITEMS/{stairs/textures/stairs_stone_slab_top.png => mcl_stairs/textures/mcl_stairs_stone_slab_top.png} (100%) diff --git a/mods/HELP/mcl_craftguide/init.lua b/mods/HELP/mcl_craftguide/init.lua index abf6f3ad..8b2ca598 100644 --- a/mods/HELP/mcl_craftguide/init.lua +++ b/mods/HELP/mcl_craftguide/init.lua @@ -42,8 +42,8 @@ local group_stereotypes = { water_bucket = "bucket:bucket_water", flower = "mcl_flowers:dandelion", mushroom = "mcl_mushrooms:mushroom_brown", - wood_slab = "stairs:slab_wood", - wood_stairs = "stairs:stairs_wood", + wood_slab = "mcl_stairs:slab_wood", + wood_stairs = "mcl_stairs:stairs_wood", coal = "mcl_core:coal_lump", shulker_box = "mcl_chests:violet_shulker_box", quartz_block = "mcl_nether:quartz_block", diff --git a/mods/ITEMS/REDSTONE/mesecons_delayer/init.lua b/mods/ITEMS/REDSTONE/mesecons_delayer/init.lua index 88e36b6d..3cfdcfc2 100644 --- a/mods/ITEMS/REDSTONE/mesecons_delayer/init.lua +++ b/mods/ITEMS/REDSTONE/mesecons_delayer/init.lua @@ -105,7 +105,7 @@ minetest.register_node("mesecons_delayer:delayer_off_"..tostring(i), { drawtype = "nodebox", tiles = { "mesecons_delayer_off.png", - "stairs_stone_slab_top.png", + "mcl_stairs_stone_slab_top.png", "mesecons_delayer_sides_off.png", "mesecons_delayer_sides_off.png", "mesecons_delayer_ends_off.png", @@ -166,7 +166,7 @@ minetest.register_node("mesecons_delayer:delayer_on_"..tostring(i), { drawtype = "nodebox", tiles = { "mesecons_delayer_on.png", - "stairs_stone_slab_top.png", + "mcl_stairs_stone_slab_top.png", "mesecons_delayer_sides_on.png", "mesecons_delayer_sides_on.png", "mesecons_delayer_ends_on.png", diff --git a/mods/ITEMS/mcl_nether/init.lua b/mods/ITEMS/mcl_nether/init.lua index 0cb8eb8f..f977c3ff 100644 --- a/mods/ITEMS/mcl_nether/init.lua +++ b/mods/ITEMS/mcl_nether/init.lua @@ -204,14 +204,6 @@ minetest.register_craft({ } }) -minetest.register_craft({ - output = 'mcl_nether:quartz_chiseled 2', - recipe = { - {'stairs:slab_quartzblock'}, - {'stairs:slab_quartzblock'}, - } -}) - minetest.register_craft({ output = 'mcl_nether:quartz_pillar 2', recipe = { diff --git a/mods/ITEMS/stairs/README.txt b/mods/ITEMS/mcl_stairs/README.txt similarity index 84% rename from mods/ITEMS/stairs/README.txt rename to mods/ITEMS/mcl_stairs/README.txt index d32cd71b..d336e4a2 100644 --- a/mods/ITEMS/stairs/README.txt +++ b/mods/ITEMS/mcl_stairs/README.txt @@ -1,5 +1,6 @@ -Minetest Game mod: stairs +MineClone 2 mod: mcl_stairs ========================= +Forked from stairs mod in Minetest Game 0.4.16. See license.txt for license information. Authors of source code diff --git a/mods/ITEMS/stairs/depends.txt b/mods/ITEMS/mcl_stairs/depends.txt similarity index 100% rename from mods/ITEMS/stairs/depends.txt rename to mods/ITEMS/mcl_stairs/depends.txt diff --git a/mods/ITEMS/stairs/init.lua b/mods/ITEMS/mcl_stairs/init.lua similarity index 79% rename from mods/ITEMS/stairs/init.lua rename to mods/ITEMS/mcl_stairs/init.lua index 49e0a77d..0d704353 100644 --- a/mods/ITEMS/stairs/init.lua +++ b/mods/ITEMS/mcl_stairs/init.lua @@ -1,10 +1,10 @@ --- Minetest 0.4 mod: stairs +-- Minetest 0.4 mod: mcl_stairs -- See README.txt for licensing and other information. -- Global namespace for functions -stairs = {} +mcl_stairs = {} local function place_slab_normal(itemstack, placer, pointed_thing) local p0 = pointed_thing.under @@ -51,13 +51,13 @@ local function place_stair(itemstack, placer, pointed_thing) return minetest.item_place(itemstack, placer, pointed_thing, param2) end --- Register stairs. --- Node will be called stairs:stair_ +-- Register mcl_stairs. +-- Node will be called mcl_stairs:stair_ -function stairs.register_stair(subname, recipeitem, groups, images, description, sounds, hardness) +function mcl_stairs.register_stair(subname, recipeitem, groups, images, description, sounds, hardness) groups.stair = 1 groups.building_block = 1 - minetest.register_node(":stairs:stair_" .. subname, { + minetest.register_node(":mcl_stairs:stair_" .. subname, { description = description, _doc_items_longdesc = "Stairs are useful to reach higher places by walking over them; jumping is not required. Placing stairs in a corner pattern will create corner stairs. Stairs placed on the bottom or at the upper half of the side of a block will be placed upside down.", drawtype = "mesh", @@ -95,7 +95,7 @@ function stairs.register_stair(subname, recipeitem, groups, images, description, if recipeitem then minetest.register_craft({ - output = 'stairs:stair_' .. subname .. ' 4', + output = 'mcl_stairs:stair_' .. subname .. ' 4', recipe = { {recipeitem, "", ""}, {recipeitem, recipeitem, ""}, @@ -105,7 +105,7 @@ function stairs.register_stair(subname, recipeitem, groups, images, description, -- Flipped recipe minetest.register_craft({ - output = 'stairs:stair_' .. subname .. ' 4', + output = 'mcl_stairs:stair_' .. subname .. ' 4', recipe = { {"", "", recipeitem}, {"", recipeitem, recipeitem}, @@ -120,12 +120,12 @@ end local slab_trans_dir = {[0] = 8, 0, 2, 1, 3, 4} -- Register slabs. --- Node will be called stairs:slab_ +-- Node will be called mcl_stairs:slab_ -- double_description: NEW argument, not supported in Minetest Game -- double_description: Description of double slab -function stairs.register_slab(subname, recipeitem, groups, images, description, sounds, hardness, double_description) - local lower_slab = "stairs:slab_"..subname +function mcl_stairs.register_slab(subname, recipeitem, groups, images, description, sounds, hardness, double_description) + local lower_slab = "mcl_stairs:slab_"..subname local upper_slab = lower_slab.."_top" local double_slab = lower_slab.."_double" @@ -257,18 +257,18 @@ end -- Stair/slab registration function. --- Nodes will be called stairs:{stair,slab}_ +-- Nodes will be called mcl_stairs:{stair,slab}_ -function stairs.register_stair_and_slab(subname, recipeitem, +function mcl_stairs.register_stair_and_slab(subname, recipeitem, groups, images, desc_stair, desc_slab, sounds, hardness, double_description) - stairs.register_stair(subname, recipeitem, groups, images, desc_stair, sounds, hardness) - stairs.register_slab(subname, recipeitem, groups, images, desc_slab, sounds, hardness, double_description) + mcl_stairs.register_stair(subname, recipeitem, groups, images, desc_stair, sounds, hardness) + mcl_stairs.register_slab(subname, recipeitem, groups, images, desc_slab, sounds, hardness, double_description) end -- Very simple registration function -- Makes stair and slab out of a source node -function stairs.register_stair_and_slab_simple(subname, sourcenode, desc_stair, desc_slab, desc_double_slab) +function mcl_stairs.register_stair_and_slab_simple(subname, sourcenode, desc_stair, desc_slab, desc_double_slab) local def = minetest.registered_nodes[sourcenode] local groups = {} -- Only allow a strict set of groups to be added to stairs and slabs for more predictable results @@ -278,7 +278,7 @@ function stairs.register_stair_and_slab_simple(subname, sourcenode, desc_stair, groups[allowed_groups[a]] = def.groups[allowed_groups[a]] end end - stairs.register_stair_and_slab(subname, sourcenode, groups, def.tiles, desc_stair, desc_slab, def.sounds, def._mcl_hardness, desc_double_slab) + mcl_stairs.register_stair_and_slab(subname, sourcenode, groups, def.tiles, desc_stair, desc_slab, def.sounds, def._mcl_hardness, desc_double_slab) end -- Register all Minecraft stairs and slabs @@ -286,13 +286,13 @@ end -- slabs actually take slightly longer to be dug than their stair counterparts. -- Note sure if it is a good idea to preserve this oddity. -stairs.register_stair("wood", "mcl_core:wood", +mcl_stairs.register_stair("wood", "mcl_core:wood", {handy=1,axey=1, flammable=3,wood_stairs=1, material_wood=1}, {"default_wood.png"}, "Oak Wood Stairs", mcl_sounds.node_sound_wood_defaults(), 2) -stairs.register_slab("wood", "mcl_core:wood", +mcl_stairs.register_slab("wood", "mcl_core:wood", {handy=1,axey=1, flammable=3,wood_slab=1, material_wood=1}, {"default_wood.png"}, "Oak Wood Slab", @@ -300,13 +300,13 @@ stairs.register_slab("wood", "mcl_core:wood", 2, "Double Oak Wood Slab") -stairs.register_stair("junglewood", "mcl_core:junglewood", +mcl_stairs.register_stair("junglewood", "mcl_core:junglewood", {handy=1,axey=1, flammable=3,wood_stairs=1, material_wood=1}, {"default_junglewood.png"}, "Jungle Wood Stairs", mcl_sounds.node_sound_wood_defaults(), 2) -stairs.register_slab("junglewood", "mcl_core:junglewood", +mcl_stairs.register_slab("junglewood", "mcl_core:junglewood", {handy=1,axey=1, flammable=3,wood_slab=1, material_wood=1}, {"default_junglewood.png"}, "Jungle Wood Slab", @@ -314,14 +314,14 @@ stairs.register_slab("junglewood", "mcl_core:junglewood", 2, "Double Jungle Wood Slab") -stairs.register_stair("acaciawood", "mcl_core:acaciawood", +mcl_stairs.register_stair("acaciawood", "mcl_core:acaciawood", {handy=1,axey=1, flammable=3,wood_stairs=1, material_wood=1}, {"default_acacia_wood.png"}, "Acacia Wood Stairs", mcl_sounds.node_sound_wood_defaults(), 2) -stairs.register_slab("acaciawood", "mcl_core:acaciawood", +mcl_stairs.register_slab("acaciawood", "mcl_core:acaciawood", {handy=1,axey=1, flammable=3,wood_slab=1, material_wood=1}, {"default_acacia_wood.png"}, "Acacia Wood Slab", @@ -329,13 +329,13 @@ stairs.register_slab("acaciawood", "mcl_core:acaciawood", 2, "Double Acacia Wood Slab") -stairs.register_stair("sprucewood", "mcl_core:sprucewood", +mcl_stairs.register_stair("sprucewood", "mcl_core:sprucewood", {handy=1,axey=1, flammable=3,wood_stairs=1, material_wood=1}, {"mcl_core_planks_spruce.png"}, "Spruce Wood Stairs", mcl_sounds.node_sound_wood_defaults(), 2) -stairs.register_slab("sprucewood", "mcl_core:sprucewood", +mcl_stairs.register_slab("sprucewood", "mcl_core:sprucewood", {handy=1,axey=1, flammable=3,wood_slab=1, material_wood=1}, {"mcl_core_planks_spruce.png"}, "Spruce Wood Slab", @@ -343,13 +343,13 @@ stairs.register_slab("sprucewood", "mcl_core:sprucewood", 2, "Double Spruce Wood Slab") -stairs.register_stair("birchwood", "mcl_core:birchwood", +mcl_stairs.register_stair("birchwood", "mcl_core:birchwood", {handy=1,axey=1, flammable=3,wood_stairs=1, material_wood=1}, {"mcl_core_planks_birch.png"}, "Birch Wood Stairs", mcl_sounds.node_sound_wood_defaults(), 2) -stairs.register_slab("birchwood", "mcl_core:birchwood", +mcl_stairs.register_slab("birchwood", "mcl_core:birchwood", {handy=1,axey=1, flammable=3,wood_slab=1, material_wood=1}, {"mcl_core_planks_birch.png"}, "Birch Wood Slab", @@ -357,13 +357,13 @@ stairs.register_slab("birchwood", "mcl_core:birchwood", 2, "Double Birch Wood Slab") -stairs.register_stair("darkwood", "mcl_core:darkwood", +mcl_stairs.register_stair("darkwood", "mcl_core:darkwood", {handy=1,axey=1, flammable=3,wood_stairs=1, material_wood=1}, {"mcl_core_planks_big_oak.png"}, "Dark Oak Wood Stairs", mcl_sounds.node_sound_wood_defaults(), 2) -stairs.register_slab("darkwood", "mcl_core:darkwood", +mcl_stairs.register_slab("darkwood", "mcl_core:darkwood", {handy=1,axey=1, flammable=3,wood_slab=1, material_wood=1}, {"mcl_core_planks_big_oak.png"}, "Dark Oak Wood Slab", @@ -371,62 +371,62 @@ stairs.register_slab("darkwood", "mcl_core:darkwood", 2, "Double Dark Oak Wood Slab") -stairs.register_slab("stone", "mcl_core:stone", +mcl_stairs.register_slab("stone", "mcl_core:stone", {pickaxey=1, material_stone=1}, - {"stairs_stone_slab_top.png", "stairs_stone_slab_top.png", "stairs_stone_slab_side.png"}, + {"mcl_stairs_stone_slab_top.png", "mcl_stairs_stone_slab_top.png", "mcl_stairs_stone_slab_side.png"}, "Stone Slab", mcl_sounds.node_sound_stone_defaults(), 2, "Double Stone Slab") -stairs.register_stair_and_slab_simple("cobble", "mcl_core:cobble", "Cobblestone Stairs", "Cobblestone Slab", nil, nil, "Double Cobblestone Slab") +mcl_stairs.register_stair_and_slab_simple("cobble", "mcl_core:cobble", "Cobblestone Stairs", "Cobblestone Slab", nil, nil, "Double Cobblestone Slab") -stairs.register_stair_and_slab_simple("brick_block", "mcl_core:brick_block", "Brick Stairs", "Brick Slab", nil, nil, "Double Brick Slab") +mcl_stairs.register_stair_and_slab_simple("brick_block", "mcl_core:brick_block", "Brick Stairs", "Brick Slab", nil, nil, "Double Brick Slab") -stairs.register_stair("sandstone", "group:sandstone", +mcl_stairs.register_stair("sandstone", "group:sandstone", {pickaxey=1, material_stone=1}, {"mcl_core_sandstone_top.png", "mcl_core_sandstone_bottom.png", "mcl_core_sandstone_normal.png"}, "Sandstone Stairs", mcl_sounds.node_sound_stone_defaults(), 0.8, nil, "mcl_core:sandstone") -stairs.register_slab("sandstone", "group:sandstone", +mcl_stairs.register_slab("sandstone", "group:sandstone", {pickaxey=1, material_stone=1}, {"mcl_core_sandstone_top.png", "mcl_core_sandstone_bottom.png", "mcl_core_sandstone_normal.png"}, "Sandstone Slab", mcl_sounds.node_sound_stone_defaults(), 2, "Double Sandstone Slab", "mcl_core:sandstone") -stairs.register_stair("redsandstone", "group:redsandstone", +mcl_stairs.register_stair("redsandstone", "group:redsandstone", {pickaxey=1, material_stone=1}, {"mcl_core_red_sandstone_top.png", "mcl_core_red_sandstone_bottom.png", "mcl_core_red_sandstone_normal.png"}, "Red Sandstone Stairs", mcl_sounds.node_sound_stone_defaults(), 0.8, nil, "mcl_core:redsandstone") -stairs.register_slab("redsandstone", "group:redsandstone", +mcl_stairs.register_slab("redsandstone", "group:redsandstone", {pickaxey=1, material_stone=1}, {"mcl_core_red_sandstone_top.png", "mcl_core_red_sandstone_bottom.png", "mcl_core_red_sandstone_normal.png"}, "Red Sandstone Slab", mcl_sounds.node_sound_stone_defaults(), 2, "Double Red Sandstone Slab", "mcl_core:redsandstone") -stairs.register_stair("stonebrick", "group:stonebrick", +mcl_stairs.register_stair("stonebrick", "group:stonebrick", {pickaxey=1, material_stone=1}, {"default_stone_brick.png"}, "Stone Bricks Stairs", mcl_sounds.node_sound_stone_defaults(), 1.5, nil, "mcl_core:stonebrick") -stairs.register_slab("stonebrick", "group:stonebrick", +mcl_stairs.register_slab("stonebrick", "group:stonebrick", {pickaxey=1, material_stone=1}, {"default_stone_brick.png"}, "Stone Bricks Slab", mcl_sounds.node_sound_stone_defaults(), 2, "Double Stone Bricks Slab", "mcl_core:stonebrick") -stairs.register_stair("quartzblock", "group:quartz_block", +mcl_stairs.register_stair("quartzblock", "group:quartz_block", {pickaxey=1, material_stone=1}, {"mcl_nether_quartz_block_top.png", "mcl_nether_quartz_block_bottom.png", "mcl_nether_quartz_block_side.png"}, "Quartz Stairs", mcl_sounds.node_sound_stone_defaults(), 0.8, nil, "mcl_nether:quartz_block") -stairs.register_slab("quartzblock", "group:quartz_block", +mcl_stairs.register_slab("quartzblock", "group:quartz_block", {pickaxey=1, material_stone=1}, {"mcl_nether_quartz_block_top.png", "mcl_nether_quartz_block_bottom.png", "mcl_nether_quartz_block_side.png"}, "Quartz Slab", mcl_sounds.node_sound_stone_defaults(), 2, "Double Quarzt Slab", "mcl_nether:quartz_block") -stairs.register_stair_and_slab("nether_brick", "mcl_nether:nether_brick", +mcl_stairs.register_stair_and_slab("nether_brick", "mcl_nether:nether_brick", {pickaxey=1, material_stone=1}, {"mcl_nether_nether_brick.png"}, "Nether Brick Stairs", @@ -435,13 +435,13 @@ stairs.register_stair_and_slab("nether_brick", "mcl_nether:nether_brick", 2, "Double Nether Brick Slab") -stairs.register_stair("purpur_block", "mcl_end:purpur_block", +mcl_stairs.register_stair("purpur_block", "mcl_end:purpur_block", {pickaxey=1, material_stone=1}, {"mcl_end_purpur_block.png"}, "Purpur Stairs", mcl_sounds.node_sound_stone_defaults(), 1.5) -stairs.register_slab("purpur_block", "mcl_end:purpur_block", +mcl_stairs.register_slab("purpur_block", "mcl_end:purpur_block", {pickaxey=1, material_stone=1}, {"mcl_end_purpur_block.png"}, "Purpur Slab", @@ -452,32 +452,40 @@ stairs.register_slab("purpur_block", "mcl_end:purpur_block", minetest.register_craft({ output = 'mcl_core:sandstonecarved', recipe = { - {'stairs:slab_sandstone'}, - {'stairs:slab_sandstone'} + {'mcl_stairs:slab_sandstone'}, + {'mcl_stairs:slab_sandstone'} } }) minetest.register_craft({ output = 'mcl_core:redsandstonecarved', recipe = { - {'stairs:slab_redsandstone'}, - {'stairs:slab_redsandstone'} + {'mcl_stairs:slab_redsandstone'}, + {'mcl_stairs:slab_redsandstone'} } }) minetest.register_craft({ output = 'mcl_core:stonebrickcarved', recipe = { - {'stairs:slab_stonebrick'}, - {'stairs:slab_stonebrick'} + {'mcl_stairs:slab_stonebrick'}, + {'mcl_stairs:slab_stonebrick'} } }) minetest.register_craft({ output = 'mcl_end:purpur_pillar', recipe = { - {'stairs:slab_purpur_block'}, - {'stairs:slab_purpur_block'} + {'mcl_stairs:slab_purpur_block'}, + {'mcl_stairs:slab_purpur_block'} + } +}) + +minetest.register_craft({ + output = 'mcl_nether:quartz_chiseled 2', + recipe = { + {'mcl_stairs:slab_quartzblock'}, + {'mcl_stairs:slab_quartzblock'}, } }) diff --git a/mods/ITEMS/stairs/license.txt b/mods/ITEMS/mcl_stairs/license.txt similarity index 100% rename from mods/ITEMS/stairs/license.txt rename to mods/ITEMS/mcl_stairs/license.txt diff --git a/mods/ITEMS/mcl_stairs/mod.conf b/mods/ITEMS/mcl_stairs/mod.conf new file mode 100644 index 00000000..4540a798 --- /dev/null +++ b/mods/ITEMS/mcl_stairs/mod.conf @@ -0,0 +1 @@ +name = mcl_stairs diff --git a/mods/ITEMS/stairs/models/stairs_stair.obj b/mods/ITEMS/mcl_stairs/models/stairs_stair.obj similarity index 100% rename from mods/ITEMS/stairs/models/stairs_stair.obj rename to mods/ITEMS/mcl_stairs/models/stairs_stair.obj diff --git a/mods/ITEMS/stairs/textures/stairs_stone_slab_side.png b/mods/ITEMS/mcl_stairs/textures/mcl_stairs_stone_slab_side.png similarity index 100% rename from mods/ITEMS/stairs/textures/stairs_stone_slab_side.png rename to mods/ITEMS/mcl_stairs/textures/mcl_stairs_stone_slab_side.png diff --git a/mods/ITEMS/stairs/textures/stairs_stone_slab_top.png b/mods/ITEMS/mcl_stairs/textures/mcl_stairs_stone_slab_top.png similarity index 100% rename from mods/ITEMS/stairs/textures/stairs_stone_slab_top.png rename to mods/ITEMS/mcl_stairs/textures/mcl_stairs_stone_slab_top.png diff --git a/mods/ITEMS/mcstair/depends.txt b/mods/ITEMS/mcstair/depends.txt index 129dfad7..dd0b3ab4 100644 --- a/mods/ITEMS/mcstair/depends.txt +++ b/mods/ITEMS/mcstair/depends.txt @@ -1,3 +1,3 @@ mcl_core -stairs +mcl_stairs doc? diff --git a/mods/ITEMS/mcstair/init.lua b/mods/ITEMS/mcstair/init.lua index 59bb2439..df6dd809 100644 --- a/mods/ITEMS/mcstair/init.lua +++ b/mods/ITEMS/mcstair/init.lua @@ -658,7 +658,7 @@ for _,v in ipairs({ "darkwood" }) do local t = minetest.registered_nodes["mcl_core:"..v].tiles[1] - mcstair.add("stairs:stair_"..v, { + mcstair.add("mcl_stairs:stair_"..v, { { t.."^("..t.."^[transformR90^mcstair_turntexture.png^[makealpha:255,0,255)", t.."^("..t.."^mcstair_turntexture.png^[transformR270^[makealpha:255,0,255)", @@ -682,5 +682,5 @@ for _,v in ipairs({ "purpur_block", "nether_brick", }) do - mcstair.add("stairs:stair_"..v) + mcstair.add("mcl_stairs:stair_"..v) end diff --git a/mods/ITEMS/minetest-3d_armor/3d_armor_stand/depends.txt b/mods/ITEMS/minetest-3d_armor/3d_armor_stand/depends.txt index f850654c..6fec7760 100644 --- a/mods/ITEMS/minetest-3d_armor/3d_armor_stand/depends.txt +++ b/mods/ITEMS/minetest-3d_armor/3d_armor_stand/depends.txt @@ -1,5 +1,5 @@ 3d_armor mcl_core mcl_sounds -stairs +mcl_stairs doc_identifier? diff --git a/mods/ITEMS/minetest-3d_armor/3d_armor_stand/init.lua b/mods/ITEMS/minetest-3d_armor/3d_armor_stand/init.lua index d9578e42..757243dc 100644 --- a/mods/ITEMS/minetest-3d_armor/3d_armor_stand/init.lua +++ b/mods/ITEMS/minetest-3d_armor/3d_armor_stand/init.lua @@ -226,7 +226,7 @@ minetest.register_craft({ recipe = { {"mcl_core:stick", "mcl_core:stick", "mcl_core:stick"}, {"", "mcl_core:stick", ""}, - {"mcl_core:stick", "stairs:slab_stone", "mcl_core:stick"}, + {"mcl_core:stick", "mcl_stairs:slab_stone", "mcl_core:stick"}, } }) diff --git a/mods/MAPGEN/mcl_mapgen_core/depends.txt b/mods/MAPGEN/mcl_mapgen_core/depends.txt index ed9ad9ee..172985f8 100644 --- a/mods/MAPGEN/mcl_mapgen_core/depends.txt +++ b/mods/MAPGEN/mcl_mapgen_core/depends.txt @@ -2,5 +2,5 @@ mcl_init mcl_util mcl_core mcl_cocoas -stairs +mcl_stairs mcl_structures diff --git a/mods/MAPGEN/mcl_mapgen_core/init.lua b/mods/MAPGEN/mcl_mapgen_core/init.lua index e3c649ce..15f00df4 100644 --- a/mods/MAPGEN/mcl_mapgen_core/init.lua +++ b/mods/MAPGEN/mcl_mapgen_core/init.lua @@ -33,11 +33,11 @@ minetest.register_alias("mapgen_snow", "mcl_core:snow") minetest.register_alias("mapgen_snowblock", "mcl_core:snowblock") minetest.register_alias("mapgen_ice", "mcl_core:ice") -minetest.register_alias("mapgen_stair_cobble", "stairs:stair_cobble") +minetest.register_alias("mapgen_stair_cobble", "mcl_stairs:stair_cobble") minetest.register_alias("mapgen_sandstonebrick", "mcl_core:sandstonesmooth") -minetest.register_alias("mapgen_stair_sandstonebrick", "stairs:stair_sandstone") -minetest.register_alias("mapgen_stair_sandstone_block", "stairs:stair_sandstone") -minetest.register_alias("mapgen_stair_desert_stone", "stairs:stair_sandstone") +minetest.register_alias("mapgen_stair_sandstonebrick", "mcl_stairs:stair_sandstone") +minetest.register_alias("mapgen_stair_sandstone_block", "mcl_stairs:stair_sandstone") +minetest.register_alias("mapgen_stair_desert_stone", "mcl_stairs:stair_sandstone") -- -- Ore generation diff --git a/mods/MAPGEN/mcl_structures/build/desert_temple.we b/mods/MAPGEN/mcl_structures/build/desert_temple.we index 6920d74c..0fb6c4e5 100644 --- a/mods/MAPGEN/mcl_structures/build/desert_temple.we +++ b/mods/MAPGEN/mcl_structures/build/desert_temple.we @@ -1 +1 @@ -return {{["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 8, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 1, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 1, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 1, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 1, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 1, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 1, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 1, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 1, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 1, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 1, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 1, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 1, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 1, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 1, ["name"] = "mcl_core:sandstonecarved", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 1, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 1, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 1, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 1, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 1, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 1, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 1, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 1, ["name"] = "mcl_core:sandstonecarved", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 1, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 1, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 1, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 1, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 1, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 1, ["name"] = "mcl_core:sandstonecarved", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 1, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 1, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 1, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 1, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 1, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 1, ["name"] = "mcl_core:sandstonecarved", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 1, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 1, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 1, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 1, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 1, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 1, ["name"] = "mcl_core:sandstonecarved", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 1, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 1, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 1, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 1, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 1, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 1, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 1, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 1, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 1, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 1, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 1, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 1, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 1, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 21, ["x"] = 1, ["name"] = "stairs:stair_sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 13}, {["y"] = 21, ["x"] = 1, ["name"] = "stairs:stair_sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 13}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 2, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 2, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 2, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 2, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 2, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 2, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 2, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 2, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 2, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 2, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 2, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 2, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 2, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 2, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 2, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 2, ["name"] = "mcl_colorblocks:hardened_clay_red", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 2, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 2, ["name"] = "mcl_colorblocks:hardened_clay_red", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 2, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 2, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 2, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 2, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 2, ["name"] = "mcl_core:sandstonecarved", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 2, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 2, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 2, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 2, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 2, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 2, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 21, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 21, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 21, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 21, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 21, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 21, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 22, ["x"] = 2, ["name"] = "stairs:stair_sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 13}, {["y"] = 22, ["x"] = 2, ["name"] = "stairs:stair_sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 13}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 3, ["name"] = "stairs:stair_sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 7}, {["y"] = 12, ["x"] = 3, ["name"] = "stairs:stair_sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 7}, {["y"] = 12, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 3, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 3, ["name"] = "stairs:slab_sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 7}, {["y"] = 13, ["x"] = 3, ["name"] = "stairs:slab_sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 7}, {["y"] = 13, ["x"] = 3, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 3, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 3, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 3, ["name"] = "mcl_core:sandstonecarved", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 3, ["name"] = "mcl_core:sandstonecarved", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 3, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 3, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 3, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 3, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 3, ["name"] = "mcl_core:sandstonecarved", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 3, ["name"] = "mcl_core:sandstonecarved", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 3, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 3, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 3, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 3, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 21, ["x"] = 3, ["name"] = "stairs:stair_sandstone", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 21, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 21, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 21, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 21, ["x"] = 3, ["name"] = "stairs:stair_sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 13}, {["y"] = 21, ["x"] = 3, ["name"] = "stairs:stair_sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 21, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 21, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 21, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 21, ["x"] = 3, ["name"] = "stairs:stair_sandstone", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 13}, {["y"] = 22, ["x"] = 3, ["name"] = "stairs:stair_sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 22, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 22, ["x"] = 3, ["name"] = "stairs:stair_sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 13}, {["y"] = 22, ["x"] = 3, ["name"] = "stairs:stair_sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 22, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 22, ["x"] = 3, ["name"] = "stairs:stair_sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 13}, {["y"] = 23, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 23, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 4, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 4, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 4, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 4, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 4, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 4, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 4, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 4, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 4, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 4, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 4, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 4, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 4, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 4, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 21, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 21, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 21, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 21, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 21, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 21, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 22, ["x"] = 4, ["name"] = "stairs:stair_sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 13}, {["y"] = 22, ["x"] = 4, ["name"] = "stairs:stair_sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 13}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 5, ["name"] = "stairs:stair_sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 11}, {["y"] = 14, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 5, ["name"] = "stairs:stair_sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 11}, {["y"] = 14, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 21, ["x"] = 5, ["name"] = "stairs:stair_sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 13}, {["y"] = 21, ["x"] = 5, ["name"] = "stairs:stair_sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 13}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 6, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 6, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 6, ["name"] = "mcl_core:sandstonecarved", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 6, ["name"] = "mcl_core:sandstonecarved", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 6, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 6, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 6, ["name"] = "stairs:stair_sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 13}, {["y"] = 15, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 6, ["name"] = "stairs:stair_sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 13}, {["y"] = 15, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 8, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 8, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 8, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 8, ["name"] = "mcl_core:sandstonecarved", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 8, ["name"] = "mcl_core:sandstonecarved", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 8, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 8, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 9, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 9, ["name"] = "mcl_chests:chest", ["z"] = 10, ["meta"] = {["inventory"] = {["main"] = {"", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""}}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 3, ["x"] = 9, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 9, ["name"] = "mcl_core:sandstonecarved", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 9, ["name"] = "mcl_core:sandstonecarved", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 8, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 8, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 8, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 9, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 9, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 9, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 9, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 9, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 9, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 9, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 9, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 9, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 10, ["name"] = "mcl_tnt:tnt", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "mcl_tnt:tnt", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "mcl_tnt:tnt", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 10, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 10, ["name"] = "mesecons_pressureplates:pressure_plate_stone_off", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 10, ["name"] = "mesecons_pressureplates:pressure_plate_stone_off", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 10, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 10, ["name"] = "mcl_core:sandstonecarved", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 8, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 8, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 10, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 10, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 10, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 10, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 10, ["name"] = "mcl_core:sandstonecarved", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 10, ["name"] = "mcl_core:sandstonecarved", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 10, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 10, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 10, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 10, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 10, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 10, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 10, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 10, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 11, ["name"] = "mcl_tnt:tnt", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 11, ["name"] = "mcl_tnt:tnt", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 11, ["name"] = "mcl_tnt:tnt", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 11, ["name"] = "mcl_chests:chest", ["z"] = 8, ["meta"] = {["inventory"] = {["main"] = {"", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""}}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 3, ["x"] = 11, ["name"] = "mesecons_pressureplates:pressure_plate_stone_off", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 11, ["name"] = "mcl_chests:chest", ["z"] = 12, ["meta"] = {["inventory"] = {["main"] = {"", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""}}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 8, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 8, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 11, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 11, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 11, ["name"] = "mcl_colorblocks:hardened_clay_blue", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 11, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 11, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 11, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 11, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 12, ["name"] = "mcl_tnt:tnt", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 12, ["name"] = "mcl_tnt:tnt", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 12, ["name"] = "mcl_tnt:tnt", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 12, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 12, ["name"] = "mesecons_pressureplates:pressure_plate_stone_off", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 12, ["name"] = "mesecons_pressureplates:pressure_plate_stone_off", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 12, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 12, ["name"] = "mcl_core:sandstonecarved", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 8, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 8, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 12, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 12, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 12, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 12, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 12, ["name"] = "mcl_core:sandstonecarved", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 12, ["name"] = "mcl_core:sandstonecarved", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 12, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 12, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 12, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 12, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 12, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 12, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 12, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 12, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 13, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 13, ["name"] = "mcl_chests:chest", ["z"] = 10, ["meta"] = {["inventory"] = {["main"] = {"", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""}}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 3, ["x"] = 13, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 13, ["name"] = "mcl_core:sandstonecarved", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 13, ["name"] = "mcl_core:sandstonecarved", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 8, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 8, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 8, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 13, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 13, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 13, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 13, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 13, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 14, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 13, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 13, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 13, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 13, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 16, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 14, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 14, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 14, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 14, ["name"] = "mcl_core:sandstonecarved", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 14, ["name"] = "mcl_core:sandstonecarved", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 14, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 14, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 14, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 16, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 14, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 16, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 16, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 16, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 16, ["name"] = "mcl_core:sandstonecarved", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 16, ["name"] = "mcl_core:sandstonecarved", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 14, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 16, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 16, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 16, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 14, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 18, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 18, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 18, ["name"] = "mcl_core:sandstonecarved", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 18, ["name"] = "mcl_core:sandstonecarved", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 14, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 20, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 20, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 20, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 20, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 20, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 20, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 20, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 20, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 20, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 20, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 20, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 20, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 20, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 20, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 20, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 20, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 20, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 20, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 20, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 20, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 20, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 20, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 20, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 20, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 20, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 20, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 20, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 20, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 20, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 20, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 20, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 20, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 20, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 20, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 20, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 20, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 20, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 20, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}} +return {{["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 8, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 0, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 1, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 1, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 1, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 1, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 1, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 1, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 1, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 1, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 1, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 1, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 1, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 1, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 1, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 1, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 1, ["name"] = "mcl_core:sandstonecarved", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 1, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 1, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 1, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 1, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 1, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 1, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 1, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 1, ["name"] = "mcl_core:sandstonecarved", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 1, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 1, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 1, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 1, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 1, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 1, ["name"] = "mcl_core:sandstonecarved", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 1, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 1, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 1, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 1, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 1, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 1, ["name"] = "mcl_core:sandstonecarved", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 1, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 1, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 1, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 1, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 1, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 1, ["name"] = "mcl_core:sandstonecarved", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 1, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 1, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 1, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 1, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 1, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 1, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 1, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 1, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 1, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 1, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 1, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 1, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 1, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 1, ["name"] = "mcl_core:sandstone", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 21, ["x"] = 1, ["name"] = "mcl_stairs:stair_sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 13}, {["y"] = 21, ["x"] = 1, ["name"] = "mcl_stairs:stair_sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 13}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 2, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 2, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 2, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 2, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 2, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 2, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 2, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 2, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 2, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 2, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 2, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 2, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 2, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 2, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 2, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 2, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 2, ["name"] = "mcl_colorblocks:hardened_clay_red", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 2, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 2, ["name"] = "mcl_colorblocks:hardened_clay_red", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 2, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 2, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 2, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 2, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 2, ["name"] = "mcl_core:sandstonecarved", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 2, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 2, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 2, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 2, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 2, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 2, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 21, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 21, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 21, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 21, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 21, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 21, ["x"] = 2, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 22, ["x"] = 2, ["name"] = "mcl_stairs:stair_sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 13}, {["y"] = 22, ["x"] = 2, ["name"] = "mcl_stairs:stair_sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 13}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 3, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 3, ["name"] = "mcl_stairs:stair_sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 7}, {["y"] = 12, ["x"] = 3, ["name"] = "mcl_stairs:stair_sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 7}, {["y"] = 12, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 3, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 3, ["name"] = "mcl_stairs:slab_sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 7}, {["y"] = 13, ["x"] = 3, ["name"] = "mcl_stairs:slab_sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 7}, {["y"] = 13, ["x"] = 3, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 3, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 3, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 3, ["name"] = "mcl_core:sandstonecarved", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 3, ["name"] = "mcl_core:sandstonecarved", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 3, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 3, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 3, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 3, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 3, ["name"] = "mcl_core:sandstonecarved", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 3, ["name"] = "mcl_core:sandstonecarved", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 3, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 3, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 3, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 3, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 21, ["x"] = 3, ["name"] = "mcl_stairs:stair_sandstone", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 21, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 21, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 21, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 21, ["x"] = 3, ["name"] = "mcl_stairs:stair_sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 13}, {["y"] = 21, ["x"] = 3, ["name"] = "mcl_stairs:stair_sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 21, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 21, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 21, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 21, ["x"] = 3, ["name"] = "mcl_stairs:stair_sandstone", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 13}, {["y"] = 22, ["x"] = 3, ["name"] = "mcl_stairs:stair_sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 22, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 22, ["x"] = 3, ["name"] = "mcl_stairs:stair_sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 13}, {["y"] = 22, ["x"] = 3, ["name"] = "mcl_stairs:stair_sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 22, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 22, ["x"] = 3, ["name"] = "mcl_stairs:stair_sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 13}, {["y"] = 23, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 23, ["x"] = 3, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 4, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 4, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 4, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 4, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 4, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 4, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 4, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 4, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 4, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 4, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 4, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 4, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 4, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 4, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 4, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 21, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 21, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 21, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 21, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 21, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 21, ["x"] = 4, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 22, ["x"] = 4, ["name"] = "mcl_stairs:stair_sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 13}, {["y"] = 22, ["x"] = 4, ["name"] = "mcl_stairs:stair_sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 13}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 5, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 5, ["name"] = "mcl_stairs:stair_sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 11}, {["y"] = 14, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 5, ["name"] = "mcl_stairs:stair_sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 11}, {["y"] = 14, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 5, ["name"] = "mcl_core:sandstone", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 21, ["x"] = 5, ["name"] = "mcl_stairs:stair_sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 13}, {["y"] = 21, ["x"] = 5, ["name"] = "mcl_stairs:stair_sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 13}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 6, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 6, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 6, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 6, ["name"] = "mcl_core:sandstonecarved", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 6, ["name"] = "mcl_core:sandstonecarved", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 6, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 6, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 6, ["name"] = "mcl_stairs:stair_sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 13}, {["y"] = 15, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 6, ["name"] = "mcl_stairs:stair_sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 13}, {["y"] = 15, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 6, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 7, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 7, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 8, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 8, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 8, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 8, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 8, ["name"] = "mcl_core:sandstonecarved", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 8, ["name"] = "mcl_core:sandstonecarved", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 8, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 8, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 8, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 9, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 9, ["name"] = "mcl_chests:chest", ["z"] = 10, ["meta"] = {["inventory"] = {["main"] = {"", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""}}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 3, ["x"] = 9, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 9, ["name"] = "mcl_core:sandstonecarved", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 9, ["name"] = "mcl_core:sandstonecarved", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 8, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 8, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 8, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 9, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 9, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 9, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 9, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 9, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 9, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 9, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 9, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 9, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 9, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 9, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 10, ["name"] = "mcl_tnt:tnt", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "mcl_tnt:tnt", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "mcl_tnt:tnt", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 10, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 10, ["name"] = "mesecons_pressureplates:pressure_plate_stone_off", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 10, ["name"] = "mesecons_pressureplates:pressure_plate_stone_off", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 10, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 10, ["name"] = "mcl_core:sandstonecarved", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 8, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 8, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 10, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 10, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 10, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 10, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 10, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 10, ["name"] = "mcl_core:sandstonecarved", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 10, ["name"] = "mcl_core:sandstonecarved", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 10, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 10, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 10, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 10, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 10, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 10, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 10, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 10, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 10, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 11, ["name"] = "mcl_tnt:tnt", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 11, ["name"] = "mcl_tnt:tnt", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 11, ["name"] = "mcl_tnt:tnt", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 11, ["name"] = "mcl_chests:chest", ["z"] = 8, ["meta"] = {["inventory"] = {["main"] = {"", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""}}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 3, ["x"] = 11, ["name"] = "mesecons_pressureplates:pressure_plate_stone_off", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 11, ["name"] = "mcl_chests:chest", ["z"] = 12, ["meta"] = {["inventory"] = {["main"] = {"", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""}}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 8, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 8, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 11, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 11, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 11, ["name"] = "mcl_colorblocks:hardened_clay_blue", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 11, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 11, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 11, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 11, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 11, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 11, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 12, ["name"] = "mcl_tnt:tnt", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 12, ["name"] = "mcl_tnt:tnt", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 12, ["name"] = "mcl_tnt:tnt", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 12, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 12, ["name"] = "mesecons_pressureplates:pressure_plate_stone_off", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 12, ["name"] = "mesecons_pressureplates:pressure_plate_stone_off", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 12, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 12, ["name"] = "mcl_core:sandstonecarved", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 8, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 8, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 12, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 12, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 12, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 12, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 12, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 12, ["name"] = "mcl_core:sandstonecarved", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 12, ["name"] = "mcl_core:sandstonecarved", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 12, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 12, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 12, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 12, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 12, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 12, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 12, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 12, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 20, ["x"] = 12, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 13, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 13, ["name"] = "mcl_chests:chest", ["z"] = 10, ["meta"] = {["inventory"] = {["main"] = {"", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""}}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 3, ["x"] = 13, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 13, ["name"] = "mcl_core:sandstonecarved", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 13, ["name"] = "mcl_core:sandstonecarved", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 8, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 8, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 8, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 13, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 13, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 13, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 13, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 13, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 13, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 14, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 13, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 13, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 13, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 13, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 16, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 19, ["x"] = 13, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 14, ["name"] = "mcl_colorblocks:hardened_clay_orange", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 14, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 14, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 14, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 14, ["name"] = "mcl_core:sandstonecarved", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 14, ["name"] = "mcl_core:sandstonecarved", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 14, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 14, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 14, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 16, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 18, ["x"] = 14, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 15, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 14, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 16, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 17, ["x"] = 15, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 16, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 16, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 16, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 16, ["name"] = "mcl_core:sandstonecarved", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 16, ["name"] = "mcl_core:sandstonecarved", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 14, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 16, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 16, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 16, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 16, ["x"] = 16, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 17, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 14, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 15, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 15, ["x"] = 17, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 18, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 18, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 18, ["name"] = "mcl_core:sandstonesmooth", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 18, ["name"] = "mcl_core:sandstonecarved", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 18, ["name"] = "mcl_core:sandstonecarved", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 14, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 14, ["x"] = 18, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 19, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 13, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 13, ["x"] = 19, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 20, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 20, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 20, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 20, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 20, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 20, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 20, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 20, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 20, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 20, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 20, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 20, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 20, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 20, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 20, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 20, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 20, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 20, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 20, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 20, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 20, ["name"] = "mcl_core:sandstone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 20, ["name"] = "mcl_core:sandstone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 20, ["name"] = "mcl_core:sandstone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 20, ["name"] = "mcl_core:sandstone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 20, ["name"] = "mcl_core:sandstone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 20, ["name"] = "mcl_core:sandstone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 20, ["name"] = "mcl_core:sandstone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 20, ["name"] = "mcl_core:sandstone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 20, ["name"] = "mcl_core:sandstone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 20, ["name"] = "mcl_core:sandstone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 20, ["name"] = "mcl_core:sandstone", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 20, ["name"] = "mcl_core:sandstone", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 20, ["name"] = "mcl_core:sandstone", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 20, ["name"] = "mcl_core:sandstone", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 20, ["name"] = "mcl_core:sandstone", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 20, ["name"] = "mcl_core:sandstone", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 20, ["name"] = "mcl_core:sandstone", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 20, ["name"] = "mcl_core:sandstone", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 12, ["x"] = 20, ["name"] = "mcl_core:sandstone", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 5, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 6, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 7, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 8, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 9, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 10, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 11, ["x"] = 21, ["name"] = "mcl_core:sand", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}} diff --git a/mods/MAPGEN/mcl_structures/build/desert_well.mts b/mods/MAPGEN/mcl_structures/build/desert_well.mts index 88c21d77c77f7c6c54c2763b21a9c148c7699a77..60cb373ad06499963d5aa101bfa53a9744c92802 100644 GIT binary patch delta 34 qcmdnaxSer=7OP}#a!&k2?J^+;g%=%ce-xUUqn15nVc0%BdEz_9gI_(A~UKn=VA diff --git a/mods/MAPGEN/mcl_structures/build/pnj_house_1.we b/mods/MAPGEN/mcl_structures/build/pnj_house_1.we index c7b00540..1e99320a 100644 --- a/mods/MAPGEN/mcl_structures/build/pnj_house_1.we +++ b/mods/MAPGEN/mcl_structures/build/pnj_house_1.we @@ -1 +1 @@ -return {{["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:wood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:wood", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:wood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 1, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 1, ["name"] = "mcl_core:wood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 1, ["name"] = "xpanes:pane_natural", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 45}, {["y"] = 2, ["x"] = 1, ["name"] = "mcl_core:wood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 1, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:wood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:wood", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:wood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:tree", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:tree", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:tree", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:tree", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:tree", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_core:wood", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 2, ["name"] = "mcl_core:wood", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 2, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 2, ["name"] = "mcl_core:wood", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 2, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 2, ["name"] = "mcl_core:tree", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 4, ["x"] = 2, ["name"] = "mcl_core:wood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 2, ["name"] = "mcl_core:wood", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 2, ["name"] = "mcl_core:wood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 2, ["name"] = "mcl_core:tree", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "stairs:stair_cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 93}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_core:wood", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_doors:wooden_door_b_1", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 93}, {["y"] = 2, ["x"] = 3, ["name"] = "mcl_core:wood", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 3, ["name"] = "mcl_doors:wooden_door_t_1", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 109}, {["y"] = 3, ["x"] = 3, ["name"] = "mcl_core:wood", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 3, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 3, ["name"] = "mcl_core:tree", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 4, ["x"] = 3, ["name"] = "mcl_core:wood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 3, ["name"] = "mcl_core:wood", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 3, ["name"] = "mcl_core:wood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 3, ["name"] = "mcl_core:tree", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_core:wood", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 4, ["name"] = "mcl_core:wood", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 4, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 4, ["name"] = "mcl_core:wood", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 4, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 4, ["name"] = "mcl_core:tree", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 4, ["x"] = 4, ["name"] = "mcl_core:wood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 4, ["name"] = "mcl_core:wood", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 4, ["name"] = "mcl_core:wood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 4, ["name"] = "mcl_core:tree", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:wood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:wood", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:wood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_core:wood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 5, ["name"] = "xpanes:pane_natural", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_core:wood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:wood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:wood", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:wood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:tree", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:tree", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:tree", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:tree", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:tree", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}} +return {{["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:wood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:wood", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:wood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 1, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 1, ["name"] = "mcl_core:wood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 1, ["name"] = "xpanes:pane_natural", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 45}, {["y"] = 2, ["x"] = 1, ["name"] = "mcl_core:wood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 1, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:wood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:wood", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:wood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:tree", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:tree", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:tree", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:tree", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:tree", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_core:wood", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 2, ["name"] = "mcl_core:wood", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 2, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 2, ["name"] = "mcl_core:wood", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 2, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 2, ["name"] = "mcl_core:tree", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 4, ["x"] = 2, ["name"] = "mcl_core:wood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 2, ["name"] = "mcl_core:wood", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 2, ["name"] = "mcl_core:wood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 2, ["name"] = "mcl_core:tree", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_stairs:stair_cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 93}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_core:wood", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_doors:wooden_door_b_1", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 93}, {["y"] = 2, ["x"] = 3, ["name"] = "mcl_core:wood", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 3, ["name"] = "mcl_doors:wooden_door_t_1", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 109}, {["y"] = 3, ["x"] = 3, ["name"] = "mcl_core:wood", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 3, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 3, ["name"] = "mcl_core:tree", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 4, ["x"] = 3, ["name"] = "mcl_core:wood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 3, ["name"] = "mcl_core:wood", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 3, ["name"] = "mcl_core:wood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 3, ["name"] = "mcl_core:tree", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_core:wood", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 4, ["name"] = "mcl_core:wood", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 4, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 4, ["name"] = "mcl_core:wood", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 4, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 4, ["name"] = "mcl_core:tree", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 4, ["x"] = 4, ["name"] = "mcl_core:wood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 4, ["name"] = "mcl_core:wood", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 4, ["name"] = "mcl_core:wood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 4, ["name"] = "mcl_core:tree", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:wood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:wood", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:wood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_core:wood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 5, ["name"] = "xpanes:pane_natural", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_core:wood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:wood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:wood", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:wood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:tree", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:tree", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:tree", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:tree", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:tree", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}} diff --git a/mods/MAPGEN/mcl_structures/build/pnj_house_2.we b/mods/MAPGEN/mcl_structures/build/pnj_house_2.we index 29ad3a3e..4ef7662e 100644 --- a/mods/MAPGEN/mcl_structures/build/pnj_house_2.we +++ b/mods/MAPGEN/mcl_structures/build/pnj_house_2.we @@ -1 +1 @@ -return {{["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:wood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:wood", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:wood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 1, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 1, ["name"] = "mcl_core:wood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 1, ["name"] = "xpanes:pane_natural", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 2, ["x"] = 1, ["name"] = "mcl_core:wood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 1, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:wood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:wood", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:wood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:tree", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:tree", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:tree", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:tree", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:tree", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 1, ["name"] = "mcl_fences:fence_23", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 95}, {["y"] = 5, ["x"] = 1, ["name"] = "mcl_fences:fence_3", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 79}, {["y"] = 5, ["x"] = 1, ["name"] = "mcl_fences:fence_3", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 63}, {["y"] = 5, ["x"] = 1, ["name"] = "mcl_fences:fence_3", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 47}, {["y"] = 5, ["x"] = 1, ["name"] = "mcl_fences:fence_22", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 31}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_core:wood", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 2, ["name"] = "mcl_core:wood", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 2, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 2, ["name"] = "mcl_core:wood", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 2, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 2, ["name"] = "mcl_core:tree", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 4, ["x"] = 2, ["name"] = "mcl_core:wood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 2, ["name"] = "mcl_core:wood", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 2, ["name"] = "mcl_core:wood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 2, ["name"] = "mcl_core:tree", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 5, ["x"] = 2, ["name"] = "mcl_fences:fence_32", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 111}, {["y"] = 5, ["x"] = 2, ["name"] = "mcl_fences:fence_32", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 47}, {["y"] = 0, ["x"] = 3, ["name"] = "stairs:stair_cobble", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_doors:wooden_door_b_1", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 3, ["name"] = "mcl_doors:wooden_door_t_1", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 2, ["x"] = 3, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 3, ["name"] = "mcl_core:wood", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 3, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 3, ["name"] = "mcl_core:tree", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 4, ["x"] = 3, ["name"] = "mcl_core:wood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 3, ["name"] = "mcl_core:wood", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 3, ["name"] = "mcl_core:wood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 3, ["name"] = "mcl_core:tree", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 5, ["x"] = 3, ["name"] = "mcl_fences:fence_32", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 127}, {["y"] = 5, ["x"] = 3, ["name"] = "mcl_fences:fence_32", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 63}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_core:wood", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_core:ladder", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 4, ["param1"] = 90}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 4, ["name"] = "mcl_core:wood", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 4, ["name"] = "mcl_core:ladder", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 4, ["param1"] = 107}, {["y"] = 2, ["x"] = 4, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 4, ["name"] = "mcl_core:wood", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 4, ["name"] = "mcl_core:ladder", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 4, ["param1"] = 92}, {["y"] = 3, ["x"] = 4, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 4, ["name"] = "mcl_core:tree", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 4, ["x"] = 4, ["name"] = "mcl_core:wood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 4, ["name"] = "mcl_core:wood", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 4, ["name"] = "mcl_core:ladder", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 4, ["param1"] = 77}, {["y"] = 4, ["x"] = 4, ["name"] = "mcl_core:tree", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 4, ["name"] = "mcl_fences:fence_32", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 143}, {["y"] = 5, ["x"] = 4, ["name"] = "mcl_fences:fence_32", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 79}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:wood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:wood", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:wood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_core:wood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 5, ["name"] = "xpanes:pane_natural", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 141}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_core:wood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:wood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:wood", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:wood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:tree", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:tree", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:tree", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:tree", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:tree", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 5, ["name"] = "mcl_fences:fence_13", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 159}, {["y"] = 5, ["x"] = 5, ["name"] = "mcl_fences:fence_3", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 143}, {["y"] = 5, ["x"] = 5, ["name"] = "mcl_fences:fence_3", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 127}, {["y"] = 5, ["x"] = 5, ["name"] = "mcl_fences:fence_3", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 111}, {["y"] = 5, ["x"] = 5, ["name"] = "mcl_fences:fence_12", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 95}} +return {{["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:wood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:wood", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:wood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 1, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 1, ["name"] = "mcl_core:wood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 1, ["name"] = "xpanes:pane_natural", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 2, ["x"] = 1, ["name"] = "mcl_core:wood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 1, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:wood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:wood", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:wood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:tree", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:tree", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:tree", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:tree", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:tree", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 1, ["name"] = "mcl_fences:fence_23", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 95}, {["y"] = 5, ["x"] = 1, ["name"] = "mcl_fences:fence_3", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 79}, {["y"] = 5, ["x"] = 1, ["name"] = "mcl_fences:fence_3", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 63}, {["y"] = 5, ["x"] = 1, ["name"] = "mcl_fences:fence_3", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 47}, {["y"] = 5, ["x"] = 1, ["name"] = "mcl_fences:fence_22", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 31}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_core:wood", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 2, ["name"] = "mcl_core:wood", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 2, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 2, ["name"] = "mcl_core:wood", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 2, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 2, ["name"] = "mcl_core:tree", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 4, ["x"] = 2, ["name"] = "mcl_core:wood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 2, ["name"] = "mcl_core:wood", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 2, ["name"] = "mcl_core:wood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 2, ["name"] = "mcl_core:tree", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 5, ["x"] = 2, ["name"] = "mcl_fences:fence_32", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 111}, {["y"] = 5, ["x"] = 2, ["name"] = "mcl_fences:fence_32", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 47}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_stairs:stair_cobble", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_doors:wooden_door_b_1", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 3, ["name"] = "mcl_doors:wooden_door_t_1", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 2, ["x"] = 3, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 3, ["name"] = "mcl_core:wood", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 3, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 3, ["name"] = "mcl_core:tree", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 4, ["x"] = 3, ["name"] = "mcl_core:wood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 3, ["name"] = "mcl_core:wood", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 3, ["name"] = "mcl_core:wood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 3, ["name"] = "mcl_core:tree", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 5, ["x"] = 3, ["name"] = "mcl_fences:fence_32", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 127}, {["y"] = 5, ["x"] = 3, ["name"] = "mcl_fences:fence_32", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 63}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_core:wood", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_core:ladder", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 4, ["param1"] = 90}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 4, ["name"] = "mcl_core:wood", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 4, ["name"] = "mcl_core:ladder", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 4, ["param1"] = 107}, {["y"] = 2, ["x"] = 4, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 4, ["name"] = "mcl_core:wood", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 4, ["name"] = "mcl_core:ladder", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 4, ["param1"] = 92}, {["y"] = 3, ["x"] = 4, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 4, ["name"] = "mcl_core:tree", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 4, ["x"] = 4, ["name"] = "mcl_core:wood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 4, ["name"] = "mcl_core:wood", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 4, ["name"] = "mcl_core:ladder", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 4, ["param1"] = 77}, {["y"] = 4, ["x"] = 4, ["name"] = "mcl_core:tree", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 4, ["name"] = "mcl_fences:fence_32", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 143}, {["y"] = 5, ["x"] = 4, ["name"] = "mcl_fences:fence_32", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 79}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:wood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:wood", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:wood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_core:wood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 5, ["name"] = "xpanes:pane_natural", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 141}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_core:wood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:wood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:wood", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:wood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:tree", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:tree", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:tree", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:tree", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:tree", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 5, ["name"] = "mcl_fences:fence_13", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 159}, {["y"] = 5, ["x"] = 5, ["name"] = "mcl_fences:fence_3", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 143}, {["y"] = 5, ["x"] = 5, ["name"] = "mcl_fences:fence_3", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 127}, {["y"] = 5, ["x"] = 5, ["name"] = "mcl_fences:fence_3", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 111}, {["y"] = 5, ["x"] = 5, ["name"] = "mcl_fences:fence_12", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 95}} diff --git a/mods/MAPGEN/mcl_structures/build/pnj_house_3.we b/mods/MAPGEN/mcl_structures/build/pnj_house_3.we index e9368cf1..d4bb2ba5 100644 --- a/mods/MAPGEN/mcl_structures/build/pnj_house_3.we +++ b/mods/MAPGEN/mcl_structures/build/pnj_house_3.we @@ -1 +1 @@ -return {{["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:tree", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:wood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:wood", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:tree", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 2, ["x"] = 1, ["name"] = "mcl_core:tree", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 2, ["x"] = 1, ["name"] = "mcl_core:wood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 1, ["name"] = "mcl_core:wood", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 1, ["name"] = "mcl_core:tree", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:tree", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:wood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:wood", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:tree", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:tree", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:tree", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_core:wood", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_core:wood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 2, ["name"] = "mcl_core:wood", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 2, ["name"] = "mcl_core:wood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 2, ["name"] = "mcl_core:wood", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 2, ["name"] = "mcl_core:wood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 2, ["name"] = "mcl_core:tree", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 4, ["x"] = 2, ["name"] = "mcl_core:tree", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 4, ["x"] = 2, ["name"] = "mcl_core:tree", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 4, ["x"] = 2, ["name"] = "mcl_core:tree", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_core:wood", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_core:wood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 3, ["name"] = "xpanes:pane_natural", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 2, ["x"] = 3, ["name"] = "xpanes:pane_natural", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 3, ["x"] = 3, ["name"] = "mcl_core:wood", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 3, ["name"] = "mcl_core:wood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 3, ["name"] = "mcl_core:tree", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 4, ["x"] = 3, ["name"] = "mcl_core:tree", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 4, ["x"] = 3, ["name"] = "mcl_core:tree", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 4, ["x"] = 3, ["name"] = "mcl_core:tree", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_core:wood", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_core:wood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 4, ["name"] = "mcl_core:wood", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 4, ["name"] = "mcl_core:wood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 4, ["name"] = "mcl_core:wood", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 4, ["name"] = "mcl_core:wood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 4, ["name"] = "mcl_core:tree", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 4, ["x"] = 4, ["name"] = "mcl_core:tree", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 4, ["x"] = 4, ["name"] = "mcl_core:tree", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 4, ["x"] = 4, ["name"] = "mcl_core:tree", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:tree", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:wood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_doors:wooden_door_b_1", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 93}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:tree", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_core:tree", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_core:wood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_doors:wooden_door_t_1", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 109}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_core:tree", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:tree", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:wood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:wood", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:tree", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:tree", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:tree", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "stairs:stair_cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 93}} +return {{["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:tree", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:wood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:wood", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:tree", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 2, ["x"] = 1, ["name"] = "mcl_core:tree", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 2, ["x"] = 1, ["name"] = "mcl_core:wood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 1, ["name"] = "mcl_core:wood", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 1, ["name"] = "mcl_core:tree", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:tree", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:wood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:wood", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:tree", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:tree", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:tree", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_core:wood", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_core:wood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 2, ["name"] = "mcl_core:wood", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 2, ["name"] = "mcl_core:wood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 2, ["name"] = "mcl_core:wood", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 2, ["name"] = "mcl_core:wood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 2, ["name"] = "mcl_core:tree", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 4, ["x"] = 2, ["name"] = "mcl_core:tree", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 4, ["x"] = 2, ["name"] = "mcl_core:tree", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 4, ["x"] = 2, ["name"] = "mcl_core:tree", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_core:wood", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_core:wood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 3, ["name"] = "xpanes:pane_natural", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 2, ["x"] = 3, ["name"] = "xpanes:pane_natural", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 3, ["x"] = 3, ["name"] = "mcl_core:wood", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 3, ["name"] = "mcl_core:wood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 3, ["name"] = "mcl_core:tree", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 4, ["x"] = 3, ["name"] = "mcl_core:tree", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 4, ["x"] = 3, ["name"] = "mcl_core:tree", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 4, ["x"] = 3, ["name"] = "mcl_core:tree", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_core:wood", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_core:wood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 4, ["name"] = "mcl_core:wood", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 4, ["name"] = "mcl_core:wood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 4, ["name"] = "mcl_core:wood", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 4, ["name"] = "mcl_core:wood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 4, ["name"] = "mcl_core:tree", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 4, ["x"] = 4, ["name"] = "mcl_core:tree", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 4, ["x"] = 4, ["name"] = "mcl_core:tree", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 4, ["x"] = 4, ["name"] = "mcl_core:tree", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:tree", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:wood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_doors:wooden_door_b_1", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 93}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:tree", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_core:tree", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_core:wood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_doors:wooden_door_t_1", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 109}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_core:tree", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:tree", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:wood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:wood", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:tree", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:tree", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:tree", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_stairs:stair_cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 93}} diff --git a/mods/MAPGEN/mcl_structures/build/pnj_town_1.we b/mods/MAPGEN/mcl_structures/build/pnj_town_1.we index 5b9695ea..e7bdcfef 100644 --- a/mods/MAPGEN/mcl_structures/build/pnj_town_1.we +++ b/mods/MAPGEN/mcl_structures/build/pnj_town_1.we @@ -1 +1 @@ -return {{["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:tree", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:tree", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:tree", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:tree", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:tree", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:tree", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:tree", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:tree", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_farming:soil_wet", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_farming:soil_wet", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:water_source", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_farming:soil_wet", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_farming:soil_wet", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:tree", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_farming:wheat", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_farming:wheat", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_farming:wheat", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_farming:wheat", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:tree", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_farming:soil_wet", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_farming:soil_wet", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:water_source", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_farming:soil_wet", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_farming:soil_wet", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:tree", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_farming:wheat", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_farming:wheat", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_farming:wheat", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_farming:wheat", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:tree", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_farming:soil_wet", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_farming:soil_wet", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:water_source", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 240, ["param1"] = 15}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_farming:soil_wet", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_farming:soil_wet", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:tree", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_farming:wheat", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_farming:wheat", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_farming:wheat", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_farming:wheat", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:tree", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_farming:soil_wet", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_farming:soil_wet", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:water_source", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_farming:soil_wet", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_farming:soil_wet", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:tree", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_farming:wheat", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_farming:wheat", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_farming:wheat", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_farming:wheat", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:tree", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_farming:soil_wet", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_farming:soil_wet", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:water_source", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 240, ["param1"] = 15}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_farming:soil_wet", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_farming:soil_wet", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:tree", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 6, ["name"] = "mcl_farming:wheat", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 6, ["name"] = "mcl_farming:wheat", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 6, ["name"] = "mcl_farming:wheat", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 6, ["name"] = "mcl_farming:wheat", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:tree", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_farming:soil_wet", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_farming:soil_wet", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:water_source", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_farming:soil_wet", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_farming:soil_wet", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:tree", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 7, ["name"] = "mcl_farming:wheat", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 7, ["name"] = "mcl_farming:wheat", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 7, ["name"] = "mcl_farming:wheat", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 7, ["name"] = "mcl_farming:wheat", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:tree", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_farming:soil_wet", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_farming:soil_wet", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:water_source", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_farming:soil_wet", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_farming:soil_wet", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:tree", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 8, ["name"] = "mcl_farming:wheat", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 8, ["name"] = "mcl_farming:wheat", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 8, ["name"] = "mcl_farming:wheat", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 8, ["name"] = "mcl_farming:wheat", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:tree", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:tree", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:tree", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:tree", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:tree", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:tree", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:tree", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:tree", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:tree", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:tree", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:tree", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:tree", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:tree", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:tree", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:tree", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:tree", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:tree", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_farming:soil_wet", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_farming:soil_wet", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_farming:soil_wet", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_farming:soil_wet", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_farming:soil_wet", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 29}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_farming:soil_wet", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 45}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_farming:soil_wet", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:tree", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 11, ["name"] = "mcl_farming:wheat", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 11, ["name"] = "mcl_farming:wheat", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 11, ["name"] = "mcl_farming:wheat", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 11, ["name"] = "mcl_farming:wheat", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 31}, {["y"] = 1, ["x"] = 11, ["name"] = "mcl_farming:wheat", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 47}, {["y"] = 1, ["x"] = 11, ["name"] = "mcl_farming:wheat", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 63}, {["y"] = 1, ["x"] = 11, ["name"] = "mcl_farming:wheat", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 79}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:tree", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_farming:soil_wet", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_farming:soil_wet", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_farming:soil_wet", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_farming:soil_wet", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 29}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_farming:soil_wet", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 45}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_farming:soil_wet", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_farming:soil_wet", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:tree", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 12, ["name"] = "mcl_farming:wheat", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 12, ["name"] = "mcl_farming:wheat", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 12, ["name"] = "mcl_farming:wheat", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 31}, {["y"] = 1, ["x"] = 12, ["name"] = "mcl_farming:wheat_3", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 47}, {["y"] = 1, ["x"] = 12, ["name"] = "mcl_farming:wheat", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 63}, {["y"] = 1, ["x"] = 12, ["name"] = "mcl_farming:wheat", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 79}, {["y"] = 1, ["x"] = 12, ["name"] = "mcl_farming:wheat", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 95}, {["y"] = 3, ["x"] = 12, ["name"] = "mcl_torches:torch_wall", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 15}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:tree", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:water_source", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:water_source", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:water_source", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 29}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:water_source", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 240, ["param1"] = 47}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:water_source", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:water_source", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:water_source", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:tree", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_fences:fence", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 1, ["x"] = 13, ["name"] = "mcl_fences:fence", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 2, ["x"] = 13, ["name"] = "mcl_fences:fence", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 189}, {["y"] = 3, ["x"] = 13, ["name"] = "mcl_torches:torch_wall", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 13, ["name"] = "mcl_wool:black", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 13, ["name"] = "mcl_torches:torch_wall", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 15}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:tree", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_farming:soil_wet", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_farming:soil_wet", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 29}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_farming:soil_wet", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 45}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_farming:soil_wet", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_farming:soil_wet", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_farming:soil_wet", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_farming:soil_wet", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:tree", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_farming:wheat", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 31}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_farming:wheat", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 47}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_farming:wheat", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 63}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_farming:wheat", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 79}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_farming:wheat", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 95}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_farming:wheat", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 111}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_farming:wheat", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 127}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 14, ["name"] = "xpanes:pane_natural", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 14, ["name"] = "xpanes:pane_natural", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 3, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 14, ["name"] = "xpanes:pane_natural", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 3, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 14, ["name"] = "mcl_torches:torch_wall", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 15}, {["y"] = 4, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 14, ["name"] = "xpanes:pane_natural", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 6, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 14, ["name"] = "xpanes:pane_natural", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 7, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 8, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 8, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 8, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:tree", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_farming:soil_wet", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 29}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_farming:soil_wet", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 45}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_farming:soil_wet", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_farming:soil_wet", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_farming:soil_wet", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_farming:soil_wet", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_farming:soil_wet", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:tree", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_farming:wheat", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 47}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_farming:wheat", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 63}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_farming:wheat", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 79}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_farming:wheat", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 95}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_farming:wheat", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 111}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_farming:wheat", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 127}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_farming:wheat_2", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 143}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_core:ladder", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 138}, {["y"] = 1, ["x"] = 15, ["name"] = "stairs:stair_cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 121}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 15, ["name"] = "mcl_core:ladder", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 155}, {["y"] = 2, ["x"] = 15, ["name"] = "stairs:stair_cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 170}, {["y"] = 2, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 15, ["name"] = "mcl_core:ladder", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 171}, {["y"] = 3, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 15, ["name"] = "mcl_core:ladder", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 154}, {["y"] = 4, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 15, ["name"] = "mcl_core:ladder", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 138}, {["y"] = 5, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 15, ["name"] = "mcl_core:ladder", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 123}, {["y"] = 6, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 15, ["name"] = "mcl_core:ladder", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 107}, {["y"] = 7, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 8, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 8, ["x"] = 15, ["name"] = "mcl_core:ladder", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 92}, {["y"] = 8, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 15, ["name"] = "mcl_core:ladder", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 77}, {["y"] = 9, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:tree", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:tree", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:tree", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:tree", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:tree", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:tree", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:tree", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:tree", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:tree", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "stairs:stair_cobble", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 141}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_doors:wooden_door_b_1", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 1, ["x"] = 16, ["name"] = "stairs:stair_cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 153}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 16, ["name"] = "mcl_doors:wooden_door_t_1", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 189}, {["y"] = 2, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 16, ["name"] = "mcl_torches:torch_wall", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 3, ["x"] = 16, ["name"] = "xpanes:pane_natural", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 189}, {["y"] = 4, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 16, ["name"] = "mcl_torches:torch_wall", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 16, ["name"] = "xpanes:pane_natural", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 6, ["x"] = 16, ["name"] = "xpanes:pane_natural", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 7, ["x"] = 16, ["name"] = "xpanes:pane_natural", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 7, ["x"] = 16, ["name"] = "xpanes:pane_natural", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 8, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 8, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "stairs:stair_cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 121}, {["y"] = 1, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 17, ["name"] = "stairs:stair_cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 170}, {["y"] = 2, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 17, ["name"] = "mcl_torches:torch_wall", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 15}, {["y"] = 3, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 8, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 8, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_fences:fence", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 156}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_fences:fence", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:wood", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:wood", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:wood", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_fences:fence", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 189}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 18, ["name"] = "xpanes:pane_natural", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:wood", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 18, ["name"] = "xpanes:pane_natural", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:wood", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_torches:torch_wall", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_wool:black", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_torches:torch_wall", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 15}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 18, ["name"] = "xpanes:pane_natural", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 18, ["name"] = "xpanes:pane_natural", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:wood", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:wood", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:wood", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:tree", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:tree", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:tree", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:tree", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:tree", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 5, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 18, ["name"] = "xpanes:pane_natural", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 6, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 18, ["name"] = "xpanes:pane_natural", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 7, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 8, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 8, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 8, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:cobble", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:cobble", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 19, ["name"] = "mcl_core:wood", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 19, ["name"] = "mcl_core:wood", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 19, ["name"] = "mcl_core:wood", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 19, ["name"] = "mcl_core:wood", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 19, ["name"] = "mcl_torches:torch_wall", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 15}, {["y"] = 3, ["x"] = 19, ["name"] = "mcl_core:wood", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 19, ["name"] = "mcl_core:wood", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 19, ["name"] = "mcl_core:tree", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 4, ["x"] = 19, ["name"] = "mcl_core:wood", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 19, ["name"] = "mcl_core:wood", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 19, ["name"] = "mcl_core:wood", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 19, ["name"] = "mcl_core:tree", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:cobble", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:cobble", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "stairs:stair_cobble", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 141}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:cobble", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:cobble", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:cobble", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:cobble", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:cobble", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_core:wood", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_doors:wooden_door_b_1", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 173}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_core:cobble", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_core:wood", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_core:wood", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_core:wood", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_core:cobble", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 20, ["name"] = "xpanes:pane_natural", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 2, ["x"] = 20, ["name"] = "mcl_doors:wooden_door_t_1", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 189}, {["y"] = 2, ["x"] = 20, ["name"] = "mcl_core:cobble", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 20, ["name"] = "mcl_core:wood", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 20, ["name"] = "xpanes:pane_natural", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 2, ["x"] = 20, ["name"] = "mcl_core:wood", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 20, ["name"] = "mcl_core:cobble", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 20, ["name"] = "mcl_core:wood", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 20, ["name"] = "mcl_torches:torch_wall", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 20, ["name"] = "mcl_core:wood", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 20, ["name"] = "mcl_core:cobble", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 20, ["name"] = "mcl_core:wood", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 20, ["name"] = "mcl_core:wood", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 20, ["name"] = "mcl_core:wood", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 20, ["name"] = "mcl_core:cobble", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:tree", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:wood", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:wood", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:wood", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:tree", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:tree", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:tree", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:tree", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:tree", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:tree", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:cobble", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:cobble", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:cobble", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:cobble", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "mcl_core:wood", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "mcl_core:wood", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "mcl_core:wood", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "mcl_core:wood", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 21, ["name"] = "mcl_core:wood", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 21, ["name"] = "mcl_core:wood", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 21, ["name"] = "mcl_core:wood", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 21, ["name"] = "mcl_core:wood", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 21, ["name"] = "mcl_torches:torch_wall", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 15}, {["y"] = 3, ["x"] = 21, ["name"] = "mcl_core:wood", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 21, ["name"] = "mcl_core:wood", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 21, ["name"] = "mcl_core:wood", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 21, ["name"] = "mcl_core:wood", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 21, ["name"] = "mcl_core:tree", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 4, ["x"] = 21, ["name"] = "mcl_core:wood", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 21, ["name"] = "mcl_core:wood", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 21, ["name"] = "mcl_core:wood", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 21, ["name"] = "mcl_core:tree", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 4, ["x"] = 21, ["name"] = "mcl_core:tree", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 21, ["name"] = "mcl_core:wood", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 21, ["name"] = "mcl_core:wood", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 21, ["name"] = "mcl_core:wood", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 21, ["name"] = "mcl_core:tree", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_fences:fence", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:cobble", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:cobble", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:cobble", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:cobble", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:cobble", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "stairs:stair_cobble", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 141}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:cobble", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:cobble", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "mcl_fences:fence", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 1, ["x"] = 22, ["name"] = "mcl_core:cobble", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "mcl_core:wood", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "mcl_core:wood", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "mcl_core:wood", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "mcl_core:cobble", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "mcl_doors:wooden_door_b_1", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 1, ["x"] = 22, ["name"] = "mcl_core:wood", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 22, ["name"] = "mcl_fences:fence", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 189}, {["y"] = 2, ["x"] = 22, ["name"] = "mcl_core:cobble", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 22, ["name"] = "mcl_core:wood", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 22, ["name"] = "xpanes:pane_natural", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 2, ["x"] = 22, ["name"] = "mcl_core:wood", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 22, ["name"] = "mcl_core:cobble", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 22, ["name"] = "mcl_doors:wooden_door_t_1", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 189}, {["y"] = 2, ["x"] = 22, ["name"] = "xpanes:pane_natural", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 3, ["x"] = 22, ["name"] = "mcl_torches:torch_wall", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 22, ["name"] = "mcl_wool:black", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 22, ["name"] = "mcl_torches:torch_wall", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 15}, {["y"] = 3, ["x"] = 22, ["name"] = "mcl_core:cobble", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 22, ["name"] = "mcl_core:wood", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 22, ["name"] = "mcl_core:wood", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 22, ["name"] = "mcl_core:wood", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 22, ["name"] = "mcl_core:cobble", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 22, ["name"] = "mcl_core:wood", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 22, ["name"] = "mcl_torches:torch_wall", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 3, ["x"] = 22, ["name"] = "mcl_core:wood", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 22, ["name"] = "mcl_core:tree", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 22, ["name"] = "mcl_core:tree", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 22, ["name"] = "mcl_core:tree", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 22, ["name"] = "mcl_core:tree", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 22, ["name"] = "mcl_core:tree", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 4, ["x"] = 22, ["name"] = "mcl_core:tree", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 22, ["name"] = "mcl_core:wood", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 22, ["name"] = "mcl_core:wood", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 22, ["name"] = "mcl_core:wood", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 22, ["name"] = "mcl_core:tree", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:cobble", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:cobble", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 23, ["name"] = "mcl_core:wood", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 23, ["name"] = "mcl_core:wood", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 23, ["name"] = "mcl_core:wood", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 23, ["name"] = "mcl_core:wood", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 23, ["name"] = "mcl_torches:torch_wall", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 15}, {["y"] = 3, ["x"] = 23, ["name"] = "mcl_core:wood", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 23, ["name"] = "mcl_core:wood", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 23, ["name"] = "mcl_core:tree", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 23, ["name"] = "mcl_core:wood", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 23, ["name"] = "mcl_core:wood", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 23, ["name"] = "mcl_core:wood", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 23, ["name"] = "mcl_core:tree", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "mcl_core:wood", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "mcl_core:wood", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "mcl_core:wood", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 24, ["name"] = "mcl_core:wood", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 24, ["name"] = "xpanes:pane_natural", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 2, ["x"] = 24, ["name"] = "mcl_core:wood", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 24, ["name"] = "mcl_core:wood", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 24, ["name"] = "mcl_core:wood", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 24, ["name"] = "mcl_core:wood", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 24, ["name"] = "stairs:stair_wood", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 4, ["x"] = 24, ["name"] = "mcl_core:wood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 24, ["name"] = "mcl_core:tree", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 4, ["x"] = 24, ["name"] = "xpanes:pane_natural", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 4, ["x"] = 24, ["name"] = "mcl_core:tree", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 4, ["x"] = 24, ["name"] = "mcl_core:wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 24, ["name"] = "stairs:stair_wood", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 125}, {["y"] = 4, ["x"] = 24, ["name"] = "mcl_core:tree", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 24, ["name"] = "mcl_core:tree", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 24, ["name"] = "mcl_core:tree", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 24, ["name"] = "mcl_core:tree", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 24, ["name"] = "mcl_core:tree", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 24, ["name"] = "stairs:stair_wood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 5, ["x"] = 24, ["name"] = "mcl_core:wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 24, ["name"] = "mcl_core:wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 24, ["name"] = "mcl_core:wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 24, ["name"] = "stairs:stair_wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 125}, {["y"] = 6, ["x"] = 24, ["name"] = "stairs:stair_wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 6, ["x"] = 24, ["name"] = "mcl_core:wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 24, ["name"] = "stairs:stair_wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 125}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:sprucewood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:sprucewood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:sprucewood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 25, ["name"] = "mcl_core:tree", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 2, ["x"] = 25, ["name"] = "mcl_torches:torch_wall", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 2, ["x"] = 25, ["name"] = "mcl_core:tree", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 3, ["x"] = 25, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 25, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 25, ["name"] = "stairs:stair_wood", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 141}, {["y"] = 4, ["x"] = 25, ["name"] = "stairs:stair_wood", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 141}, {["y"] = 5, ["x"] = 25, ["name"] = "stairs:stair_wood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 141}, {["y"] = 5, ["x"] = 25, ["name"] = "stairs:stair_wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 141}, {["y"] = 6, ["x"] = 25, ["name"] = "stairs:stair_wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 141}, {["y"] = 6, ["x"] = 25, ["name"] = "mcl_core:wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 25, ["name"] = "stairs:stair_wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 141}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:wood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:sprucewood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:sprucewood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:tree", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:tree", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:tree", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:tree", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:tree", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:tree", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:tree", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:tree", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:tree", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 26, ["name"] = "xpanes:pane_natural", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 2, ["x"] = 26, ["name"] = "xpanes:pane_natural", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 3, ["x"] = 26, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 26, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 26, ["name"] = "mcl_torches:torch_wall", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 15}, {["y"] = 4, ["x"] = 26, ["name"] = "stairs:stair_wood", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 4, ["x"] = 26, ["name"] = "stairs:stair_wood", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 125}, {["y"] = 5, ["x"] = 26, ["name"] = "stairs:stair_wood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 5, ["x"] = 26, ["name"] = "stairs:stair_wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 125}, {["y"] = 6, ["x"] = 26, ["name"] = "stairs:stair_wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 6, ["x"] = 26, ["name"] = "mcl_core:wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 26, ["name"] = "stairs:stair_wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 125}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:sprucewood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:sprucewood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:sprucewood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:tree", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_farming:soil_wet", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_farming:soil_wet", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_farming:soil_wet", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_farming:soil_wet", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 45}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_farming:soil_wet", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_farming:soil_wet", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 45}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_farming:soil_wet", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 29}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:tree", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:tree", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:tree", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:tree", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:tree", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:tree", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:tree", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:tree", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_fences:fence", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 1, ["x"] = 27, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "mcl_farming:wheat", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 111}, {["y"] = 1, ["x"] = 27, ["name"] = "mcl_farming:wheat", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 95}, {["y"] = 1, ["x"] = 27, ["name"] = "mcl_farming:wheat", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 79}, {["y"] = 1, ["x"] = 27, ["name"] = "mcl_farming:wheat", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 63}, {["y"] = 1, ["x"] = 27, ["name"] = "mcl_farming:wheat", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 79}, {["y"] = 1, ["x"] = 27, ["name"] = "mcl_farming:wheat", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 63}, {["y"] = 1, ["x"] = 27, ["name"] = "mcl_farming:wheat", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 47}, {["y"] = 1, ["x"] = 27, ["name"] = "mcl_fences:fence", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 2, ["x"] = 27, ["name"] = "xpanes:pane_natural", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 141}, {["y"] = 2, ["x"] = 27, ["name"] = "xpanes:pane_natural", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 141}, {["y"] = 2, ["x"] = 27, ["name"] = "mcl_fences:fence", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 189}, {["y"] = 3, ["x"] = 27, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 27, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 27, ["name"] = "mcl_torches:torch_wall", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 27, ["name"] = "mcl_wool:black", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 27, ["name"] = "mcl_torches:torch_wall", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 15}, {["y"] = 4, ["x"] = 27, ["name"] = "stairs:stair_wood", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 4, ["x"] = 27, ["name"] = "stairs:stair_wood", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 109}, {["y"] = 5, ["x"] = 27, ["name"] = "stairs:stair_wood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 5, ["x"] = 27, ["name"] = "stairs:stair_wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 109}, {["y"] = 6, ["x"] = 27, ["name"] = "stairs:stair_wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 6, ["x"] = 27, ["name"] = "mcl_core:wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 27, ["name"] = "stairs:stair_wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 109}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:sprucewood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:sprucewood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:tree", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_farming:soil_wet", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_farming:soil_wet", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_farming:soil_wet", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 45}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_farming:soil_wet", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_farming:soil_wet", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_farming:soil_wet", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_farming:soil_wet", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 45}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:tree", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:tree", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_farming:soil_wet", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_farming:soil_wet", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:water_source", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_farming:soil_wet", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_farming:soil_wet", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:tree", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:tree", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:tree", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:tree", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_farming:wheat", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 95}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_farming:wheat", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 79}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_farming:wheat", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 63}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_farming:wheat", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 79}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_farming:wheat", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 95}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_farming:wheat", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 79}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_farming:wheat", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 63}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_farming:wheat", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 79}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_farming:wheat", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 95}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_farming:wheat", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 127}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_farming:wheat", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 143}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 28, ["name"] = "xpanes:pane_natural", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 141}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 28, ["name"] = "xpanes:pane_natural", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 141}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_core:tree", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_core:tree", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_core:tree", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_core:tree", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 28, ["name"] = "xpanes:pane_natural", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 156}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_core:tree", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 3, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 28, ["name"] = "mcl_core:tree", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 28, ["name"] = "mcl_core:tree", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 3, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 28, ["name"] = "mcl_core:tree", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 3, ["x"] = 28, ["name"] = "mcl_torches:torch_wall", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 15}, {["y"] = 4, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 28, ["name"] = "stairs:stair_wood", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 4, ["x"] = 28, ["name"] = "stairs:stair_wood", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 93}, {["y"] = 4, ["x"] = 28, ["name"] = "mcl_core:tree", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 4, ["x"] = 28, ["name"] = "mcl_core:tree", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 4, ["x"] = 28, ["name"] = "mcl_core:tree", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 5, ["x"] = 28, ["name"] = "stairs:slab_stone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 5, ["x"] = 28, ["name"] = "stairs:slab_stone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 5, ["x"] = 28, ["name"] = "stairs:slab_stone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 5, ["x"] = 28, ["name"] = "stairs:slab_stone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 5, ["x"] = 28, ["name"] = "stairs:slab_stone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 45}, {["y"] = 5, ["x"] = 28, ["name"] = "stairs:slab_stone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 5, ["x"] = 28, ["name"] = "stairs:slab_stone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 45}, {["y"] = 5, ["x"] = 28, ["name"] = "stairs:slab_stone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 5, ["x"] = 28, ["name"] = "stairs:slab_stone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 45}, {["y"] = 5, ["x"] = 28, ["name"] = "stairs:slab_stone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 5, ["x"] = 28, ["name"] = "stairs:stair_wood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 5, ["x"] = 28, ["name"] = "stairs:stair_wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 93}, {["y"] = 6, ["x"] = 28, ["name"] = "stairs:stair_wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 6, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 28, ["name"] = "stairs:stair_wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 93}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:sprucewood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:sprucewood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:sprucewood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:tree", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:water_source", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:water_source", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 240, ["param1"] = 45}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:water_source", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:water_source", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 240, ["param1"] = 77}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:water_source", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:water_source", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 240, ["param1"] = 77}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:water_source", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:tree", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:tree", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_farming:soil_wet", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 45}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_farming:soil_wet", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:water_source", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_farming:soil_wet", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_farming:soil_wet", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:tree", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:water_source", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:water_source", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "stairs:stair_wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 139}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:wood", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:wood", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_farming:wheat", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 63}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_farming:wheat", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 79}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_farming:wheat", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 111}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_farming:wheat", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 127}, {["y"] = 2, ["x"] = 29, ["name"] = "xpanes:bar", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 205}, {["y"] = 2, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 29, ["name"] = "mcl_core:wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 29, ["name"] = "mcl_core:wood", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 29, ["name"] = "mcl_core:wood", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 29, ["name"] = "mcl_core:wood", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 29, ["name"] = "xpanes:bar", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 189}, {["y"] = 3, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 29, ["name"] = "mcl_core:wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 29, ["name"] = "mcl_core:wood", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 29, ["name"] = "mcl_core:wood", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 29, ["name"] = "stairs:stair_wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 141}, {["y"] = 4, ["x"] = 29, ["name"] = "stairs:stair_wood", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 157}, {["y"] = 4, ["x"] = 29, ["name"] = "mcl_core:wood", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 29, ["name"] = "mcl_core:wood", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 29, ["name"] = "mcl_core:tree", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 4, ["x"] = 29, ["name"] = "mcl_core:tree", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 5, ["x"] = 29, ["name"] = "stairs:slab_stone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 5, ["x"] = 29, ["name"] = "stairs:slab_stone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 5, ["x"] = 29, ["name"] = "stairs:stair_wood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 141}, {["y"] = 5, ["x"] = 29, ["name"] = "stairs:stair_wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 109}, {["y"] = 5, ["x"] = 29, ["name"] = "mcl_core:tree", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 5, ["x"] = 29, ["name"] = "mcl_core:tree", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 5, ["x"] = 29, ["name"] = "mcl_core:tree", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 6, ["x"] = 29, ["name"] = "stairs:stair_wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 6, ["x"] = 29, ["name"] = "mcl_core:wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 29, ["name"] = "stairs:stair_wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 77}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:wood", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:sprucewood", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:wood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:sprucewood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:sprucewood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "stairs:stair_cobble", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 141}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:tree", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_farming:soil_wet", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_farming:soil_wet", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_farming:soil_wet", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_farming:soil_wet", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_farming:soil_wet", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_farming:soil_wet", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_farming:soil_wet", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:tree", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:tree", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_farming:soil_wet", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 45}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_farming:soil_wet", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:water_source", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_farming:soil_wet", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_farming:soil_wet", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:tree", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_fences:fence", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 154}, {["y"] = 1, ["x"] = 30, ["name"] = "stairs:stair_wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 139}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_core:wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_core:wood", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_doors:wooden_door_b_1", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 173}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_farming:wheat", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 95}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_farming:wheat", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 79}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_farming:wheat", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 95}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_farming:wheat", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 111}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_farming:wheat", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 127}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_farming:wheat", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 111}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_farming:wheat", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 95}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_farming:wheat", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 63}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_farming:wheat", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 79}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_farming:wheat", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 111}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_farming:wheat", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 127}, {["y"] = 2, ["x"] = 30, ["name"] = "xpanes:bar", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 189}, {["y"] = 2, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 30, ["name"] = "mesecons_pressureplates:pressure_plate_wood_off", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 171}, {["y"] = 2, ["x"] = 30, ["name"] = "xpanes:pane_natural", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 141}, {["y"] = 2, ["x"] = 30, ["name"] = "mcl_core:tree", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 30, ["name"] = "mcl_torches:torch_wall", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 2, ["x"] = 30, ["name"] = "mcl_core:tree", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 2, ["x"] = 30, ["name"] = "mcl_core:wood", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 30, ["name"] = "mcl_doors:wooden_door_t_1", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 189}, {["y"] = 3, ["x"] = 30, ["name"] = "xpanes:bar", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 3, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 30, ["name"] = "mcl_core:wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 30, ["name"] = "mcl_core:wood", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 30, ["name"] = "mcl_torches:torch_wall", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 30, ["name"] = "mcl_core:wood", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 30, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 30, ["name"] = "mcl_core:wood", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 30, ["name"] = "mcl_core:tree", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 4, ["x"] = 30, ["name"] = "mcl_core:tree", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 5, ["x"] = 30, ["name"] = "stairs:slab_stone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 5, ["x"] = 30, ["name"] = "stairs:slab_stone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 5, ["x"] = 30, ["name"] = "stairs:stair_wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 141}, {["y"] = 5, ["x"] = 30, ["name"] = "stairs:stair_wood", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 157}, {["y"] = 5, ["x"] = 30, ["name"] = "stairs:stair_wood", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 173}, {["y"] = 5, ["x"] = 30, ["name"] = "mcl_core:wood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 30, ["name"] = "mcl_core:wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 30, ["name"] = "stairs:stair_wood", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 77}, {["y"] = 5, ["x"] = 30, ["name"] = "mcl_core:tree", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 5, ["x"] = 30, ["name"] = "mcl_core:tree", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 5, ["x"] = 30, ["name"] = "mcl_core:tree", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 6, ["x"] = 30, ["name"] = "stairs:stair_wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 6, ["x"] = 30, ["name"] = "mcl_core:wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 30, ["name"] = "stairs:stair_wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 93}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:sprucewood", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:sprucewood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:sprucewood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:sprucewood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_farming:soil_wet", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_farming:soil_wet", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_farming:soil_wet", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_farming:soil_wet", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_farming:soil_wet", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_farming:soil_wet", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_farming:soil_wet", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_farming:soil_wet", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_farming:soil_wet", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:water_source", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_farming:soil_wet", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_farming:soil_wet", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_farming:wheat", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 79}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_farming:wheat", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 95}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_farming:wheat", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 111}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_farming:wheat", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 127}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_farming:wheat", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 143}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_farming:wheat", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 127}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_farming:wheat", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 111}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_farming:wheat", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 79}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_farming:wheat", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 95}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_farming:wheat", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 127}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_farming:wheat", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 143}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 31, ["name"] = "xpanes:pane_natural", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 2, ["x"] = 31, ["name"] = "xpanes:pane_natural", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 31, ["name"] = "xpanes:pane_natural", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 31, ["name"] = "xpanes:pane_natural", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 31, ["name"] = "mcl_torches:torch_wall", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 3, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 3, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 3, ["x"] = 31, ["name"] = "mcl_torches:torch_wall", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 15}, {["y"] = 3, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 4, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 4, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 4, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 31, ["name"] = "stairs:slab_stone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 5, ["x"] = 31, ["name"] = "stairs:slab_stone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 5, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 31, ["name"] = "stairs:stair_wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 109}, {["y"] = 6, ["x"] = 31, ["name"] = "stairs:stair_wood", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 125}, {["y"] = 6, ["x"] = 31, ["name"] = "stairs:stair_wood", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 141}, {["y"] = 6, ["x"] = 31, ["name"] = "stairs:stair_wood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 125}, {["y"] = 6, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 31, ["name"] = "stairs:stair_wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 125}, {["y"] = 6, ["x"] = 31, ["name"] = "stairs:stair_wood", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 109}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:wood", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:sprucewood", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:wood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:sprucewood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:sprucewood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:tree", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:tree", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:tree", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:tree", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:tree", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:tree", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:tree", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:tree", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:tree", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:tree", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_farming:soil_wet", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_farming:soil_wet", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:water_source", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_farming:soil_wet", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_farming:soil_wet", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 141}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:tree", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_fences:fence", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 0, ["x"] = 32, ["name"] = "stairs:stair_cobble", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 141}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_farming:wheat", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 95}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_farming:wheat", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 111}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_farming:wheat", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 143}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_farming:wheat", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 159}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_fences:fence", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_doors:wooden_door_b_1", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:wood", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 32, ["name"] = "mcl_core:wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 32, ["name"] = "xpanes:pane_natural", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 141}, {["y"] = 2, ["x"] = 32, ["name"] = "xpanes:pane_natural", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 2, ["x"] = 32, ["name"] = "xpanes:pane_natural", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 189}, {["y"] = 2, ["x"] = 32, ["name"] = "mcl_fences:fence", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 189}, {["y"] = 2, ["x"] = 32, ["name"] = "mcl_doors:wooden_door_t_1", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 189}, {["y"] = 2, ["x"] = 32, ["name"] = "mcl_core:wood", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 32, ["name"] = "mcl_core:wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 32, ["name"] = "mcl_core:wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 32, ["name"] = "mcl_torches:torch_wall", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 32, ["name"] = "mcl_wool:black", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 32, ["name"] = "mcl_torches:torch_wall", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 15}, {["y"] = 3, ["x"] = 32, ["name"] = "mcl_core:wood", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 32, ["name"] = "mcl_torches:torch_wall", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 3, ["x"] = 32, ["name"] = "mcl_core:wood", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 32, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 32, ["name"] = "mcl_core:wood", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 32, ["name"] = "mcl_core:tree", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 4, ["x"] = 32, ["name"] = "mcl_core:tree", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 5, ["x"] = 32, ["name"] = "stairs:slab_stone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 5, ["x"] = 32, ["name"] = "stairs:slab_stone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 5, ["x"] = 32, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 32, ["name"] = "mcl_core:wood", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 32, ["name"] = "mcl_core:tree", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 5, ["x"] = 32, ["name"] = "mcl_core:tree", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 5, ["x"] = 32, ["name"] = "mcl_core:tree", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 32, ["name"] = "stairs:stair_wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 93}, {["y"] = 6, ["x"] = 32, ["name"] = "stairs:stair_wood", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 109}, {["y"] = 6, ["x"] = 32, ["name"] = "stairs:stair_wood", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 125}, {["y"] = 6, ["x"] = 32, ["name"] = "stairs:stair_wood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 109}, {["y"] = 6, ["x"] = 32, ["name"] = "stairs:stair_wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 93}, {["y"] = 6, ["x"] = 32, ["name"] = "stairs:stair_wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 109}, {["y"] = 6, ["x"] = 32, ["name"] = "stairs:stair_wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 125}, {["y"] = 6, ["x"] = 32, ["name"] = "stairs:stair_wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 141}, {["y"] = 6, ["x"] = 32, ["name"] = "stairs:stair_wood", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 125}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:sprucewood", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:wood", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:sprucewood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:sprucewood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:sprucewood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:tree", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_farming:soil_wet", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_farming:soil_wet", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:water_source", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_farming:soil_wet", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_farming:soil_wet", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:tree", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_core:wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_farming:wheat", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 79}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_farming:wheat", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 95}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_farming:wheat", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 127}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_farming:wheat", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 143}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_core:wood", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_core:wood", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 33, ["name"] = "mcl_core:wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 33, ["name"] = "mcl_core:tree", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 33, ["name"] = "mcl_torches:torch_wall", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 2, ["x"] = 33, ["name"] = "mcl_core:tree", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 2, ["x"] = 33, ["name"] = "mcl_core:wood", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 33, ["name"] = "mcl_core:wood", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 33, ["name"] = "mcl_core:wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 33, ["name"] = "mcl_core:wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 33, ["name"] = "mcl_torches:torch_wall", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 15}, {["y"] = 3, ["x"] = 33, ["name"] = "mcl_core:wood", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 33, ["name"] = "mcl_core:wood", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 33, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 33, ["name"] = "mcl_core:wood", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 33, ["name"] = "mcl_core:tree", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 4, ["x"] = 33, ["name"] = "mcl_core:tree", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 5, ["x"] = 33, ["name"] = "stairs:slab_stone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 5, ["x"] = 33, ["name"] = "stairs:slab_stone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 5, ["x"] = 33, ["name"] = "stairs:stair_wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 93}, {["y"] = 5, ["x"] = 33, ["name"] = "stairs:stair_wood", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 109}, {["y"] = 5, ["x"] = 33, ["name"] = "stairs:stair_wood", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 125}, {["y"] = 5, ["x"] = 33, ["name"] = "stairs:stair_wood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 109}, {["y"] = 5, ["x"] = 33, ["name"] = "stairs:stair_wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 125}, {["y"] = 5, ["x"] = 33, ["name"] = "stairs:stair_wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 141}, {["y"] = 5, ["x"] = 33, ["name"] = "stairs:stair_wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 157}, {["y"] = 5, ["x"] = 33, ["name"] = "stairs:stair_wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 173}, {["y"] = 5, ["x"] = 33, ["name"] = "stairs:stair_wood", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 157}, {["y"] = 5, ["x"] = 33, ["name"] = "mcl_core:tree", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 33, ["name"] = "mcl_core:tree", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 33, ["name"] = "mcl_core:tree", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:gravel", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:gravel", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:gravel", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:gravel", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:gravel", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:gravel", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:tree", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_farming:soil_wet", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_farming:soil_wet", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:water_source", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_farming:soil_wet", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_farming:soil_wet", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:tree", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_fences:fence", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_fences:fence", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:tree", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:tree", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_doors:wooden_door_b_1", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 140}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_farming:wheat", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 95}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_farming:wheat", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 79}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_farming:wheat", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 111}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_farming:wheat", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 127}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:tree", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:tree", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_fences:fence", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_fences:fence", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_core:tree", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_core:tree", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_doors:wooden_door_t_1", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 156}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_core:tree", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 2, ["x"] = 34, ["name"] = "xpanes:pane_natural", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 172}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_core:tree", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_core:tree", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 34, ["name"] = "xpanes:pane_natural", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_core:tree", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_fences:fence", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_fences:fence", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_core:tree", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_core:tree", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_torches:torch_wall", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 15}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_core:tree", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_core:tree", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 4, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 34, ["name"] = "stairs:stair_wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 125}, {["y"] = 4, ["x"] = 34, ["name"] = "stairs:stair_wood", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 141}, {["y"] = 4, ["x"] = 34, ["name"] = "stairs:stair_wood", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 157}, {["y"] = 4, ["x"] = 34, ["name"] = "stairs:stair_wood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 141}, {["y"] = 4, ["x"] = 34, ["name"] = "stairs:stair_wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 125}, {["y"] = 4, ["x"] = 34, ["name"] = "stairs:stair_wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 141}, {["y"] = 4, ["x"] = 34, ["name"] = "stairs:stair_wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 157}, {["y"] = 4, ["x"] = 34, ["name"] = "stairs:stair_wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 173}, {["y"] = 4, ["x"] = 34, ["name"] = "stairs:stair_wood", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 157}, {["y"] = 4, ["x"] = 34, ["name"] = "mcl_core:tree", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 4, ["x"] = 34, ["name"] = "mcl_core:tree", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 4, ["x"] = 34, ["name"] = "mcl_core:tree", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 5, ["x"] = 34, ["name"] = "stairs:slab_stone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 45}, {["y"] = 5, ["x"] = 34, ["name"] = "stairs:slab_stone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 5, ["x"] = 34, ["name"] = "stairs:slab_stone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 5, ["x"] = 34, ["name"] = "stairs:slab_stone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 45}, {["y"] = 5, ["x"] = 34, ["name"] = "stairs:slab_stone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 5, ["x"] = 34, ["name"] = "stairs:slab_stone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 5, ["x"] = 34, ["name"] = "stairs:slab_stone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 5, ["x"] = 34, ["name"] = "stairs:slab_stone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 45}, {["y"] = 5, ["x"] = 34, ["name"] = "stairs:slab_stone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 5, ["x"] = 34, ["name"] = "stairs:slab_stone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 0, ["x"] = 35, ["name"] = "stairs:stair_cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 141}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:gravel", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:cobble", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:cobble", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:cobble", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:cobble", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:gravel", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_fences:fence", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:tree", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:tree", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:tree", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:tree", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:tree", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:tree", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:tree", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 35, ["name"] = "mcl_core:cobble", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 35, ["name"] = "mcl_core:cobble", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 35, ["name"] = "mcl_core:cobble", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 35, ["name"] = "mcl_core:cobble", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 35, ["name"] = "mcl_fences:fence", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 2, ["x"] = 35, ["name"] = "mcl_fences:fence", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 2, ["x"] = 35, ["name"] = "mcl_fences:fence", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 2, ["x"] = 35, ["name"] = "mcl_fences:fence", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 189}, {["y"] = 3, ["x"] = 35, ["name"] = "stairs:stair_wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 157}, {["y"] = 3, ["x"] = 35, ["name"] = "stairs:stair_wood", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 173}, {["y"] = 3, ["x"] = 35, ["name"] = "stairs:stair_wood", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 189}, {["y"] = 3, ["x"] = 35, ["name"] = "stairs:stair_wood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 173}, {["y"] = 3, ["x"] = 35, ["name"] = "stairs:stair_wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 157}, {["y"] = 3, ["x"] = 35, ["name"] = "stairs:stair_wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 141}, {["y"] = 3, ["x"] = 35, ["name"] = "stairs:stair_wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 125}, {["y"] = 3, ["x"] = 35, ["name"] = "stairs:stair_wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 141}, {["y"] = 3, ["x"] = 35, ["name"] = "stairs:stair_wood", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 141}, {["y"] = 3, ["x"] = 35, ["name"] = "mcl_fences:fence", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 3, ["x"] = 35, ["name"] = "mcl_fences:fence", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 141}, {["y"] = 3, ["x"] = 35, ["name"] = "mcl_torches:torch_wall", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 35, ["name"] = "mcl_wool:black", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 35, ["name"] = "mcl_torches:torch_wall", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 15}, {["y"] = 4, ["x"] = 35, ["name"] = "mcl_core:cobble", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 35, ["name"] = "mcl_core:cobble", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 35, ["name"] = "mcl_core:cobble", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 35, ["name"] = "mcl_core:cobble", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:cobble", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:cobble", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 36, ["name"] = "mcl_core:cobble", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 36, ["name"] = "mcl_core:cobble", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 36, ["name"] = "mcl_torches:torch_wall", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 15}, {["y"] = 4, ["x"] = 36, ["name"] = "mcl_core:cobble", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 36, ["name"] = "mcl_core:cobble", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 36, ["name"] = "mcl_core:cobble", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 36, ["name"] = "mcl_core:cobble", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "stairs:stair_cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 141}, {["y"] = 0, ["x"] = 37, ["name"] = "stairs:stair_cobble", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 125}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:cobble", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:cobble", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 37, ["name"] = "mcl_core:cobble", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 37, ["name"] = "mcl_core:cobble", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 37, ["name"] = "mcl_torches:torch_wall", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 15}, {["y"] = 3, ["x"] = 37, ["name"] = "mcl_torches:torch_wall", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 15}, {["y"] = 4, ["x"] = 37, ["name"] = "stairs:stair_wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 125}, {["y"] = 4, ["x"] = 37, ["name"] = "stairs:stair_wood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 141}, {["y"] = 4, ["x"] = 37, ["name"] = "stairs:stair_wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 125}, {["y"] = 4, ["x"] = 37, ["name"] = "stairs:stair_wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 109}, {["y"] = 4, ["x"] = 37, ["name"] = "stairs:stair_wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 125}, {["y"] = 4, ["x"] = 37, ["name"] = "stairs:stair_wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 141}, {["y"] = 4, ["x"] = 37, ["name"] = "stairs:stair_wood", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 157}, {["y"] = 4, ["x"] = 37, ["name"] = "stairs:stair_wood", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 157}, {["y"] = 4, ["x"] = 37, ["name"] = "stairs:stair_wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 173}, {["y"] = 4, ["x"] = 37, ["name"] = "mcl_core:cobble", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 37, ["name"] = "mcl_core:cobble", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 37, ["name"] = "mcl_core:cobble", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 37, ["name"] = "mcl_core:cobble", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_fences:fence", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_fences:fence", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:gravel", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:gravel", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "stairs:stair_cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 141}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_doors:wooden_door_b_1", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 172}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_fences:fence", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_core:tree", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_doors:wooden_door_b_1", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 125}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_core:wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_core:tree", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_fences:fence", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 38, ["name"] = "mcl_doors:wooden_door_t_1", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 188}, {["y"] = 2, ["x"] = 38, ["name"] = "mcl_core:wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 38, ["name"] = "mcl_core:wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 38, ["name"] = "xpanes:pane_natural", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 140}, {["y"] = 2, ["x"] = 38, ["name"] = "xpanes:pane_natural", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 156}, {["y"] = 2, ["x"] = 38, ["name"] = "xpanes:pane_natural", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 172}, {["y"] = 2, ["x"] = 38, ["name"] = "mcl_core:wood", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 38, ["name"] = "mcl_fences:fence", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 189}, {["y"] = 2, ["x"] = 38, ["name"] = "mcl_core:tree", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 2, ["x"] = 38, ["name"] = "mcl_doors:wooden_door_t_1", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 141}, {["y"] = 2, ["x"] = 38, ["name"] = "mcl_core:wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 38, ["name"] = "mcl_core:tree", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 2, ["x"] = 38, ["name"] = "mcl_fences:fence", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 189}, {["y"] = 2, ["x"] = 38, ["name"] = "mcl_fences:fence", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 2, ["x"] = 38, ["name"] = "mcl_fences:fence", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 3, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 38, ["name"] = "mcl_core:wood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 38, ["name"] = "mcl_core:wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 38, ["name"] = "mcl_core:wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 38, ["name"] = "xpanes:pane_natural", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 156}, {["y"] = 3, ["x"] = 38, ["name"] = "xpanes:pane_natural", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 172}, {["y"] = 3, ["x"] = 38, ["name"] = "xpanes:pane_natural", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 188}, {["y"] = 3, ["x"] = 38, ["name"] = "mcl_core:wood", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 38, ["name"] = "mcl_torches:torch_wall", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 38, ["name"] = "mcl_wool:black", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 38, ["name"] = "mcl_torches:torch_wall", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 15}, {["y"] = 3, ["x"] = 38, ["name"] = "mcl_core:tree", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 3, ["x"] = 38, ["name"] = "mcl_core:wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 38, ["name"] = "mcl_core:wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 38, ["name"] = "mcl_core:tree", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 3, ["x"] = 38, ["name"] = "mcl_torches:torch_wall", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 38, ["name"] = "mcl_wool:black", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 38, ["name"] = "mcl_torches:torch_wall", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 15}, {["y"] = 3, ["x"] = 38, ["name"] = "mcl_fences:fence", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 3, ["x"] = 38, ["name"] = "mcl_fences:fence", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 4, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 38, ["name"] = "mcl_core:wood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 38, ["name"] = "mcl_core:wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 38, ["name"] = "mcl_core:wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 38, ["name"] = "mcl_core:wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 38, ["name"] = "mcl_core:wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 38, ["name"] = "mcl_core:wood", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 38, ["name"] = "mcl_core:wood", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 38, ["name"] = "mcl_core:tree", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 38, ["name"] = "mcl_core:tree", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 38, ["name"] = "stairs:stair_wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 93}, {["y"] = 5, ["x"] = 38, ["name"] = "stairs:stair_wood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 109}, {["y"] = 5, ["x"] = 38, ["name"] = "stairs:stair_wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 93}, {["y"] = 5, ["x"] = 38, ["name"] = "stairs:stair_wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 93}, {["y"] = 5, ["x"] = 38, ["name"] = "stairs:stair_wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 109}, {["y"] = 5, ["x"] = 38, ["name"] = "stairs:stair_wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 125}, {["y"] = 5, ["x"] = 38, ["name"] = "stairs:stair_wood", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 141}, {["y"] = 5, ["x"] = 38, ["name"] = "stairs:stair_wood", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 157}, {["y"] = 5, ["x"] = 38, ["name"] = "stairs:stair_wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 173}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:gravel", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:gravel", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:gravel", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:gravel", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:gravel", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:gravel", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 39, ["name"] = "crafting:workbench", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 187}, {["y"] = 1, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 39, ["name"] = "mcl_core:wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 39, ["name"] = "mcl_core:wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 39, ["name"] = "mcl_core:tree", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 39, ["name"] = "mcl_doors:wooden_door_b_1", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 173}, {["y"] = 1, ["x"] = 39, ["name"] = "mcl_core:wood", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 39, ["name"] = "mcl_core:tree", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 2, ["x"] = 39, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 39, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 39, ["name"] = "mcl_core:wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 39, ["name"] = "mcl_core:wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 39, ["name"] = "mcl_core:tree", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 2, ["x"] = 39, ["name"] = "mcl_doors:wooden_door_t_1", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 189}, {["y"] = 2, ["x"] = 39, ["name"] = "mcl_core:wood", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 39, ["name"] = "mcl_core:tree", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 3, ["x"] = 39, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 39, ["name"] = "mcl_torches:torch_wall", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 3, ["x"] = 39, ["name"] = "mcl_torches:torch_wall", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 3, ["x"] = 39, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 39, ["name"] = "mcl_torches:torch_wall", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 15}, {["y"] = 3, ["x"] = 39, ["name"] = "mcl_core:wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 39, ["name"] = "mcl_core:wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 39, ["name"] = "mcl_torches:torch_wall", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 15}, {["y"] = 3, ["x"] = 39, ["name"] = "mcl_core:tree", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 3, ["x"] = 39, ["name"] = "mcl_core:wood", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 39, ["name"] = "mcl_core:wood", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 39, ["name"] = "mcl_core:tree", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 4, ["x"] = 39, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 39, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 39, ["name"] = "mcl_core:tree", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 39, ["name"] = "mcl_core:tree", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 39, ["name"] = "mcl_core:tree", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 4, ["x"] = 39, ["name"] = "mcl_core:tree", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 5, ["x"] = 39, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 39, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 39, ["name"] = "mcl_core:tree", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 5, ["x"] = 39, ["name"] = "mcl_core:tree", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 6, ["x"] = 39, ["name"] = "stairs:stair_wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 93}, {["y"] = 6, ["x"] = 39, ["name"] = "stairs:stair_wood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 77}, {["y"] = 6, ["x"] = 39, ["name"] = "stairs:stair_wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 61}, {["y"] = 6, ["x"] = 39, ["name"] = "stairs:stair_wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 61}, {["y"] = 6, ["x"] = 39, ["name"] = "stairs:stair_wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 77}, {["y"] = 6, ["x"] = 39, ["name"] = "stairs:stair_wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 93}, {["y"] = 6, ["x"] = 39, ["name"] = "stairs:stair_wood", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 109}, {["y"] = 6, ["x"] = 39, ["name"] = "stairs:stair_wood", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 125}, {["y"] = 6, ["x"] = 39, ["name"] = "stairs:stair_wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 141}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 40, ["name"] = "mcl_core:wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 40, ["name"] = "mcl_core:wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 40, ["name"] = "mcl_core:wood", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 40, ["name"] = "mcl_core:wood", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 40, ["name"] = "xpanes:pane_natural", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 2, ["x"] = 40, ["name"] = "xpanes:pane_natural", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 2, ["x"] = 40, ["name"] = "xpanes:pane_natural", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 2, ["x"] = 40, ["name"] = "xpanes:pane_natural", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 2, ["x"] = 40, ["name"] = "mcl_core:wood", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 40, ["name"] = "mcl_core:wood", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 40, ["name"] = "xpanes:pane_natural", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 189}, {["y"] = 3, ["x"] = 40, ["name"] = "xpanes:pane_natural", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 189}, {["y"] = 3, ["x"] = 40, ["name"] = "mcl_core:wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 40, ["name"] = "mcl_core:wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 40, ["name"] = "mcl_core:wood", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 40, ["name"] = "mcl_torches:torch_wall", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 3, ["x"] = 40, ["name"] = "mcl_core:wood", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 40, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 40, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 40, ["name"] = "mcl_core:tree", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 40, ["name"] = "mcl_core:tree", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 40, ["name"] = "mcl_core:tree", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 4, ["x"] = 40, ["name"] = "mcl_core:tree", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 40, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 40, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 40, ["name"] = "mcl_core:tree", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 5, ["x"] = 40, ["name"] = "mcl_core:tree", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 5, ["x"] = 40, ["name"] = "mcl_core:tree", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 5, ["x"] = 40, ["name"] = "mcl_core:tree", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 6, ["x"] = 40, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 40, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 40, ["name"] = "stairs:stair_wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 93}, {["y"] = 7, ["x"] = 40, ["name"] = "stairs:stair_wood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 77}, {["y"] = 7, ["x"] = 40, ["name"] = "stairs:stair_wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 61}, {["y"] = 7, ["x"] = 40, ["name"] = "stairs:stair_wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 45}, {["y"] = 7, ["x"] = 40, ["name"] = "stairs:stair_wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 45}, {["y"] = 7, ["x"] = 40, ["name"] = "stairs:stair_wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 61}, {["y"] = 7, ["x"] = 40, ["name"] = "stairs:stair_wood", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 77}, {["y"] = 7, ["x"] = 40, ["name"] = "stairs:stair_wood", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 93}, {["y"] = 7, ["x"] = 40, ["name"] = "stairs:stair_wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 109}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 41, ["name"] = "mcl_fences:fence", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 104}, {["y"] = 1, ["x"] = 41, ["name"] = "mcl_fences:fence", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 138}, {["y"] = 1, ["x"] = 41, ["name"] = "stairs:stair_wood", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 155}, {["y"] = 1, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 41, ["name"] = "mcl_core:wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 41, ["name"] = "mcl_core:wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 41, ["name"] = "mcl_core:wood", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 41, ["name"] = "mcl_core:wood", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 41, ["name"] = "xpanes:pane_natural", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 2, ["x"] = 41, ["name"] = "mesecons_pressureplates:pressure_plate_wood_off", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 121}, {["y"] = 2, ["x"] = 41, ["name"] = "mesecons_pressureplates:pressure_plate_wood_off", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 155}, {["y"] = 2, ["x"] = 41, ["name"] = "xpanes:pane_natural", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 2, ["x"] = 41, ["name"] = "mcl_core:wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 41, ["name"] = "mcl_core:wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 41, ["name"] = "xpanes:pane_natural", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 2, ["x"] = 41, ["name"] = "xpanes:pane_natural", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 3, ["x"] = 41, ["name"] = "xpanes:pane_natural", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 3, ["x"] = 41, ["name"] = "xpanes:pane_natural", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 3, ["x"] = 41, ["name"] = "mcl_core:wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 41, ["name"] = "mcl_core:wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 41, ["name"] = "mcl_core:wood", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 41, ["name"] = "mcl_core:wood", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 41, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 41, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 41, ["name"] = "mcl_core:tree", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 41, ["name"] = "mcl_core:tree", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 41, ["name"] = "mcl_core:tree", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 4, ["x"] = 41, ["name"] = "mcl_core:tree", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 41, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 41, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 41, ["name"] = "mcl_core:tree", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 5, ["x"] = 41, ["name"] = "mcl_core:tree", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 5, ["x"] = 41, ["name"] = "mcl_core:tree", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 41, ["name"] = "mcl_core:tree", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 6, ["x"] = 41, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 41, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 41, ["name"] = "stairs:stair_wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 77}, {["y"] = 7, ["x"] = 41, ["name"] = "stairs:stair_wood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 61}, {["y"] = 7, ["x"] = 41, ["name"] = "stairs:stair_wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 45}, {["y"] = 7, ["x"] = 41, ["name"] = "stairs:stair_wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 29}, {["y"] = 7, ["x"] = 41, ["name"] = "stairs:stair_wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 29}, {["y"] = 7, ["x"] = 41, ["name"] = "stairs:stair_wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 45}, {["y"] = 7, ["x"] = 41, ["name"] = "stairs:stair_wood", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 61}, {["y"] = 7, ["x"] = 41, ["name"] = "stairs:stair_wood", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 77}, {["y"] = 7, ["x"] = 41, ["name"] = "stairs:stair_wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 93}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 42, ["name"] = "stairs:stair_wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 89}, {["y"] = 1, ["x"] = 42, ["name"] = "stairs:stair_wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 106}, {["y"] = 1, ["x"] = 42, ["name"] = "stairs:stair_wood", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 122}, {["y"] = 1, ["x"] = 42, ["name"] = "stairs:stair_wood", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 138}, {["y"] = 1, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 42, ["name"] = "mcl_core:tree", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 1, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 42, ["name"] = "mcl_core:tree", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 1, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 42, ["name"] = "mcl_core:tree", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 2, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 42, ["name"] = "mcl_core:tree", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 2, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 42, ["name"] = "mcl_books:bookshelf", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 42, ["name"] = "mcl_books:bookshelf", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 42, ["name"] = "mcl_books:bookshelf", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 42, ["name"] = "mcl_books:bookshelf", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 42, ["name"] = "mcl_books:bookshelf", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 42, ["name"] = "mcl_books:bookshelf", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 42, ["name"] = "mcl_books:bookshelf", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 42, ["name"] = "mcl_core:tree", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 3, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 42, ["name"] = "mcl_core:tree", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 3, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 42, ["name"] = "mcl_core:tree", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 42, ["name"] = "mcl_core:tree", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 42, ["name"] = "mcl_core:tree", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 4, ["x"] = 42, ["name"] = "mcl_core:tree", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 42, ["name"] = "mcl_core:tree", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 42, ["name"] = "mcl_core:tree", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 6, ["x"] = 42, ["name"] = "stairs:stair_wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 77}, {["y"] = 6, ["x"] = 42, ["name"] = "stairs:stair_wood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 61}, {["y"] = 6, ["x"] = 42, ["name"] = "stairs:stair_wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 45}, {["y"] = 6, ["x"] = 42, ["name"] = "stairs:stair_wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 29}, {["y"] = 6, ["x"] = 42, ["name"] = "stairs:stair_wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 29}, {["y"] = 6, ["x"] = 42, ["name"] = "stairs:stair_wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 45}, {["y"] = 6, ["x"] = 42, ["name"] = "stairs:stair_wood", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 61}, {["y"] = 6, ["x"] = 42, ["name"] = "stairs:stair_wood", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 77}, {["y"] = 6, ["x"] = 42, ["name"] = "stairs:stair_wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 93}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 43, ["name"] = "mcl_core:tree", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 1, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 43, ["name"] = "mcl_core:tree", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 2, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 43, ["name"] = "xpanes:pane_natural", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 124}, {["y"] = 2, ["x"] = 43, ["name"] = "xpanes:pane_natural", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 108}, {["y"] = 2, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 43, ["name"] = "xpanes:pane_natural", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 108}, {["y"] = 2, ["x"] = 43, ["name"] = "xpanes:pane_natural", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 124}, {["y"] = 2, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 43, ["name"] = "mcl_core:tree", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 2, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 43, ["name"] = "mcl_core:tree", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 3, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 43, ["name"] = "mcl_core:tree", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 3, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 43, ["name"] = "mcl_core:tree", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 4, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 43, ["name"] = "mcl_core:tree", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 4, ["x"] = 43, ["name"] = "mcl_core:tree", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 5, ["x"] = 43, ["name"] = "stairs:stair_wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 77}, {["y"] = 5, ["x"] = 43, ["name"] = "stairs:stair_wood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 61}, {["y"] = 5, ["x"] = 43, ["name"] = "stairs:stair_wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 45}, {["y"] = 5, ["x"] = 43, ["name"] = "stairs:stair_wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 29}, {["y"] = 5, ["x"] = 43, ["name"] = "stairs:stair_wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 29}, {["y"] = 5, ["x"] = 43, ["name"] = "stairs:stair_wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 45}, {["y"] = 5, ["x"] = 43, ["name"] = "stairs:stair_wood", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 61}, {["y"] = 5, ["x"] = 43, ["name"] = "stairs:stair_wood", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 77}, {["y"] = 5, ["x"] = 43, ["name"] = "stairs:stair_wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 93}, {["y"] = 4, ["x"] = 44, ["name"] = "stairs:stair_wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 77}, {["y"] = 4, ["x"] = 44, ["name"] = "stairs:stair_wood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 61}, {["y"] = 4, ["x"] = 44, ["name"] = "stairs:stair_wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 77}, {["y"] = 4, ["x"] = 44, ["name"] = "stairs:stair_wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 61}, {["y"] = 4, ["x"] = 44, ["name"] = "stairs:stair_wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 45}, {["y"] = 4, ["x"] = 44, ["name"] = "stairs:stair_wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 61}, {["y"] = 4, ["x"] = 44, ["name"] = "stairs:stair_wood", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 77}, {["y"] = 4, ["x"] = 44, ["name"] = "stairs:stair_wood", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 77}, {["y"] = 4, ["x"] = 44, ["name"] = "stairs:stair_wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 93}} +return {{["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:tree", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:tree", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:tree", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:tree", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:tree", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:tree", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:tree", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:tree", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_farming:soil_wet", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_farming:soil_wet", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:water_source", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_farming:soil_wet", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_farming:soil_wet", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:tree", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_farming:wheat", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_farming:wheat", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_farming:wheat", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_farming:wheat", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:tree", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_farming:soil_wet", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_farming:soil_wet", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:water_source", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_farming:soil_wet", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_farming:soil_wet", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:tree", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_farming:wheat", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_farming:wheat", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_farming:wheat", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_farming:wheat", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:tree", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_farming:soil_wet", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_farming:soil_wet", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:water_source", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 240, ["param1"] = 15}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_farming:soil_wet", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_farming:soil_wet", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:tree", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_farming:wheat", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_farming:wheat", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_farming:wheat", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_farming:wheat", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:tree", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_farming:soil_wet", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_farming:soil_wet", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:water_source", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_farming:soil_wet", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_farming:soil_wet", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:tree", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_farming:wheat", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_farming:wheat", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_farming:wheat", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_farming:wheat", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:tree", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_farming:soil_wet", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_farming:soil_wet", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:water_source", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 240, ["param1"] = 15}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_farming:soil_wet", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_farming:soil_wet", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:tree", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 6, ["name"] = "mcl_farming:wheat", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 6, ["name"] = "mcl_farming:wheat", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 6, ["name"] = "mcl_farming:wheat", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 6, ["name"] = "mcl_farming:wheat", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:tree", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_farming:soil_wet", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_farming:soil_wet", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:water_source", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_farming:soil_wet", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_farming:soil_wet", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:tree", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 7, ["name"] = "mcl_farming:wheat", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 7, ["name"] = "mcl_farming:wheat", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 7, ["name"] = "mcl_farming:wheat", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 7, ["name"] = "mcl_farming:wheat", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:tree", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_farming:soil_wet", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_farming:soil_wet", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:water_source", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_farming:soil_wet", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_farming:soil_wet", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:tree", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 8, ["name"] = "mcl_farming:wheat", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 8, ["name"] = "mcl_farming:wheat", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 8, ["name"] = "mcl_farming:wheat", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 8, ["name"] = "mcl_farming:wheat", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:tree", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:tree", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:tree", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:tree", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:tree", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:tree", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:tree", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:tree", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:tree", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:tree", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:tree", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:tree", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:tree", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:tree", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:tree", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:tree", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:tree", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_farming:soil_wet", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_farming:soil_wet", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_farming:soil_wet", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_farming:soil_wet", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_farming:soil_wet", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 29}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_farming:soil_wet", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 45}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_farming:soil_wet", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:tree", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 11, ["name"] = "mcl_farming:wheat", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 11, ["name"] = "mcl_farming:wheat", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 11, ["name"] = "mcl_farming:wheat", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 11, ["name"] = "mcl_farming:wheat", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 31}, {["y"] = 1, ["x"] = 11, ["name"] = "mcl_farming:wheat", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 47}, {["y"] = 1, ["x"] = 11, ["name"] = "mcl_farming:wheat", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 63}, {["y"] = 1, ["x"] = 11, ["name"] = "mcl_farming:wheat", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 79}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:tree", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_farming:soil_wet", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_farming:soil_wet", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_farming:soil_wet", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_farming:soil_wet", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 29}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_farming:soil_wet", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 45}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_farming:soil_wet", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_farming:soil_wet", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:tree", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 12, ["name"] = "mcl_farming:wheat", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 12, ["name"] = "mcl_farming:wheat", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 1, ["x"] = 12, ["name"] = "mcl_farming:wheat", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 31}, {["y"] = 1, ["x"] = 12, ["name"] = "mcl_farming:wheat_3", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 47}, {["y"] = 1, ["x"] = 12, ["name"] = "mcl_farming:wheat", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 63}, {["y"] = 1, ["x"] = 12, ["name"] = "mcl_farming:wheat", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 79}, {["y"] = 1, ["x"] = 12, ["name"] = "mcl_farming:wheat", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 95}, {["y"] = 3, ["x"] = 12, ["name"] = "mcl_torches:torch_wall", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 15}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:tree", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:water_source", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:water_source", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:water_source", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 29}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:water_source", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 240, ["param1"] = 47}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:water_source", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:water_source", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:water_source", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:tree", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_fences:fence", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 1, ["x"] = 13, ["name"] = "mcl_fences:fence", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 2, ["x"] = 13, ["name"] = "mcl_fences:fence", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 189}, {["y"] = 3, ["x"] = 13, ["name"] = "mcl_torches:torch_wall", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 13, ["name"] = "mcl_wool:black", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 13, ["name"] = "mcl_torches:torch_wall", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 15}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:tree", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_farming:soil_wet", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_farming:soil_wet", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 29}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_farming:soil_wet", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 45}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_farming:soil_wet", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_farming:soil_wet", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_farming:soil_wet", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_farming:soil_wet", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:tree", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_farming:wheat", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 31}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_farming:wheat", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 47}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_farming:wheat", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 63}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_farming:wheat", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 79}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_farming:wheat", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 95}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_farming:wheat", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 111}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_farming:wheat", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 127}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 14, ["name"] = "xpanes:pane_natural", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 14, ["name"] = "xpanes:pane_natural", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 3, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 14, ["name"] = "xpanes:pane_natural", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 3, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 14, ["name"] = "mcl_torches:torch_wall", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 15}, {["y"] = 4, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 14, ["name"] = "xpanes:pane_natural", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 6, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 14, ["name"] = "xpanes:pane_natural", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 7, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 8, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 8, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 8, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:tree", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_farming:soil_wet", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 29}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_farming:soil_wet", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 45}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_farming:soil_wet", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_farming:soil_wet", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_farming:soil_wet", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_farming:soil_wet", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_farming:soil_wet", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:tree", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_farming:wheat", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 47}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_farming:wheat", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 63}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_farming:wheat", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 79}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_farming:wheat", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 95}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_farming:wheat", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 111}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_farming:wheat", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 127}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_farming:wheat_2", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 143}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_core:ladder", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 138}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_stairs:stair_cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 121}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 15, ["name"] = "mcl_core:ladder", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 155}, {["y"] = 2, ["x"] = 15, ["name"] = "mcl_stairs:stair_cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 170}, {["y"] = 2, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 15, ["name"] = "mcl_core:ladder", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 171}, {["y"] = 3, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 15, ["name"] = "mcl_core:ladder", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 154}, {["y"] = 4, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 15, ["name"] = "mcl_core:ladder", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 138}, {["y"] = 5, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 15, ["name"] = "mcl_core:ladder", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 123}, {["y"] = 6, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 15, ["name"] = "mcl_core:ladder", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 107}, {["y"] = 7, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 8, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 8, ["x"] = 15, ["name"] = "mcl_core:ladder", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 92}, {["y"] = 8, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 15, ["name"] = "mcl_core:ladder", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 77}, {["y"] = 9, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:tree", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:tree", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:tree", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:tree", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:tree", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:tree", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:tree", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:tree", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:tree", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_stairs:stair_cobble", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 141}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_doors:wooden_door_b_1", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_stairs:stair_cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 153}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 16, ["name"] = "mcl_doors:wooden_door_t_1", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 189}, {["y"] = 2, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 16, ["name"] = "mcl_torches:torch_wall", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 3, ["x"] = 16, ["name"] = "xpanes:pane_natural", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 189}, {["y"] = 4, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 16, ["name"] = "mcl_torches:torch_wall", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 16, ["name"] = "xpanes:pane_natural", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 6, ["x"] = 16, ["name"] = "xpanes:pane_natural", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 7, ["x"] = 16, ["name"] = "xpanes:pane_natural", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 7, ["x"] = 16, ["name"] = "xpanes:pane_natural", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 8, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 8, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "mcl_stairs:stair_cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 121}, {["y"] = 1, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 17, ["name"] = "mcl_stairs:stair_cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 170}, {["y"] = 2, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 17, ["name"] = "mcl_torches:torch_wall", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 15}, {["y"] = 3, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 8, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 8, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_fences:fence", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 156}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_fences:fence", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:wood", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:wood", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:wood", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_fences:fence", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 189}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 18, ["name"] = "xpanes:pane_natural", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:wood", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 18, ["name"] = "xpanes:pane_natural", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:wood", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_torches:torch_wall", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_wool:black", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_torches:torch_wall", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 15}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 18, ["name"] = "xpanes:pane_natural", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 18, ["name"] = "xpanes:pane_natural", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:wood", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:wood", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:wood", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:tree", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:tree", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:tree", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:tree", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:tree", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 5, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 18, ["name"] = "xpanes:pane_natural", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 6, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 18, ["name"] = "xpanes:pane_natural", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 7, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 8, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 8, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 8, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:cobble", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:cobble", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 19, ["name"] = "mcl_core:wood", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 19, ["name"] = "mcl_core:wood", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 19, ["name"] = "mcl_core:wood", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 19, ["name"] = "mcl_core:wood", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 19, ["name"] = "mcl_torches:torch_wall", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 15}, {["y"] = 3, ["x"] = 19, ["name"] = "mcl_core:wood", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 19, ["name"] = "mcl_core:wood", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 19, ["name"] = "mcl_core:tree", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 4, ["x"] = 19, ["name"] = "mcl_core:wood", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 19, ["name"] = "mcl_core:wood", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 19, ["name"] = "mcl_core:wood", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 19, ["name"] = "mcl_core:tree", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:cobble", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:cobble", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_stairs:stair_cobble", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 141}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:cobble", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:cobble", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:cobble", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:cobble", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:cobble", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_core:wood", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_doors:wooden_door_b_1", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 173}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_core:cobble", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_core:wood", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_core:wood", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_core:wood", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_core:cobble", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 20, ["name"] = "xpanes:pane_natural", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 2, ["x"] = 20, ["name"] = "mcl_doors:wooden_door_t_1", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 189}, {["y"] = 2, ["x"] = 20, ["name"] = "mcl_core:cobble", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 20, ["name"] = "mcl_core:wood", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 20, ["name"] = "xpanes:pane_natural", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 2, ["x"] = 20, ["name"] = "mcl_core:wood", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 20, ["name"] = "mcl_core:cobble", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 20, ["name"] = "mcl_core:wood", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 20, ["name"] = "mcl_torches:torch_wall", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 20, ["name"] = "mcl_core:wood", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 20, ["name"] = "mcl_core:cobble", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 20, ["name"] = "mcl_core:wood", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 20, ["name"] = "mcl_core:wood", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 20, ["name"] = "mcl_core:wood", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 20, ["name"] = "mcl_core:cobble", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:tree", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:wood", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:wood", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:wood", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:tree", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:tree", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:tree", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:tree", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:tree", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:tree", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:cobble", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:cobble", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:cobble", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:cobble", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "mcl_core:wood", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "mcl_core:wood", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "mcl_core:wood", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "mcl_core:wood", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 21, ["name"] = "mcl_core:wood", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 21, ["name"] = "mcl_core:wood", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 21, ["name"] = "mcl_core:wood", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 21, ["name"] = "mcl_core:wood", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 21, ["name"] = "mcl_torches:torch_wall", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 15}, {["y"] = 3, ["x"] = 21, ["name"] = "mcl_core:wood", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 21, ["name"] = "mcl_core:wood", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 21, ["name"] = "mcl_core:wood", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 21, ["name"] = "mcl_core:wood", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 21, ["name"] = "mcl_core:tree", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 4, ["x"] = 21, ["name"] = "mcl_core:wood", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 21, ["name"] = "mcl_core:wood", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 21, ["name"] = "mcl_core:wood", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 21, ["name"] = "mcl_core:tree", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 4, ["x"] = 21, ["name"] = "mcl_core:tree", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 21, ["name"] = "mcl_core:wood", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 21, ["name"] = "mcl_core:wood", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 21, ["name"] = "mcl_core:wood", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 21, ["name"] = "mcl_core:tree", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_fences:fence", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:cobble", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:cobble", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:cobble", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:cobble", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:cobble", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_stairs:stair_cobble", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 141}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:cobble", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:cobble", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "mcl_fences:fence", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 1, ["x"] = 22, ["name"] = "mcl_core:cobble", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "mcl_core:wood", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "mcl_core:wood", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "mcl_core:wood", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "mcl_core:cobble", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "mcl_doors:wooden_door_b_1", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 1, ["x"] = 22, ["name"] = "mcl_core:wood", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 22, ["name"] = "mcl_fences:fence", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 189}, {["y"] = 2, ["x"] = 22, ["name"] = "mcl_core:cobble", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 22, ["name"] = "mcl_core:wood", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 22, ["name"] = "xpanes:pane_natural", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 2, ["x"] = 22, ["name"] = "mcl_core:wood", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 22, ["name"] = "mcl_core:cobble", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 22, ["name"] = "mcl_doors:wooden_door_t_1", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 189}, {["y"] = 2, ["x"] = 22, ["name"] = "xpanes:pane_natural", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 3, ["x"] = 22, ["name"] = "mcl_torches:torch_wall", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 22, ["name"] = "mcl_wool:black", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 22, ["name"] = "mcl_torches:torch_wall", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 15}, {["y"] = 3, ["x"] = 22, ["name"] = "mcl_core:cobble", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 22, ["name"] = "mcl_core:wood", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 22, ["name"] = "mcl_core:wood", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 22, ["name"] = "mcl_core:wood", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 22, ["name"] = "mcl_core:cobble", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 22, ["name"] = "mcl_core:wood", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 22, ["name"] = "mcl_torches:torch_wall", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 3, ["x"] = 22, ["name"] = "mcl_core:wood", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 22, ["name"] = "mcl_core:tree", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 22, ["name"] = "mcl_core:tree", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 22, ["name"] = "mcl_core:tree", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 22, ["name"] = "mcl_core:tree", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 22, ["name"] = "mcl_core:tree", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 4, ["x"] = 22, ["name"] = "mcl_core:tree", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 22, ["name"] = "mcl_core:wood", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 22, ["name"] = "mcl_core:wood", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 22, ["name"] = "mcl_core:wood", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 22, ["name"] = "mcl_core:tree", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:cobble", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:cobble", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 23, ["name"] = "mcl_core:wood", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 23, ["name"] = "mcl_core:wood", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 23, ["name"] = "mcl_core:wood", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 23, ["name"] = "mcl_core:wood", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 23, ["name"] = "mcl_torches:torch_wall", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 15}, {["y"] = 3, ["x"] = 23, ["name"] = "mcl_core:wood", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 23, ["name"] = "mcl_core:wood", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 23, ["name"] = "mcl_core:tree", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 23, ["name"] = "mcl_core:wood", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 23, ["name"] = "mcl_core:wood", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 23, ["name"] = "mcl_core:wood", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 23, ["name"] = "mcl_core:tree", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "mcl_core:wood", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "mcl_core:wood", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "mcl_core:wood", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 24, ["name"] = "mcl_core:wood", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 24, ["name"] = "xpanes:pane_natural", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 2, ["x"] = 24, ["name"] = "mcl_core:wood", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 24, ["name"] = "mcl_core:wood", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 24, ["name"] = "mcl_core:wood", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 24, ["name"] = "mcl_core:wood", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 24, ["name"] = "mcl_stairs:stair_wood", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 4, ["x"] = 24, ["name"] = "mcl_core:wood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 24, ["name"] = "mcl_core:tree", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 4, ["x"] = 24, ["name"] = "xpanes:pane_natural", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 4, ["x"] = 24, ["name"] = "mcl_core:tree", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 4, ["x"] = 24, ["name"] = "mcl_core:wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 24, ["name"] = "mcl_stairs:stair_wood", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 125}, {["y"] = 4, ["x"] = 24, ["name"] = "mcl_core:tree", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 24, ["name"] = "mcl_core:tree", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 24, ["name"] = "mcl_core:tree", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 24, ["name"] = "mcl_core:tree", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 24, ["name"] = "mcl_core:tree", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 24, ["name"] = "mcl_stairs:stair_wood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 5, ["x"] = 24, ["name"] = "mcl_core:wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 24, ["name"] = "mcl_core:wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 24, ["name"] = "mcl_core:wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 24, ["name"] = "mcl_stairs:stair_wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 125}, {["y"] = 6, ["x"] = 24, ["name"] = "mcl_stairs:stair_wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 6, ["x"] = 24, ["name"] = "mcl_core:wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 24, ["name"] = "mcl_stairs:stair_wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 125}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:sprucewood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:sprucewood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:sprucewood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 25, ["name"] = "mcl_core:tree", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 2, ["x"] = 25, ["name"] = "mcl_torches:torch_wall", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 2, ["x"] = 25, ["name"] = "mcl_core:tree", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 3, ["x"] = 25, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 25, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 25, ["name"] = "mcl_stairs:stair_wood", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 141}, {["y"] = 4, ["x"] = 25, ["name"] = "mcl_stairs:stair_wood", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 141}, {["y"] = 5, ["x"] = 25, ["name"] = "mcl_stairs:stair_wood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 141}, {["y"] = 5, ["x"] = 25, ["name"] = "mcl_stairs:stair_wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 141}, {["y"] = 6, ["x"] = 25, ["name"] = "mcl_stairs:stair_wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 141}, {["y"] = 6, ["x"] = 25, ["name"] = "mcl_core:wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 25, ["name"] = "mcl_stairs:stair_wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 141}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:wood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:sprucewood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:sprucewood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:tree", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:tree", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:tree", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:tree", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:tree", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:tree", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:tree", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:tree", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:tree", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 26, ["name"] = "xpanes:pane_natural", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 2, ["x"] = 26, ["name"] = "xpanes:pane_natural", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 3, ["x"] = 26, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 26, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 26, ["name"] = "mcl_torches:torch_wall", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 15}, {["y"] = 4, ["x"] = 26, ["name"] = "mcl_stairs:stair_wood", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 4, ["x"] = 26, ["name"] = "mcl_stairs:stair_wood", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 125}, {["y"] = 5, ["x"] = 26, ["name"] = "mcl_stairs:stair_wood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 5, ["x"] = 26, ["name"] = "mcl_stairs:stair_wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 125}, {["y"] = 6, ["x"] = 26, ["name"] = "mcl_stairs:stair_wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 6, ["x"] = 26, ["name"] = "mcl_core:wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 26, ["name"] = "mcl_stairs:stair_wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 125}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:sprucewood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:sprucewood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:sprucewood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:tree", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_farming:soil_wet", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_farming:soil_wet", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_farming:soil_wet", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_farming:soil_wet", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 45}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_farming:soil_wet", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_farming:soil_wet", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 45}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_farming:soil_wet", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 29}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:tree", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:tree", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:tree", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:tree", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:tree", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:tree", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:tree", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:tree", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_fences:fence", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 1, ["x"] = 27, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "mcl_farming:wheat", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 111}, {["y"] = 1, ["x"] = 27, ["name"] = "mcl_farming:wheat", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 95}, {["y"] = 1, ["x"] = 27, ["name"] = "mcl_farming:wheat", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 79}, {["y"] = 1, ["x"] = 27, ["name"] = "mcl_farming:wheat", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 63}, {["y"] = 1, ["x"] = 27, ["name"] = "mcl_farming:wheat", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 79}, {["y"] = 1, ["x"] = 27, ["name"] = "mcl_farming:wheat", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 63}, {["y"] = 1, ["x"] = 27, ["name"] = "mcl_farming:wheat", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 47}, {["y"] = 1, ["x"] = 27, ["name"] = "mcl_fences:fence", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 2, ["x"] = 27, ["name"] = "xpanes:pane_natural", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 141}, {["y"] = 2, ["x"] = 27, ["name"] = "xpanes:pane_natural", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 141}, {["y"] = 2, ["x"] = 27, ["name"] = "mcl_fences:fence", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 189}, {["y"] = 3, ["x"] = 27, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 27, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 27, ["name"] = "mcl_torches:torch_wall", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 27, ["name"] = "mcl_wool:black", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 27, ["name"] = "mcl_torches:torch_wall", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 15}, {["y"] = 4, ["x"] = 27, ["name"] = "mcl_stairs:stair_wood", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 4, ["x"] = 27, ["name"] = "mcl_stairs:stair_wood", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 109}, {["y"] = 5, ["x"] = 27, ["name"] = "mcl_stairs:stair_wood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 5, ["x"] = 27, ["name"] = "mcl_stairs:stair_wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 109}, {["y"] = 6, ["x"] = 27, ["name"] = "mcl_stairs:stair_wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 6, ["x"] = 27, ["name"] = "mcl_core:wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 27, ["name"] = "mcl_stairs:stair_wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 109}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:sprucewood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:sprucewood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:tree", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_farming:soil_wet", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_farming:soil_wet", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_farming:soil_wet", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 45}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_farming:soil_wet", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_farming:soil_wet", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_farming:soil_wet", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_farming:soil_wet", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 45}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:tree", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:tree", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_farming:soil_wet", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_farming:soil_wet", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:water_source", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_farming:soil_wet", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_farming:soil_wet", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:tree", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:tree", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:tree", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:tree", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_farming:wheat", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 95}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_farming:wheat", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 79}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_farming:wheat", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 63}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_farming:wheat", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 79}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_farming:wheat", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 95}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_farming:wheat", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 79}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_farming:wheat", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 63}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_farming:wheat", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 79}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_farming:wheat", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 95}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_farming:wheat", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 127}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_farming:wheat", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 143}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 28, ["name"] = "xpanes:pane_natural", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 141}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 28, ["name"] = "xpanes:pane_natural", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 141}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_core:tree", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_core:tree", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_core:tree", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_core:tree", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 28, ["name"] = "xpanes:pane_natural", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 156}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_core:tree", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 3, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 28, ["name"] = "mcl_core:tree", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 28, ["name"] = "mcl_core:tree", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 3, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 28, ["name"] = "mcl_core:tree", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 3, ["x"] = 28, ["name"] = "mcl_torches:torch_wall", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 15}, {["y"] = 4, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 28, ["name"] = "mcl_stairs:stair_wood", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 4, ["x"] = 28, ["name"] = "mcl_stairs:stair_wood", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 93}, {["y"] = 4, ["x"] = 28, ["name"] = "mcl_core:tree", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 4, ["x"] = 28, ["name"] = "mcl_core:tree", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 4, ["x"] = 28, ["name"] = "mcl_core:tree", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 5, ["x"] = 28, ["name"] = "mcl_stairs:slab_stone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 5, ["x"] = 28, ["name"] = "mcl_stairs:slab_stone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 5, ["x"] = 28, ["name"] = "mcl_stairs:slab_stone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 5, ["x"] = 28, ["name"] = "mcl_stairs:slab_stone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 5, ["x"] = 28, ["name"] = "mcl_stairs:slab_stone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 45}, {["y"] = 5, ["x"] = 28, ["name"] = "mcl_stairs:slab_stone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 5, ["x"] = 28, ["name"] = "mcl_stairs:slab_stone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 45}, {["y"] = 5, ["x"] = 28, ["name"] = "mcl_stairs:slab_stone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 5, ["x"] = 28, ["name"] = "mcl_stairs:slab_stone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 45}, {["y"] = 5, ["x"] = 28, ["name"] = "mcl_stairs:slab_stone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 5, ["x"] = 28, ["name"] = "mcl_stairs:stair_wood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 5, ["x"] = 28, ["name"] = "mcl_stairs:stair_wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 93}, {["y"] = 6, ["x"] = 28, ["name"] = "mcl_stairs:stair_wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 6, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 28, ["name"] = "mcl_stairs:stair_wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 93}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:sprucewood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:sprucewood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:sprucewood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:tree", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:water_source", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:water_source", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 240, ["param1"] = 45}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:water_source", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:water_source", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 240, ["param1"] = 77}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:water_source", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:water_source", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 240, ["param1"] = 77}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:water_source", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:tree", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:tree", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_farming:soil_wet", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 45}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_farming:soil_wet", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:water_source", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_farming:soil_wet", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_farming:soil_wet", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:tree", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:water_source", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:water_source", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_stairs:stair_wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 139}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:wood", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:wood", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_farming:wheat", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 63}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_farming:wheat", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 79}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_farming:wheat", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 111}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_farming:wheat", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 127}, {["y"] = 2, ["x"] = 29, ["name"] = "xpanes:bar", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 205}, {["y"] = 2, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 29, ["name"] = "mcl_core:wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 29, ["name"] = "mcl_core:wood", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 29, ["name"] = "mcl_core:wood", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 29, ["name"] = "mcl_core:wood", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 29, ["name"] = "xpanes:bar", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 189}, {["y"] = 3, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 29, ["name"] = "mcl_core:wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 29, ["name"] = "mcl_core:wood", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 29, ["name"] = "mcl_core:wood", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 29, ["name"] = "mcl_stairs:stair_wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 141}, {["y"] = 4, ["x"] = 29, ["name"] = "mcl_stairs:stair_wood", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 157}, {["y"] = 4, ["x"] = 29, ["name"] = "mcl_core:wood", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 29, ["name"] = "mcl_core:wood", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 29, ["name"] = "mcl_core:tree", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 4, ["x"] = 29, ["name"] = "mcl_core:tree", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 5, ["x"] = 29, ["name"] = "mcl_stairs:slab_stone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 5, ["x"] = 29, ["name"] = "mcl_stairs:slab_stone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 5, ["x"] = 29, ["name"] = "mcl_stairs:stair_wood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 141}, {["y"] = 5, ["x"] = 29, ["name"] = "mcl_stairs:stair_wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 109}, {["y"] = 5, ["x"] = 29, ["name"] = "mcl_core:tree", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 5, ["x"] = 29, ["name"] = "mcl_core:tree", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 5, ["x"] = 29, ["name"] = "mcl_core:tree", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 6, ["x"] = 29, ["name"] = "mcl_stairs:stair_wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 6, ["x"] = 29, ["name"] = "mcl_core:wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 29, ["name"] = "mcl_stairs:stair_wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 77}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:wood", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:sprucewood", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:wood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:sprucewood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:sprucewood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_stairs:stair_cobble", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 141}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:tree", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_farming:soil_wet", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_farming:soil_wet", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_farming:soil_wet", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_farming:soil_wet", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_farming:soil_wet", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_farming:soil_wet", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_farming:soil_wet", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:tree", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:tree", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_farming:soil_wet", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 45}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_farming:soil_wet", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:water_source", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_farming:soil_wet", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_farming:soil_wet", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:tree", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_fences:fence", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 154}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_stairs:stair_wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 139}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_core:wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_core:wood", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_doors:wooden_door_b_1", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 173}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_farming:wheat", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 95}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_farming:wheat", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 79}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_farming:wheat", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 95}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_farming:wheat", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 111}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_farming:wheat", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 127}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_farming:wheat", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 111}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_farming:wheat", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 95}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_farming:wheat", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 63}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_farming:wheat", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 79}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_farming:wheat", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 111}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_farming:wheat", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 127}, {["y"] = 2, ["x"] = 30, ["name"] = "xpanes:bar", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 189}, {["y"] = 2, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 30, ["name"] = "mesecons_pressureplates:pressure_plate_wood_off", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 171}, {["y"] = 2, ["x"] = 30, ["name"] = "xpanes:pane_natural", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 141}, {["y"] = 2, ["x"] = 30, ["name"] = "mcl_core:tree", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 30, ["name"] = "mcl_torches:torch_wall", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 2, ["x"] = 30, ["name"] = "mcl_core:tree", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 2, ["x"] = 30, ["name"] = "mcl_core:wood", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 30, ["name"] = "mcl_doors:wooden_door_t_1", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 189}, {["y"] = 3, ["x"] = 30, ["name"] = "xpanes:bar", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 3, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 30, ["name"] = "mcl_core:wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 30, ["name"] = "mcl_core:wood", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 30, ["name"] = "mcl_torches:torch_wall", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 30, ["name"] = "mcl_core:wood", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 30, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 30, ["name"] = "mcl_core:wood", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 30, ["name"] = "mcl_core:tree", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 4, ["x"] = 30, ["name"] = "mcl_core:tree", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 5, ["x"] = 30, ["name"] = "mcl_stairs:slab_stone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 5, ["x"] = 30, ["name"] = "mcl_stairs:slab_stone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 5, ["x"] = 30, ["name"] = "mcl_stairs:stair_wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 141}, {["y"] = 5, ["x"] = 30, ["name"] = "mcl_stairs:stair_wood", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 157}, {["y"] = 5, ["x"] = 30, ["name"] = "mcl_stairs:stair_wood", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 173}, {["y"] = 5, ["x"] = 30, ["name"] = "mcl_core:wood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 30, ["name"] = "mcl_core:wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 30, ["name"] = "mcl_stairs:stair_wood", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 77}, {["y"] = 5, ["x"] = 30, ["name"] = "mcl_core:tree", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 5, ["x"] = 30, ["name"] = "mcl_core:tree", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 5, ["x"] = 30, ["name"] = "mcl_core:tree", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 6, ["x"] = 30, ["name"] = "mcl_stairs:stair_wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 6, ["x"] = 30, ["name"] = "mcl_core:wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 30, ["name"] = "mcl_stairs:stair_wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 93}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:sprucewood", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:sprucewood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:sprucewood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:sprucewood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_farming:soil_wet", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_farming:soil_wet", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_farming:soil_wet", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_farming:soil_wet", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_farming:soil_wet", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_farming:soil_wet", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_farming:soil_wet", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_farming:soil_wet", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_farming:soil_wet", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:water_source", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_farming:soil_wet", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_farming:soil_wet", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_farming:wheat", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 79}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_farming:wheat", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 95}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_farming:wheat", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 111}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_farming:wheat", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 127}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_farming:wheat", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 143}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_farming:wheat", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 127}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_farming:wheat", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 111}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_farming:wheat", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 79}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_farming:wheat", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 95}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_farming:wheat", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 127}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_farming:wheat", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 143}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 31, ["name"] = "xpanes:pane_natural", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 2, ["x"] = 31, ["name"] = "xpanes:pane_natural", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 31, ["name"] = "xpanes:pane_natural", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 31, ["name"] = "xpanes:pane_natural", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 31, ["name"] = "mcl_torches:torch_wall", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 3, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 3, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 3, ["x"] = 31, ["name"] = "mcl_torches:torch_wall", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 15}, {["y"] = 3, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 4, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 4, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 4, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 31, ["name"] = "mcl_stairs:slab_stone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 5, ["x"] = 31, ["name"] = "mcl_stairs:slab_stone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 5, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 31, ["name"] = "mcl_stairs:stair_wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 109}, {["y"] = 6, ["x"] = 31, ["name"] = "mcl_stairs:stair_wood", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 125}, {["y"] = 6, ["x"] = 31, ["name"] = "mcl_stairs:stair_wood", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 141}, {["y"] = 6, ["x"] = 31, ["name"] = "mcl_stairs:stair_wood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 125}, {["y"] = 6, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 31, ["name"] = "mcl_stairs:stair_wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 125}, {["y"] = 6, ["x"] = 31, ["name"] = "mcl_stairs:stair_wood", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 109}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:wood", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:sprucewood", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:wood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:sprucewood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:sprucewood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:tree", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:tree", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:tree", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:tree", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:tree", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:tree", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:tree", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:tree", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:tree", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:tree", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_farming:soil_wet", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_farming:soil_wet", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:water_source", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_farming:soil_wet", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_farming:soil_wet", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 141}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:tree", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_fences:fence", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_stairs:stair_cobble", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 141}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_farming:wheat", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 95}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_farming:wheat", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 111}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_farming:wheat", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 143}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_farming:wheat", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 159}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_fences:fence", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_doors:wooden_door_b_1", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:wood", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 32, ["name"] = "mcl_core:wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 32, ["name"] = "xpanes:pane_natural", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 141}, {["y"] = 2, ["x"] = 32, ["name"] = "xpanes:pane_natural", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 2, ["x"] = 32, ["name"] = "xpanes:pane_natural", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 189}, {["y"] = 2, ["x"] = 32, ["name"] = "mcl_fences:fence", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 189}, {["y"] = 2, ["x"] = 32, ["name"] = "mcl_doors:wooden_door_t_1", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 189}, {["y"] = 2, ["x"] = 32, ["name"] = "mcl_core:wood", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 32, ["name"] = "mcl_core:wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 32, ["name"] = "mcl_core:wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 32, ["name"] = "mcl_torches:torch_wall", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 32, ["name"] = "mcl_wool:black", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 32, ["name"] = "mcl_torches:torch_wall", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 15}, {["y"] = 3, ["x"] = 32, ["name"] = "mcl_core:wood", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 32, ["name"] = "mcl_torches:torch_wall", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 3, ["x"] = 32, ["name"] = "mcl_core:wood", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 32, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 32, ["name"] = "mcl_core:wood", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 32, ["name"] = "mcl_core:tree", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 4, ["x"] = 32, ["name"] = "mcl_core:tree", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 5, ["x"] = 32, ["name"] = "mcl_stairs:slab_stone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 5, ["x"] = 32, ["name"] = "mcl_stairs:slab_stone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 5, ["x"] = 32, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 32, ["name"] = "mcl_core:wood", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 32, ["name"] = "mcl_core:tree", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 5, ["x"] = 32, ["name"] = "mcl_core:tree", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 5, ["x"] = 32, ["name"] = "mcl_core:tree", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 32, ["name"] = "mcl_stairs:stair_wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 93}, {["y"] = 6, ["x"] = 32, ["name"] = "mcl_stairs:stair_wood", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 109}, {["y"] = 6, ["x"] = 32, ["name"] = "mcl_stairs:stair_wood", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 125}, {["y"] = 6, ["x"] = 32, ["name"] = "mcl_stairs:stair_wood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 109}, {["y"] = 6, ["x"] = 32, ["name"] = "mcl_stairs:stair_wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 93}, {["y"] = 6, ["x"] = 32, ["name"] = "mcl_stairs:stair_wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 109}, {["y"] = 6, ["x"] = 32, ["name"] = "mcl_stairs:stair_wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 125}, {["y"] = 6, ["x"] = 32, ["name"] = "mcl_stairs:stair_wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 141}, {["y"] = 6, ["x"] = 32, ["name"] = "mcl_stairs:stair_wood", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 125}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:sprucewood", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:wood", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:sprucewood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:sprucewood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:sprucewood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:tree", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_farming:soil_wet", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_farming:soil_wet", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:water_source", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_farming:soil_wet", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_farming:soil_wet", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:tree", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_core:wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_farming:wheat", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 79}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_farming:wheat", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 95}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_farming:wheat", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 127}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_farming:wheat", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 143}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_core:wood", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_core:wood", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 33, ["name"] = "mcl_core:wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 33, ["name"] = "mcl_core:tree", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 33, ["name"] = "mcl_torches:torch_wall", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 2, ["x"] = 33, ["name"] = "mcl_core:tree", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 2, ["x"] = 33, ["name"] = "mcl_core:wood", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 33, ["name"] = "mcl_core:wood", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 33, ["name"] = "mcl_core:wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 33, ["name"] = "mcl_core:wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 33, ["name"] = "mcl_torches:torch_wall", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 15}, {["y"] = 3, ["x"] = 33, ["name"] = "mcl_core:wood", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 33, ["name"] = "mcl_core:wood", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 33, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 33, ["name"] = "mcl_core:wood", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 33, ["name"] = "mcl_core:tree", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 4, ["x"] = 33, ["name"] = "mcl_core:tree", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 5, ["x"] = 33, ["name"] = "mcl_stairs:slab_stone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 5, ["x"] = 33, ["name"] = "mcl_stairs:slab_stone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 5, ["x"] = 33, ["name"] = "mcl_stairs:stair_wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 93}, {["y"] = 5, ["x"] = 33, ["name"] = "mcl_stairs:stair_wood", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 109}, {["y"] = 5, ["x"] = 33, ["name"] = "mcl_stairs:stair_wood", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 125}, {["y"] = 5, ["x"] = 33, ["name"] = "mcl_stairs:stair_wood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 109}, {["y"] = 5, ["x"] = 33, ["name"] = "mcl_stairs:stair_wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 125}, {["y"] = 5, ["x"] = 33, ["name"] = "mcl_stairs:stair_wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 141}, {["y"] = 5, ["x"] = 33, ["name"] = "mcl_stairs:stair_wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 157}, {["y"] = 5, ["x"] = 33, ["name"] = "mcl_stairs:stair_wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 173}, {["y"] = 5, ["x"] = 33, ["name"] = "mcl_stairs:stair_wood", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 157}, {["y"] = 5, ["x"] = 33, ["name"] = "mcl_core:tree", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 33, ["name"] = "mcl_core:tree", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 33, ["name"] = "mcl_core:tree", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:gravel", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:gravel", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:gravel", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:gravel", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:gravel", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:gravel", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:tree", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_farming:soil_wet", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_farming:soil_wet", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:water_source", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_farming:soil_wet", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_farming:soil_wet", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:tree", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_fences:fence", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_fences:fence", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:tree", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:tree", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_doors:wooden_door_b_1", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 140}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_farming:wheat", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 95}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_farming:wheat", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 79}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_farming:wheat", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 111}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_farming:wheat", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 127}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:tree", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:tree", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_fences:fence", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_fences:fence", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_core:tree", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_core:tree", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_doors:wooden_door_t_1", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 156}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_core:tree", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 2, ["x"] = 34, ["name"] = "xpanes:pane_natural", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 172}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_core:tree", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_core:tree", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 34, ["name"] = "xpanes:pane_natural", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_core:tree", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_fences:fence", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_fences:fence", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_core:tree", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_core:tree", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_torches:torch_wall", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 15}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_core:tree", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_core:tree", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 4, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 34, ["name"] = "mcl_stairs:stair_wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 125}, {["y"] = 4, ["x"] = 34, ["name"] = "mcl_stairs:stair_wood", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 141}, {["y"] = 4, ["x"] = 34, ["name"] = "mcl_stairs:stair_wood", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 157}, {["y"] = 4, ["x"] = 34, ["name"] = "mcl_stairs:stair_wood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 141}, {["y"] = 4, ["x"] = 34, ["name"] = "mcl_stairs:stair_wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 125}, {["y"] = 4, ["x"] = 34, ["name"] = "mcl_stairs:stair_wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 141}, {["y"] = 4, ["x"] = 34, ["name"] = "mcl_stairs:stair_wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 157}, {["y"] = 4, ["x"] = 34, ["name"] = "mcl_stairs:stair_wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 173}, {["y"] = 4, ["x"] = 34, ["name"] = "mcl_stairs:stair_wood", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 157}, {["y"] = 4, ["x"] = 34, ["name"] = "mcl_core:tree", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 4, ["x"] = 34, ["name"] = "mcl_core:tree", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 4, ["x"] = 34, ["name"] = "mcl_core:tree", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 5, ["x"] = 34, ["name"] = "mcl_stairs:slab_stone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 45}, {["y"] = 5, ["x"] = 34, ["name"] = "mcl_stairs:slab_stone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 5, ["x"] = 34, ["name"] = "mcl_stairs:slab_stone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 5, ["x"] = 34, ["name"] = "mcl_stairs:slab_stone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 45}, {["y"] = 5, ["x"] = 34, ["name"] = "mcl_stairs:slab_stone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 5, ["x"] = 34, ["name"] = "mcl_stairs:slab_stone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 5, ["x"] = 34, ["name"] = "mcl_stairs:slab_stone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 5, ["x"] = 34, ["name"] = "mcl_stairs:slab_stone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 45}, {["y"] = 5, ["x"] = 34, ["name"] = "mcl_stairs:slab_stone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 5, ["x"] = 34, ["name"] = "mcl_stairs:slab_stone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_stairs:stair_cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 141}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:gravel", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:cobble", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:cobble", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:cobble", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:cobble", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:gravel", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_fences:fence", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:tree", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:tree", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:tree", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:tree", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:tree", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:tree", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:tree", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 35, ["name"] = "mcl_core:cobble", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 35, ["name"] = "mcl_core:cobble", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 35, ["name"] = "mcl_core:cobble", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 35, ["name"] = "mcl_core:cobble", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 35, ["name"] = "mcl_fences:fence", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 2, ["x"] = 35, ["name"] = "mcl_fences:fence", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 2, ["x"] = 35, ["name"] = "mcl_fences:fence", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 2, ["x"] = 35, ["name"] = "mcl_fences:fence", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 189}, {["y"] = 3, ["x"] = 35, ["name"] = "mcl_stairs:stair_wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 157}, {["y"] = 3, ["x"] = 35, ["name"] = "mcl_stairs:stair_wood", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 173}, {["y"] = 3, ["x"] = 35, ["name"] = "mcl_stairs:stair_wood", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 189}, {["y"] = 3, ["x"] = 35, ["name"] = "mcl_stairs:stair_wood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 173}, {["y"] = 3, ["x"] = 35, ["name"] = "mcl_stairs:stair_wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 157}, {["y"] = 3, ["x"] = 35, ["name"] = "mcl_stairs:stair_wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 141}, {["y"] = 3, ["x"] = 35, ["name"] = "mcl_stairs:stair_wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 125}, {["y"] = 3, ["x"] = 35, ["name"] = "mcl_stairs:stair_wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 141}, {["y"] = 3, ["x"] = 35, ["name"] = "mcl_stairs:stair_wood", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 141}, {["y"] = 3, ["x"] = 35, ["name"] = "mcl_fences:fence", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 3, ["x"] = 35, ["name"] = "mcl_fences:fence", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 141}, {["y"] = 3, ["x"] = 35, ["name"] = "mcl_torches:torch_wall", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 35, ["name"] = "mcl_wool:black", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 35, ["name"] = "mcl_torches:torch_wall", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 15}, {["y"] = 4, ["x"] = 35, ["name"] = "mcl_core:cobble", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 35, ["name"] = "mcl_core:cobble", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 35, ["name"] = "mcl_core:cobble", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 35, ["name"] = "mcl_core:cobble", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:cobble", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:cobble", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 36, ["name"] = "mcl_core:cobble", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 36, ["name"] = "mcl_core:cobble", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 36, ["name"] = "mcl_torches:torch_wall", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 15}, {["y"] = 4, ["x"] = 36, ["name"] = "mcl_core:cobble", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 36, ["name"] = "mcl_core:cobble", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 36, ["name"] = "mcl_core:cobble", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 36, ["name"] = "mcl_core:cobble", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_stairs:stair_cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 141}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_stairs:stair_cobble", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 125}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:cobble", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:cobble", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 37, ["name"] = "mcl_core:cobble", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 37, ["name"] = "mcl_core:cobble", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 37, ["name"] = "mcl_torches:torch_wall", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 15}, {["y"] = 3, ["x"] = 37, ["name"] = "mcl_torches:torch_wall", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 15}, {["y"] = 4, ["x"] = 37, ["name"] = "mcl_stairs:stair_wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 125}, {["y"] = 4, ["x"] = 37, ["name"] = "mcl_stairs:stair_wood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 141}, {["y"] = 4, ["x"] = 37, ["name"] = "mcl_stairs:stair_wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 125}, {["y"] = 4, ["x"] = 37, ["name"] = "mcl_stairs:stair_wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 109}, {["y"] = 4, ["x"] = 37, ["name"] = "mcl_stairs:stair_wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 125}, {["y"] = 4, ["x"] = 37, ["name"] = "mcl_stairs:stair_wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 141}, {["y"] = 4, ["x"] = 37, ["name"] = "mcl_stairs:stair_wood", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 157}, {["y"] = 4, ["x"] = 37, ["name"] = "mcl_stairs:stair_wood", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 157}, {["y"] = 4, ["x"] = 37, ["name"] = "mcl_stairs:stair_wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 173}, {["y"] = 4, ["x"] = 37, ["name"] = "mcl_core:cobble", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 37, ["name"] = "mcl_core:cobble", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 37, ["name"] = "mcl_core:cobble", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 37, ["name"] = "mcl_core:cobble", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_fences:fence", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_fences:fence", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:gravel", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:gravel", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_stairs:stair_cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 141}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_doors:wooden_door_b_1", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 172}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_fences:fence", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_core:tree", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_doors:wooden_door_b_1", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 125}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_core:wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_core:tree", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_fences:fence", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 38, ["name"] = "mcl_doors:wooden_door_t_1", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 188}, {["y"] = 2, ["x"] = 38, ["name"] = "mcl_core:wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 38, ["name"] = "mcl_core:wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 38, ["name"] = "xpanes:pane_natural", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 140}, {["y"] = 2, ["x"] = 38, ["name"] = "xpanes:pane_natural", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 156}, {["y"] = 2, ["x"] = 38, ["name"] = "xpanes:pane_natural", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 172}, {["y"] = 2, ["x"] = 38, ["name"] = "mcl_core:wood", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 38, ["name"] = "mcl_fences:fence", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 189}, {["y"] = 2, ["x"] = 38, ["name"] = "mcl_core:tree", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 2, ["x"] = 38, ["name"] = "mcl_doors:wooden_door_t_1", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 141}, {["y"] = 2, ["x"] = 38, ["name"] = "mcl_core:wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 38, ["name"] = "mcl_core:tree", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 2, ["x"] = 38, ["name"] = "mcl_fences:fence", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 189}, {["y"] = 2, ["x"] = 38, ["name"] = "mcl_fences:fence", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 2, ["x"] = 38, ["name"] = "mcl_fences:fence", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 3, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 38, ["name"] = "mcl_core:wood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 38, ["name"] = "mcl_core:wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 38, ["name"] = "mcl_core:wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 38, ["name"] = "xpanes:pane_natural", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 156}, {["y"] = 3, ["x"] = 38, ["name"] = "xpanes:pane_natural", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 172}, {["y"] = 3, ["x"] = 38, ["name"] = "xpanes:pane_natural", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 188}, {["y"] = 3, ["x"] = 38, ["name"] = "mcl_core:wood", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 38, ["name"] = "mcl_torches:torch_wall", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 38, ["name"] = "mcl_wool:black", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 38, ["name"] = "mcl_torches:torch_wall", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 15}, {["y"] = 3, ["x"] = 38, ["name"] = "mcl_core:tree", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 3, ["x"] = 38, ["name"] = "mcl_core:wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 38, ["name"] = "mcl_core:wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 38, ["name"] = "mcl_core:tree", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 3, ["x"] = 38, ["name"] = "mcl_torches:torch_wall", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 3, ["x"] = 38, ["name"] = "mcl_wool:black", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 38, ["name"] = "mcl_torches:torch_wall", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 15}, {["y"] = 3, ["x"] = 38, ["name"] = "mcl_fences:fence", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 3, ["x"] = 38, ["name"] = "mcl_fences:fence", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 4, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 38, ["name"] = "mcl_core:wood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 38, ["name"] = "mcl_core:wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 38, ["name"] = "mcl_core:wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 38, ["name"] = "mcl_core:wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 38, ["name"] = "mcl_core:wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 38, ["name"] = "mcl_core:wood", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 38, ["name"] = "mcl_core:wood", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 38, ["name"] = "mcl_core:tree", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 38, ["name"] = "mcl_core:tree", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 38, ["name"] = "mcl_stairs:stair_wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 93}, {["y"] = 5, ["x"] = 38, ["name"] = "mcl_stairs:stair_wood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 109}, {["y"] = 5, ["x"] = 38, ["name"] = "mcl_stairs:stair_wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 93}, {["y"] = 5, ["x"] = 38, ["name"] = "mcl_stairs:stair_wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 93}, {["y"] = 5, ["x"] = 38, ["name"] = "mcl_stairs:stair_wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 109}, {["y"] = 5, ["x"] = 38, ["name"] = "mcl_stairs:stair_wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 125}, {["y"] = 5, ["x"] = 38, ["name"] = "mcl_stairs:stair_wood", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 141}, {["y"] = 5, ["x"] = 38, ["name"] = "mcl_stairs:stair_wood", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 157}, {["y"] = 5, ["x"] = 38, ["name"] = "mcl_stairs:stair_wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 173}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:gravel", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:gravel", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:gravel", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:gravel", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:gravel", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:gravel", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 39, ["name"] = "crafting:workbench", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 187}, {["y"] = 1, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 39, ["name"] = "mcl_core:wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 39, ["name"] = "mcl_core:wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 39, ["name"] = "mcl_core:tree", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 39, ["name"] = "mcl_doors:wooden_door_b_1", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 173}, {["y"] = 1, ["x"] = 39, ["name"] = "mcl_core:wood", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 39, ["name"] = "mcl_core:tree", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 2, ["x"] = 39, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 39, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 39, ["name"] = "mcl_core:wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 39, ["name"] = "mcl_core:wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 39, ["name"] = "mcl_core:tree", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 2, ["x"] = 39, ["name"] = "mcl_doors:wooden_door_t_1", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 189}, {["y"] = 2, ["x"] = 39, ["name"] = "mcl_core:wood", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 39, ["name"] = "mcl_core:tree", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 3, ["x"] = 39, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 39, ["name"] = "mcl_torches:torch_wall", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 3, ["x"] = 39, ["name"] = "mcl_torches:torch_wall", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 3, ["x"] = 39, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 39, ["name"] = "mcl_torches:torch_wall", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 15}, {["y"] = 3, ["x"] = 39, ["name"] = "mcl_core:wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 39, ["name"] = "mcl_core:wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 39, ["name"] = "mcl_torches:torch_wall", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 15}, {["y"] = 3, ["x"] = 39, ["name"] = "mcl_core:tree", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 3, ["x"] = 39, ["name"] = "mcl_core:wood", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 39, ["name"] = "mcl_core:wood", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 39, ["name"] = "mcl_core:tree", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 4, ["x"] = 39, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 39, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 39, ["name"] = "mcl_core:tree", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 39, ["name"] = "mcl_core:tree", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 39, ["name"] = "mcl_core:tree", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 4, ["x"] = 39, ["name"] = "mcl_core:tree", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 5, ["x"] = 39, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 39, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 39, ["name"] = "mcl_core:tree", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 5, ["x"] = 39, ["name"] = "mcl_core:tree", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 6, ["x"] = 39, ["name"] = "mcl_stairs:stair_wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 93}, {["y"] = 6, ["x"] = 39, ["name"] = "mcl_stairs:stair_wood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 77}, {["y"] = 6, ["x"] = 39, ["name"] = "mcl_stairs:stair_wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 61}, {["y"] = 6, ["x"] = 39, ["name"] = "mcl_stairs:stair_wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 61}, {["y"] = 6, ["x"] = 39, ["name"] = "mcl_stairs:stair_wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 77}, {["y"] = 6, ["x"] = 39, ["name"] = "mcl_stairs:stair_wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 93}, {["y"] = 6, ["x"] = 39, ["name"] = "mcl_stairs:stair_wood", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 109}, {["y"] = 6, ["x"] = 39, ["name"] = "mcl_stairs:stair_wood", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 125}, {["y"] = 6, ["x"] = 39, ["name"] = "mcl_stairs:stair_wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 141}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 40, ["name"] = "mcl_core:wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 40, ["name"] = "mcl_core:wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 40, ["name"] = "mcl_core:wood", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 40, ["name"] = "mcl_core:wood", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 40, ["name"] = "xpanes:pane_natural", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 2, ["x"] = 40, ["name"] = "xpanes:pane_natural", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 2, ["x"] = 40, ["name"] = "xpanes:pane_natural", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 2, ["x"] = 40, ["name"] = "xpanes:pane_natural", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 2, ["x"] = 40, ["name"] = "mcl_core:wood", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 40, ["name"] = "mcl_core:wood", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 40, ["name"] = "xpanes:pane_natural", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 189}, {["y"] = 3, ["x"] = 40, ["name"] = "xpanes:pane_natural", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 189}, {["y"] = 3, ["x"] = 40, ["name"] = "mcl_core:wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 40, ["name"] = "mcl_core:wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 40, ["name"] = "mcl_core:wood", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 40, ["name"] = "mcl_torches:torch_wall", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 3, ["x"] = 40, ["name"] = "mcl_core:wood", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 40, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 40, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 40, ["name"] = "mcl_core:tree", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 40, ["name"] = "mcl_core:tree", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 40, ["name"] = "mcl_core:tree", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 4, ["x"] = 40, ["name"] = "mcl_core:tree", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 40, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 40, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 40, ["name"] = "mcl_core:tree", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 5, ["x"] = 40, ["name"] = "mcl_core:tree", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 5, ["x"] = 40, ["name"] = "mcl_core:tree", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 5, ["x"] = 40, ["name"] = "mcl_core:tree", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 6, ["x"] = 40, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 40, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 40, ["name"] = "mcl_stairs:stair_wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 93}, {["y"] = 7, ["x"] = 40, ["name"] = "mcl_stairs:stair_wood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 77}, {["y"] = 7, ["x"] = 40, ["name"] = "mcl_stairs:stair_wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 61}, {["y"] = 7, ["x"] = 40, ["name"] = "mcl_stairs:stair_wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 45}, {["y"] = 7, ["x"] = 40, ["name"] = "mcl_stairs:stair_wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 45}, {["y"] = 7, ["x"] = 40, ["name"] = "mcl_stairs:stair_wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 61}, {["y"] = 7, ["x"] = 40, ["name"] = "mcl_stairs:stair_wood", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 77}, {["y"] = 7, ["x"] = 40, ["name"] = "mcl_stairs:stair_wood", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 93}, {["y"] = 7, ["x"] = 40, ["name"] = "mcl_stairs:stair_wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 109}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 41, ["name"] = "mcl_fences:fence", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 104}, {["y"] = 1, ["x"] = 41, ["name"] = "mcl_fences:fence", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 138}, {["y"] = 1, ["x"] = 41, ["name"] = "mcl_stairs:stair_wood", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 155}, {["y"] = 1, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 41, ["name"] = "mcl_core:wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 41, ["name"] = "mcl_core:wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 41, ["name"] = "mcl_core:wood", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 41, ["name"] = "mcl_core:wood", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 41, ["name"] = "xpanes:pane_natural", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 2, ["x"] = 41, ["name"] = "mesecons_pressureplates:pressure_plate_wood_off", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 121}, {["y"] = 2, ["x"] = 41, ["name"] = "mesecons_pressureplates:pressure_plate_wood_off", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 155}, {["y"] = 2, ["x"] = 41, ["name"] = "xpanes:pane_natural", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 2, ["x"] = 41, ["name"] = "mcl_core:wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 41, ["name"] = "mcl_core:wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 41, ["name"] = "xpanes:pane_natural", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 2, ["x"] = 41, ["name"] = "xpanes:pane_natural", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 3, ["x"] = 41, ["name"] = "xpanes:pane_natural", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 3, ["x"] = 41, ["name"] = "xpanes:pane_natural", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 3, ["x"] = 41, ["name"] = "mcl_core:wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 41, ["name"] = "mcl_core:wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 41, ["name"] = "mcl_core:wood", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 41, ["name"] = "mcl_core:wood", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 41, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 41, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 41, ["name"] = "mcl_core:tree", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 41, ["name"] = "mcl_core:tree", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 41, ["name"] = "mcl_core:tree", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 4, ["x"] = 41, ["name"] = "mcl_core:tree", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 41, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 41, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 41, ["name"] = "mcl_core:tree", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 5, ["x"] = 41, ["name"] = "mcl_core:tree", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 5, ["x"] = 41, ["name"] = "mcl_core:tree", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 41, ["name"] = "mcl_core:tree", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 6, ["x"] = 41, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 41, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 41, ["name"] = "mcl_stairs:stair_wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 77}, {["y"] = 7, ["x"] = 41, ["name"] = "mcl_stairs:stair_wood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 61}, {["y"] = 7, ["x"] = 41, ["name"] = "mcl_stairs:stair_wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 45}, {["y"] = 7, ["x"] = 41, ["name"] = "mcl_stairs:stair_wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 29}, {["y"] = 7, ["x"] = 41, ["name"] = "mcl_stairs:stair_wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 29}, {["y"] = 7, ["x"] = 41, ["name"] = "mcl_stairs:stair_wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 45}, {["y"] = 7, ["x"] = 41, ["name"] = "mcl_stairs:stair_wood", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 61}, {["y"] = 7, ["x"] = 41, ["name"] = "mcl_stairs:stair_wood", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 77}, {["y"] = 7, ["x"] = 41, ["name"] = "mcl_stairs:stair_wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 93}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 42, ["name"] = "mcl_stairs:stair_wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 89}, {["y"] = 1, ["x"] = 42, ["name"] = "mcl_stairs:stair_wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 106}, {["y"] = 1, ["x"] = 42, ["name"] = "mcl_stairs:stair_wood", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 122}, {["y"] = 1, ["x"] = 42, ["name"] = "mcl_stairs:stair_wood", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 138}, {["y"] = 1, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 42, ["name"] = "mcl_core:tree", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 1, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 42, ["name"] = "mcl_core:tree", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 1, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 42, ["name"] = "mcl_core:tree", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 2, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 42, ["name"] = "mcl_core:tree", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 2, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 42, ["name"] = "mcl_books:bookshelf", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 42, ["name"] = "mcl_books:bookshelf", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 42, ["name"] = "mcl_books:bookshelf", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 42, ["name"] = "mcl_books:bookshelf", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 42, ["name"] = "mcl_books:bookshelf", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 42, ["name"] = "mcl_books:bookshelf", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 42, ["name"] = "mcl_books:bookshelf", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 42, ["name"] = "mcl_core:tree", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 3, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 42, ["name"] = "mcl_core:tree", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 3, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 42, ["name"] = "mcl_core:tree", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 42, ["name"] = "mcl_core:tree", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 42, ["name"] = "mcl_core:tree", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 4, ["x"] = 42, ["name"] = "mcl_core:tree", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 42, ["name"] = "mcl_core:tree", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 42, ["name"] = "mcl_core:tree", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 6, ["x"] = 42, ["name"] = "mcl_stairs:stair_wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 77}, {["y"] = 6, ["x"] = 42, ["name"] = "mcl_stairs:stair_wood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 61}, {["y"] = 6, ["x"] = 42, ["name"] = "mcl_stairs:stair_wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 45}, {["y"] = 6, ["x"] = 42, ["name"] = "mcl_stairs:stair_wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 29}, {["y"] = 6, ["x"] = 42, ["name"] = "mcl_stairs:stair_wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 29}, {["y"] = 6, ["x"] = 42, ["name"] = "mcl_stairs:stair_wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 45}, {["y"] = 6, ["x"] = 42, ["name"] = "mcl_stairs:stair_wood", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 61}, {["y"] = 6, ["x"] = 42, ["name"] = "mcl_stairs:stair_wood", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 77}, {["y"] = 6, ["x"] = 42, ["name"] = "mcl_stairs:stair_wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 93}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 43, ["name"] = "mcl_core:tree", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 1, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 43, ["name"] = "mcl_core:tree", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 2, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 43, ["name"] = "xpanes:pane_natural", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 124}, {["y"] = 2, ["x"] = 43, ["name"] = "xpanes:pane_natural", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 108}, {["y"] = 2, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 43, ["name"] = "xpanes:pane_natural", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 108}, {["y"] = 2, ["x"] = 43, ["name"] = "xpanes:pane_natural", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 124}, {["y"] = 2, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 43, ["name"] = "mcl_core:tree", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 2, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 43, ["name"] = "mcl_core:tree", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 3, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 43, ["name"] = "mcl_core:tree", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 3, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 43, ["name"] = "mcl_core:tree", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 4, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 43, ["name"] = "mcl_core:tree", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 4, ["x"] = 43, ["name"] = "mcl_core:tree", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 5, ["x"] = 43, ["name"] = "mcl_stairs:stair_wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 77}, {["y"] = 5, ["x"] = 43, ["name"] = "mcl_stairs:stair_wood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 61}, {["y"] = 5, ["x"] = 43, ["name"] = "mcl_stairs:stair_wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 45}, {["y"] = 5, ["x"] = 43, ["name"] = "mcl_stairs:stair_wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 29}, {["y"] = 5, ["x"] = 43, ["name"] = "mcl_stairs:stair_wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 29}, {["y"] = 5, ["x"] = 43, ["name"] = "mcl_stairs:stair_wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 45}, {["y"] = 5, ["x"] = 43, ["name"] = "mcl_stairs:stair_wood", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 61}, {["y"] = 5, ["x"] = 43, ["name"] = "mcl_stairs:stair_wood", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 77}, {["y"] = 5, ["x"] = 43, ["name"] = "mcl_stairs:stair_wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 93}, {["y"] = 4, ["x"] = 44, ["name"] = "mcl_stairs:stair_wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 77}, {["y"] = 4, ["x"] = 44, ["name"] = "mcl_stairs:stair_wood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 61}, {["y"] = 4, ["x"] = 44, ["name"] = "mcl_stairs:stair_wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 77}, {["y"] = 4, ["x"] = 44, ["name"] = "mcl_stairs:stair_wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 61}, {["y"] = 4, ["x"] = 44, ["name"] = "mcl_stairs:stair_wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 45}, {["y"] = 4, ["x"] = 44, ["name"] = "mcl_stairs:stair_wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 61}, {["y"] = 4, ["x"] = 44, ["name"] = "mcl_stairs:stair_wood", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 77}, {["y"] = 4, ["x"] = 44, ["name"] = "mcl_stairs:stair_wood", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 77}, {["y"] = 4, ["x"] = 44, ["name"] = "mcl_stairs:stair_wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 93}} diff --git a/mods/MAPGEN/mcl_structures/build/pnj_town_withway_1.we b/mods/MAPGEN/mcl_structures/build/pnj_town_withway_1.we index 1c6754a6..73eb4932 100644 --- a/mods/MAPGEN/mcl_structures/build/pnj_town_withway_1.we +++ b/mods/MAPGEN/mcl_structures/build/pnj_town_withway_1.we @@ -1 +1 @@ -return {{["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:tree", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:tree", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:tree", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:tree", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:tree", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:tree", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:tree", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_core:tree", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_farming:soil_wet", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_farming:soil_wet", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_core:water_source", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_farming:soil_wet", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_farming:soil_wet", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_core:tree", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 2, ["x"] = 2, ["name"] = "mcl_farming:wheat", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 2, ["name"] = "mcl_farming:wheat", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 2, ["name"] = "mcl_farming:wheat", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 2, ["name"] = "mcl_farming:wheat", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_core:tree", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_farming:soil_wet", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_farming:soil_wet", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_core:water_source", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_farming:soil_wet", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_farming:soil_wet", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_core:tree", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 2, ["x"] = 3, ["name"] = "mcl_farming:wheat", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 3, ["name"] = "mcl_farming:wheat", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 3, ["name"] = "mcl_farming:wheat", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 3, ["name"] = "mcl_farming:wheat", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_core:tree", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_farming:soil_wet", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_farming:soil_wet", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_core:water_source", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 240, ["param1"] = 15}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_farming:soil_wet", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_farming:soil_wet", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_core:tree", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 2, ["x"] = 4, ["name"] = "mcl_farming:wheat", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 4, ["name"] = "mcl_farming:wheat", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 4, ["name"] = "mcl_farming:wheat", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 4, ["name"] = "mcl_farming:wheat", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:tree", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_farming:soil_wet", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_farming:soil_wet", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:water_source", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_farming:soil_wet", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_farming:soil_wet", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:tree", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_farming:wheat", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_farming:wheat", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_farming:wheat", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_farming:wheat", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 6, ["name"] = "mcl_core:tree", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 6, ["name"] = "mcl_farming:soil_wet", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 6, ["name"] = "mcl_farming:soil_wet", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 6, ["name"] = "mcl_core:water_source", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 240, ["param1"] = 15}, {["y"] = 1, ["x"] = 6, ["name"] = "mcl_farming:soil_wet", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 6, ["name"] = "mcl_farming:soil_wet", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 6, ["name"] = "mcl_core:tree", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 2, ["x"] = 6, ["name"] = "mcl_farming:wheat", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 6, ["name"] = "mcl_farming:wheat", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 6, ["name"] = "mcl_farming:wheat", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 6, ["name"] = "mcl_farming:wheat", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 7, ["name"] = "mcl_core:tree", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 7, ["name"] = "mcl_farming:soil_wet", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 7, ["name"] = "mcl_farming:soil_wet", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 7, ["name"] = "mcl_core:water_source", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 7, ["name"] = "mcl_farming:soil_wet", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 7, ["name"] = "mcl_farming:soil_wet", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 7, ["name"] = "mcl_core:tree", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 2, ["x"] = 7, ["name"] = "mcl_farming:wheat", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 7, ["name"] = "mcl_farming:wheat", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 7, ["name"] = "mcl_farming:wheat", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 7, ["name"] = "mcl_farming:wheat", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:gravel", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:gravel", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:gravel", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 8, ["name"] = "mcl_core:tree", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 8, ["name"] = "mcl_farming:soil_wet", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 8, ["name"] = "mcl_farming:soil_wet", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 8, ["name"] = "mcl_core:water_source", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 8, ["name"] = "mcl_farming:soil_wet", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 8, ["name"] = "mcl_farming:soil_wet", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 8, ["name"] = "mcl_core:tree", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 2, ["x"] = 8, ["name"] = "mcl_farming:wheat", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 8, ["name"] = "mcl_farming:wheat", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 8, ["name"] = "mcl_farming:wheat", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 8, ["name"] = "mcl_farming:wheat", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:gravel", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:gravel", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:gravel", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 9, ["name"] = "mcl_core:tree", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 9, ["name"] = "mcl_core:tree", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 1, ["x"] = 9, ["name"] = "mcl_core:tree", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 9, ["name"] = "mcl_core:tree", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 1, ["x"] = 9, ["name"] = "mcl_core:tree", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 1, ["x"] = 9, ["name"] = "mcl_core:tree", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 1, ["x"] = 9, ["name"] = "mcl_core:tree", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:gravel", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:gravel", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:gravel", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:gravel", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:gravel", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:gravel", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:gravel", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:gravel", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:gravel", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:gravel", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:gravel", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:gravel", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:gravel", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:gravel", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:gravel", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:gravel", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:gravel", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:gravel", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:gravel", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "mcl_core:tree", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "mcl_core:tree", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "mcl_core:tree", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "mcl_core:tree", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "mcl_core:tree", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "mcl_core:tree", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "mcl_core:tree", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "mcl_core:tree", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "mcl_core:tree", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:gravel", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:gravel", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:gravel", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:gravel", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:gravel", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:gravel", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:gravel", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:gravel", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:gravel", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:gravel", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:gravel", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:gravel", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:gravel", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:gravel", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:gravel", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:gravel", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:gravel", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:gravel", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:gravel", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 11, ["name"] = "mcl_core:tree", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 11, ["name"] = "mcl_farming:soil_wet", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 11, ["name"] = "mcl_farming:soil_wet", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 11, ["name"] = "mcl_farming:soil_wet", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 11, ["name"] = "mcl_farming:soil_wet", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 11, ["name"] = "mcl_farming:soil_wet", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 29}, {["y"] = 1, ["x"] = 11, ["name"] = "mcl_farming:soil_wet", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 45}, {["y"] = 1, ["x"] = 11, ["name"] = "mcl_farming:soil_wet", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 1, ["x"] = 11, ["name"] = "mcl_core:tree", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 2, ["x"] = 11, ["name"] = "mcl_farming:wheat", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 11, ["name"] = "mcl_farming:wheat", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 11, ["name"] = "mcl_farming:wheat", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 11, ["name"] = "mcl_farming:wheat", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 31}, {["y"] = 2, ["x"] = 11, ["name"] = "mcl_farming:wheat", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 47}, {["y"] = 2, ["x"] = 11, ["name"] = "mcl_farming:wheat", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 63}, {["y"] = 2, ["x"] = 11, ["name"] = "mcl_farming:wheat", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 79}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:gravel", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:gravel", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:gravel", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:gravel", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:gravel", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:gravel", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:gravel", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:gravel", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:gravel", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:gravel", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:gravel", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:gravel", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:gravel", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:gravel", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:gravel", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:gravel", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:gravel", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:gravel", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:gravel", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 12, ["name"] = "mcl_core:tree", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 12, ["name"] = "mcl_farming:soil_wet", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 12, ["name"] = "mcl_farming:soil_wet", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 12, ["name"] = "mcl_farming:soil_wet", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 12, ["name"] = "mcl_farming:soil_wet", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 29}, {["y"] = 1, ["x"] = 12, ["name"] = "mcl_farming:soil_wet", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 45}, {["y"] = 1, ["x"] = 12, ["name"] = "mcl_farming:soil_wet", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 1, ["x"] = 12, ["name"] = "mcl_farming:soil_wet", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 1, ["x"] = 12, ["name"] = "mcl_core:tree", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 2, ["x"] = 12, ["name"] = "mcl_farming:wheat", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 12, ["name"] = "mcl_farming:wheat", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 12, ["name"] = "mcl_farming:wheat", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 31}, {["y"] = 2, ["x"] = 12, ["name"] = "mcl_farming:wheat_3", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 47}, {["y"] = 2, ["x"] = 12, ["name"] = "mcl_farming:wheat", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 63}, {["y"] = 2, ["x"] = 12, ["name"] = "mcl_farming:wheat", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 79}, {["y"] = 2, ["x"] = 12, ["name"] = "mcl_farming:wheat", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 95}, {["y"] = 4, ["x"] = 12, ["name"] = "mcl_torches:torch_wall", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 15}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:gravel", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:gravel", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:gravel", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:gravel", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:gravel", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:gravel", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 13, ["name"] = "mcl_core:tree", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 13, ["name"] = "mcl_core:water_source", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 13, ["name"] = "mcl_core:water_source", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 13, ["name"] = "mcl_core:water_source", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 29}, {["y"] = 1, ["x"] = 13, ["name"] = "mcl_core:water_source", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 240, ["param1"] = 47}, {["y"] = 1, ["x"] = 13, ["name"] = "mcl_core:water_source", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 1, ["x"] = 13, ["name"] = "mcl_core:water_source", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 1, ["x"] = 13, ["name"] = "mcl_core:water_source", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 1, ["x"] = 13, ["name"] = "mcl_core:tree", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 13, ["name"] = "mcl_fences:fence", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 2, ["x"] = 13, ["name"] = "mcl_fences:fence", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 3, ["x"] = 13, ["name"] = "mcl_fences:fence", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 189}, {["y"] = 4, ["x"] = 13, ["name"] = "mcl_torches:torch_wall", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 13, ["name"] = "mcl_wool:black", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 13, ["name"] = "mcl_torches:torch_wall", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 15}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:gravel", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:gravel", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:gravel", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:gravel", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:gravel", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:gravel", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_core:tree", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_farming:soil_wet", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_farming:soil_wet", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 29}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_farming:soil_wet", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 45}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_farming:soil_wet", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_farming:soil_wet", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_farming:soil_wet", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_farming:soil_wet", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_core:tree", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_farming:wheat", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 31}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_farming:wheat", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 47}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_farming:wheat", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 63}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_farming:wheat", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 79}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_farming:wheat", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 95}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_farming:wheat", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 111}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_farming:wheat", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 127}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 14, ["name"] = "xpanes:pane_natural", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 3, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 14, ["name"] = "xpanes:pane_natural", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 4, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 14, ["name"] = "xpanes:pane_natural", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 4, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 14, ["name"] = "mcl_torches:torch_wall", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 15}, {["y"] = 5, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 14, ["name"] = "xpanes:pane_natural", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 7, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 8, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 8, ["x"] = 14, ["name"] = "xpanes:pane_natural", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 8, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:gravel", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:gravel", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:gravel", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:gravel", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:gravel", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:gravel", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_core:tree", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_farming:soil_wet", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 29}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_farming:soil_wet", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 45}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_farming:soil_wet", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_farming:soil_wet", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_farming:soil_wet", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_farming:soil_wet", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_farming:soil_wet", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_core:tree", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 15, ["name"] = "mcl_farming:wheat", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 47}, {["y"] = 2, ["x"] = 15, ["name"] = "mcl_farming:wheat", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 63}, {["y"] = 2, ["x"] = 15, ["name"] = "mcl_farming:wheat", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 79}, {["y"] = 2, ["x"] = 15, ["name"] = "mcl_farming:wheat", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 95}, {["y"] = 2, ["x"] = 15, ["name"] = "mcl_farming:wheat", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 111}, {["y"] = 2, ["x"] = 15, ["name"] = "mcl_farming:wheat", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 127}, {["y"] = 2, ["x"] = 15, ["name"] = "mcl_farming:wheat_2", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 143}, {["y"] = 2, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 15, ["name"] = "mcl_core:ladder", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 138}, {["y"] = 2, ["x"] = 15, ["name"] = "stairs:stair_cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 121}, {["y"] = 2, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 15, ["name"] = "mcl_core:ladder", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 155}, {["y"] = 3, ["x"] = 15, ["name"] = "stairs:stair_cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 170}, {["y"] = 3, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 15, ["name"] = "mcl_core:ladder", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 171}, {["y"] = 4, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 15, ["name"] = "mcl_core:ladder", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 154}, {["y"] = 5, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 15, ["name"] = "mcl_core:ladder", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 138}, {["y"] = 6, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 15, ["name"] = "mcl_core:ladder", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 123}, {["y"] = 7, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 8, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 8, ["x"] = 15, ["name"] = "mcl_core:ladder", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 107}, {["y"] = 8, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 15, ["name"] = "mcl_core:ladder", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 92}, {["y"] = 9, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 15, ["name"] = "mcl_core:ladder", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 77}, {["y"] = 10, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:gravel", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:gravel", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:gravel", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:gravel", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:gravel", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:gravel", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:tree", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:tree", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:tree", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:tree", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:tree", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:tree", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:tree", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:tree", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:tree", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "stairs:stair_cobble", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 141}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 16, ["name"] = "mcl_doors:wooden_door_b_1", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 2, ["x"] = 16, ["name"] = "stairs:stair_cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 153}, {["y"] = 2, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 16, ["name"] = "mcl_doors:wooden_door_t_1", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 189}, {["y"] = 3, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 16, ["name"] = "mcl_torches:torch_wall", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 4, ["x"] = 16, ["name"] = "xpanes:pane_natural", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 189}, {["y"] = 5, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 16, ["name"] = "mcl_torches:torch_wall", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 16, ["name"] = "xpanes:pane_natural", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 7, ["x"] = 16, ["name"] = "xpanes:pane_natural", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 8, ["x"] = 16, ["name"] = "xpanes:pane_natural", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 8, ["x"] = 16, ["name"] = "xpanes:pane_natural", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 9, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:gravel", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:gravel", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:gravel", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:gravel", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:gravel", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:gravel", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 17, ["name"] = "stairs:stair_cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 121}, {["y"] = 2, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 17, ["name"] = "stairs:stair_cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 170}, {["y"] = 3, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 17, ["name"] = "mcl_torches:torch_wall", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 15}, {["y"] = 4, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 8, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 8, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:gravel", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:gravel", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:gravel", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:gravel", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:gravel", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:gravel", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_fences:fence", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 156}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_fences:fence", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:wood", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:wood", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:wood", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_fences:fence", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 189}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 18, ["name"] = "xpanes:pane_natural", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:wood", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 18, ["name"] = "xpanes:pane_natural", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:wood", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_torches:torch_wall", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_wool:black", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_torches:torch_wall", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 15}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 18, ["name"] = "xpanes:pane_natural", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 18, ["name"] = "xpanes:pane_natural", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:wood", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:wood", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:wood", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 18, ["name"] = "mcl_core:tree", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 5, ["x"] = 18, ["name"] = "mcl_core:tree", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 18, ["name"] = "mcl_core:tree", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 18, ["name"] = "mcl_core:tree", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 18, ["name"] = "mcl_core:tree", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 6, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 18, ["name"] = "xpanes:pane_natural", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 7, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 8, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 8, ["x"] = 18, ["name"] = "xpanes:pane_natural", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 8, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:gravel", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:gravel", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:gravel", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:gravel", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:gravel", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:gravel", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 19, ["name"] = "mcl_core:cobble", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 19, ["name"] = "mcl_core:dirt", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 19, ["name"] = "mcl_core:dirt", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 19, ["name"] = "mcl_core:dirt", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 19, ["name"] = "mcl_core:cobble", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 19, ["name"] = "mcl_core:wood", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 19, ["name"] = "mcl_core:wood", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 19, ["name"] = "mcl_core:wood", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 19, ["name"] = "mcl_core:wood", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 19, ["name"] = "mcl_torches:torch_wall", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 15}, {["y"] = 4, ["x"] = 19, ["name"] = "mcl_core:wood", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 19, ["name"] = "mcl_core:wood", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 19, ["name"] = "mcl_core:tree", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 5, ["x"] = 19, ["name"] = "mcl_core:wood", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 19, ["name"] = "mcl_core:wood", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 19, ["name"] = "mcl_core:wood", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 19, ["name"] = "mcl_core:tree", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:gravel", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:gravel", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:gravel", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:gravel", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:gravel", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:gravel", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_core:cobble", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_core:dirt", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_core:dirt", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_core:dirt", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_core:cobble", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "stairs:stair_cobble", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 141}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_core:cobble", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_core:cobble", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_core:cobble", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_core:cobble", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_core:cobble", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 20, ["name"] = "mcl_core:wood", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 20, ["name"] = "mcl_doors:wooden_door_b_1", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 173}, {["y"] = 2, ["x"] = 20, ["name"] = "mcl_core:cobble", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 20, ["name"] = "mcl_core:wood", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 20, ["name"] = "mcl_core:wood", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 20, ["name"] = "mcl_core:wood", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 20, ["name"] = "mcl_core:cobble", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 20, ["name"] = "xpanes:pane_natural", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 3, ["x"] = 20, ["name"] = "mcl_doors:wooden_door_t_1", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 189}, {["y"] = 3, ["x"] = 20, ["name"] = "mcl_core:cobble", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 20, ["name"] = "mcl_core:wood", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 20, ["name"] = "xpanes:pane_natural", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 3, ["x"] = 20, ["name"] = "mcl_core:wood", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 20, ["name"] = "mcl_core:cobble", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:wood", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_torches:torch_wall", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:wood", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:cobble", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:wood", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:wood", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:wood", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:cobble", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 20, ["name"] = "mcl_core:tree", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 5, ["x"] = 20, ["name"] = "mcl_core:wood", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 20, ["name"] = "mcl_core:wood", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 20, ["name"] = "mcl_core:wood", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 20, ["name"] = "mcl_core:tree", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 5, ["x"] = 20, ["name"] = "mcl_core:tree", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 20, ["name"] = "mcl_core:tree", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 20, ["name"] = "mcl_core:tree", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 20, ["name"] = "mcl_core:tree", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 20, ["name"] = "mcl_core:tree", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:gravel", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:gravel", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:gravel", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:gravel", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:gravel", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:gravel", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "mcl_core:cobble", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "mcl_core:dirt", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "mcl_core:dirt", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "mcl_core:dirt", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "mcl_core:cobble", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "mcl_core:cobble", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "mcl_core:dirt", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "mcl_core:dirt", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "mcl_core:dirt", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "mcl_core:cobble", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 21, ["name"] = "mcl_core:wood", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 21, ["name"] = "mcl_core:wood", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 21, ["name"] = "mcl_core:wood", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 21, ["name"] = "mcl_core:wood", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 21, ["name"] = "mcl_core:wood", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 21, ["name"] = "mcl_core:wood", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 21, ["name"] = "mcl_core:wood", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 21, ["name"] = "mcl_core:wood", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 21, ["name"] = "mcl_torches:torch_wall", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 15}, {["y"] = 4, ["x"] = 21, ["name"] = "mcl_core:wood", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 21, ["name"] = "mcl_core:wood", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 21, ["name"] = "mcl_core:wood", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 21, ["name"] = "mcl_core:wood", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 21, ["name"] = "mcl_core:tree", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 5, ["x"] = 21, ["name"] = "mcl_core:wood", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 21, ["name"] = "mcl_core:wood", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 21, ["name"] = "mcl_core:wood", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 21, ["name"] = "mcl_core:tree", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 5, ["x"] = 21, ["name"] = "mcl_core:tree", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 21, ["name"] = "mcl_core:wood", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 21, ["name"] = "mcl_core:wood", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 21, ["name"] = "mcl_core:wood", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 21, ["name"] = "mcl_core:tree", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:gravel", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:gravel", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:gravel", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:gravel", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:gravel", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:gravel", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "mcl_fences:fence", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 1, ["x"] = 22, ["name"] = "mcl_core:cobble", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "mcl_core:cobble", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "mcl_core:cobble", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "mcl_core:cobble", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "mcl_core:cobble", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "stairs:stair_cobble", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 141}, {["y"] = 1, ["x"] = 22, ["name"] = "mcl_core:cobble", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "mcl_core:dirt", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "mcl_core:dirt", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "mcl_core:dirt", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "mcl_core:cobble", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 22, ["name"] = "mcl_fences:fence", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 2, ["x"] = 22, ["name"] = "mcl_core:cobble", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 22, ["name"] = "mcl_core:wood", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 22, ["name"] = "mcl_core:wood", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 22, ["name"] = "mcl_core:wood", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 22, ["name"] = "mcl_core:cobble", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 22, ["name"] = "mcl_doors:wooden_door_b_1", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 2, ["x"] = 22, ["name"] = "mcl_core:wood", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 22, ["name"] = "mcl_fences:fence", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 189}, {["y"] = 3, ["x"] = 22, ["name"] = "mcl_core:cobble", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 22, ["name"] = "mcl_core:wood", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 22, ["name"] = "xpanes:pane_natural", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 3, ["x"] = 22, ["name"] = "mcl_core:wood", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 22, ["name"] = "mcl_core:cobble", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 22, ["name"] = "mcl_doors:wooden_door_t_1", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 189}, {["y"] = 3, ["x"] = 22, ["name"] = "xpanes:pane_natural", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 4, ["x"] = 22, ["name"] = "mcl_torches:torch_wall", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 22, ["name"] = "mcl_wool:black", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 22, ["name"] = "mcl_torches:torch_wall", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 15}, {["y"] = 4, ["x"] = 22, ["name"] = "mcl_core:cobble", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 22, ["name"] = "mcl_core:wood", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 22, ["name"] = "mcl_core:wood", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 22, ["name"] = "mcl_core:wood", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 22, ["name"] = "mcl_core:cobble", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 22, ["name"] = "mcl_core:wood", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 22, ["name"] = "mcl_torches:torch_wall", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 4, ["x"] = 22, ["name"] = "mcl_core:wood", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 22, ["name"] = "mcl_core:tree", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 22, ["name"] = "mcl_core:tree", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 22, ["name"] = "mcl_core:tree", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 22, ["name"] = "mcl_core:tree", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 22, ["name"] = "mcl_core:tree", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 5, ["x"] = 22, ["name"] = "mcl_core:tree", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 22, ["name"] = "mcl_core:wood", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 22, ["name"] = "mcl_core:wood", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 22, ["name"] = "mcl_core:wood", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 22, ["name"] = "mcl_core:tree", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:gravel", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:gravel", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:gravel", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:gravel", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:gravel", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:gravel", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 23, ["name"] = "mcl_core:cobble", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 23, ["name"] = "mcl_core:dirt", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 23, ["name"] = "mcl_core:dirt", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 23, ["name"] = "mcl_core:dirt", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 23, ["name"] = "mcl_core:cobble", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 23, ["name"] = "mcl_core:wood", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 23, ["name"] = "mcl_core:wood", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 23, ["name"] = "mcl_core:wood", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 23, ["name"] = "mcl_core:wood", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 23, ["name"] = "mcl_torches:torch_wall", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 15}, {["y"] = 4, ["x"] = 23, ["name"] = "mcl_core:wood", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 23, ["name"] = "mcl_core:wood", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 23, ["name"] = "mcl_core:tree", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 23, ["name"] = "mcl_core:wood", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 23, ["name"] = "mcl_core:wood", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 23, ["name"] = "mcl_core:wood", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 23, ["name"] = "mcl_core:tree", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:gravel", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:gravel", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:gravel", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:gravel", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:gravel", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:gravel", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 24, ["name"] = "mcl_core:wood", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 24, ["name"] = "mcl_core:wood", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 24, ["name"] = "mcl_core:wood", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 24, ["name"] = "mcl_core:wood", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 24, ["name"] = "xpanes:pane_natural", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 3, ["x"] = 24, ["name"] = "mcl_core:wood", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 24, ["name"] = "mcl_core:wood", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 24, ["name"] = "mcl_core:wood", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 24, ["name"] = "mcl_core:wood", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 24, ["name"] = "stairs:stair_wood", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 5, ["x"] = 24, ["name"] = "mcl_core:wood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 24, ["name"] = "mcl_core:tree", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 5, ["x"] = 24, ["name"] = "xpanes:pane_natural", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 5, ["x"] = 24, ["name"] = "mcl_core:tree", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 5, ["x"] = 24, ["name"] = "mcl_core:wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 24, ["name"] = "stairs:stair_wood", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 125}, {["y"] = 5, ["x"] = 24, ["name"] = "mcl_core:tree", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 24, ["name"] = "mcl_core:tree", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 24, ["name"] = "mcl_core:tree", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 24, ["name"] = "mcl_core:tree", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 24, ["name"] = "mcl_core:tree", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 24, ["name"] = "stairs:stair_wood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 6, ["x"] = 24, ["name"] = "mcl_core:wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 24, ["name"] = "mcl_core:wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 24, ["name"] = "mcl_core:wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 24, ["name"] = "stairs:stair_wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 125}, {["y"] = 7, ["x"] = 24, ["name"] = "stairs:stair_wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 7, ["x"] = 24, ["name"] = "mcl_core:wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 24, ["name"] = "stairs:stair_wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 125}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:gravel", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:gravel", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:gravel", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:gravel", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:gravel", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:gravel", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "mcl_core:sprucewood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "mcl_core:wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "mcl_core:sprucewood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "mcl_core:wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "mcl_core:sprucewood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 25, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 25, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 25, ["name"] = "mcl_core:tree", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 3, ["x"] = 25, ["name"] = "mcl_torches:torch_wall", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 3, ["x"] = 25, ["name"] = "mcl_core:tree", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 4, ["x"] = 25, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 25, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 25, ["name"] = "stairs:stair_wood", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 141}, {["y"] = 5, ["x"] = 25, ["name"] = "stairs:stair_wood", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 141}, {["y"] = 6, ["x"] = 25, ["name"] = "stairs:stair_wood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 141}, {["y"] = 6, ["x"] = 25, ["name"] = "stairs:stair_wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 141}, {["y"] = 7, ["x"] = 25, ["name"] = "stairs:stair_wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 141}, {["y"] = 7, ["x"] = 25, ["name"] = "mcl_core:wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 25, ["name"] = "stairs:stair_wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 141}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:gravel", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:gravel", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:gravel", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:gravel", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:gravel", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:gravel", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "mcl_core:wood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "mcl_core:sprucewood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "mcl_core:wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "mcl_core:sprucewood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "mcl_core:wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "mcl_core:tree", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "mcl_core:tree", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "mcl_core:tree", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "mcl_core:tree", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "mcl_core:tree", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "mcl_core:tree", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "mcl_core:tree", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "mcl_core:tree", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "mcl_core:tree", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 2, ["x"] = 26, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 26, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 26, ["name"] = "xpanes:pane_natural", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 3, ["x"] = 26, ["name"] = "xpanes:pane_natural", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 4, ["x"] = 26, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 26, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 26, ["name"] = "mcl_torches:torch_wall", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 15}, {["y"] = 5, ["x"] = 26, ["name"] = "stairs:stair_wood", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 5, ["x"] = 26, ["name"] = "stairs:stair_wood", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 125}, {["y"] = 6, ["x"] = 26, ["name"] = "stairs:stair_wood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 6, ["x"] = 26, ["name"] = "stairs:stair_wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 125}, {["y"] = 7, ["x"] = 26, ["name"] = "stairs:stair_wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 7, ["x"] = 26, ["name"] = "mcl_core:wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 26, ["name"] = "stairs:stair_wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 125}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:gravel", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:gravel", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:gravel", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:gravel", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:gravel", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:gravel", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "mcl_core:sprucewood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "mcl_core:wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "mcl_core:sprucewood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "mcl_core:wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "mcl_core:sprucewood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "mcl_core:tree", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "mcl_farming:soil_wet", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 1, ["x"] = 27, ["name"] = "mcl_farming:soil_wet", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 1, ["x"] = 27, ["name"] = "mcl_farming:soil_wet", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 1, ["x"] = 27, ["name"] = "mcl_farming:soil_wet", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 45}, {["y"] = 1, ["x"] = 27, ["name"] = "mcl_farming:soil_wet", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 1, ["x"] = 27, ["name"] = "mcl_farming:soil_wet", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 45}, {["y"] = 1, ["x"] = 27, ["name"] = "mcl_farming:soil_wet", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 29}, {["y"] = 1, ["x"] = 27, ["name"] = "mcl_core:tree", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "mcl_core:tree", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "mcl_core:tree", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "mcl_core:tree", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "mcl_core:tree", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "mcl_core:tree", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "mcl_core:tree", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "mcl_core:tree", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "mcl_fences:fence", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 2, ["x"] = 27, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 27, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 27, ["name"] = "mcl_farming:wheat", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 111}, {["y"] = 2, ["x"] = 27, ["name"] = "mcl_farming:wheat", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 95}, {["y"] = 2, ["x"] = 27, ["name"] = "mcl_farming:wheat", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 79}, {["y"] = 2, ["x"] = 27, ["name"] = "mcl_farming:wheat", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 63}, {["y"] = 2, ["x"] = 27, ["name"] = "mcl_farming:wheat", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 79}, {["y"] = 2, ["x"] = 27, ["name"] = "mcl_farming:wheat", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 63}, {["y"] = 2, ["x"] = 27, ["name"] = "mcl_farming:wheat", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 47}, {["y"] = 2, ["x"] = 27, ["name"] = "mcl_fences:fence", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 3, ["x"] = 27, ["name"] = "xpanes:pane_natural", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 141}, {["y"] = 3, ["x"] = 27, ["name"] = "xpanes:pane_natural", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 141}, {["y"] = 3, ["x"] = 27, ["name"] = "mcl_fences:fence", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 189}, {["y"] = 4, ["x"] = 27, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 27, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 27, ["name"] = "mcl_torches:torch_wall", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 27, ["name"] = "mcl_wool:black", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 27, ["name"] = "mcl_torches:torch_wall", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 15}, {["y"] = 5, ["x"] = 27, ["name"] = "stairs:stair_wood", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 5, ["x"] = 27, ["name"] = "stairs:stair_wood", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 109}, {["y"] = 6, ["x"] = 27, ["name"] = "stairs:stair_wood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 6, ["x"] = 27, ["name"] = "stairs:stair_wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 109}, {["y"] = 7, ["x"] = 27, ["name"] = "stairs:stair_wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 7, ["x"] = 27, ["name"] = "mcl_core:wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 27, ["name"] = "stairs:stair_wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 109}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:gravel", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:gravel", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:gravel", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:gravel", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:gravel", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:gravel", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:sprucewood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:sprucewood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:tree", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_farming:soil_wet", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_farming:soil_wet", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_farming:soil_wet", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 45}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_farming:soil_wet", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_farming:soil_wet", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_farming:soil_wet", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_farming:soil_wet", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 45}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:tree", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:tree", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_farming:soil_wet", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_farming:soil_wet", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:water_source", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_farming:soil_wet", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_farming:soil_wet", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:tree", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_core:tree", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_core:tree", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_core:tree", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_farming:wheat", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 95}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_farming:wheat", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 79}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_farming:wheat", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 63}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_farming:wheat", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 79}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_farming:wheat", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 95}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_farming:wheat", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 79}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_farming:wheat", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 63}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_farming:wheat", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 79}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_farming:wheat", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 95}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_farming:wheat", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 127}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_farming:wheat", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 143}, {["y"] = 3, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 28, ["name"] = "xpanes:pane_natural", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 141}, {["y"] = 3, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 28, ["name"] = "xpanes:pane_natural", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 141}, {["y"] = 3, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 28, ["name"] = "mcl_core:tree", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 3, ["x"] = 28, ["name"] = "mcl_core:tree", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 3, ["x"] = 28, ["name"] = "mcl_core:tree", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 3, ["x"] = 28, ["name"] = "mcl_core:tree", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 3, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 28, ["name"] = "xpanes:pane_natural", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 156}, {["y"] = 3, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 28, ["name"] = "mcl_core:tree", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 4, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 28, ["name"] = "mcl_core:tree", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 28, ["name"] = "mcl_core:tree", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 4, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 28, ["name"] = "mcl_core:tree", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 4, ["x"] = 28, ["name"] = "mcl_torches:torch_wall", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 15}, {["y"] = 5, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 28, ["name"] = "stairs:stair_wood", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 5, ["x"] = 28, ["name"] = "stairs:stair_wood", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 93}, {["y"] = 5, ["x"] = 28, ["name"] = "mcl_core:tree", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 5, ["x"] = 28, ["name"] = "mcl_core:tree", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 5, ["x"] = 28, ["name"] = "mcl_core:tree", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 6, ["x"] = 28, ["name"] = "stairs:slab_stone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 6, ["x"] = 28, ["name"] = "stairs:slab_stone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 6, ["x"] = 28, ["name"] = "stairs:slab_stone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 6, ["x"] = 28, ["name"] = "stairs:slab_stone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 6, ["x"] = 28, ["name"] = "stairs:slab_stone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 45}, {["y"] = 6, ["x"] = 28, ["name"] = "stairs:slab_stone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 6, ["x"] = 28, ["name"] = "stairs:slab_stone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 45}, {["y"] = 6, ["x"] = 28, ["name"] = "stairs:slab_stone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 6, ["x"] = 28, ["name"] = "stairs:slab_stone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 45}, {["y"] = 6, ["x"] = 28, ["name"] = "stairs:slab_stone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 6, ["x"] = 28, ["name"] = "stairs:stair_wood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 6, ["x"] = 28, ["name"] = "stairs:stair_wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 93}, {["y"] = 7, ["x"] = 28, ["name"] = "stairs:stair_wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 7, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 28, ["name"] = "stairs:stair_wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 93}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:gravel", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:gravel", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:gravel", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:gravel", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:gravel", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:gravel", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:sprucewood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:sprucewood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:sprucewood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:tree", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:water_source", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:water_source", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 240, ["param1"] = 45}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:water_source", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:water_source", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 240, ["param1"] = 77}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:water_source", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:water_source", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 240, ["param1"] = 77}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:water_source", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:tree", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:tree", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_farming:soil_wet", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 45}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_farming:soil_wet", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:water_source", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_farming:soil_wet", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_farming:soil_wet", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:tree", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 2, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 29, ["name"] = "mcl_core:water_source", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 29, ["name"] = "mcl_core:water_source", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 29, ["name"] = "stairs:stair_wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 139}, {["y"] = 2, ["x"] = 29, ["name"] = "mcl_core:wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 29, ["name"] = "mcl_core:wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 29, ["name"] = "mcl_core:wood", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 29, ["name"] = "mcl_core:wood", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 29, ["name"] = "mcl_farming:wheat", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 63}, {["y"] = 2, ["x"] = 29, ["name"] = "mcl_farming:wheat", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 79}, {["y"] = 2, ["x"] = 29, ["name"] = "mcl_farming:wheat", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 111}, {["y"] = 2, ["x"] = 29, ["name"] = "mcl_farming:wheat", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 127}, {["y"] = 3, ["x"] = 29, ["name"] = "xpanes:pane_iron_5", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 205}, {["y"] = 3, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 29, ["name"] = "mcl_core:wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 29, ["name"] = "mcl_core:wood", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 29, ["name"] = "mcl_core:wood", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 29, ["name"] = "mcl_core:wood", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 29, ["name"] = "xpanes:pane_iron_5", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 189}, {["y"] = 4, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 29, ["name"] = "mcl_core:wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 29, ["name"] = "mcl_core:wood", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 29, ["name"] = "mcl_core:wood", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 29, ["name"] = "stairs:stair_wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 141}, {["y"] = 5, ["x"] = 29, ["name"] = "stairs:stair_wood", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 157}, {["y"] = 5, ["x"] = 29, ["name"] = "mcl_core:wood", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 29, ["name"] = "mcl_core:wood", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 29, ["name"] = "mcl_core:tree", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 5, ["x"] = 29, ["name"] = "mcl_core:tree", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 6, ["x"] = 29, ["name"] = "stairs:slab_stone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 6, ["x"] = 29, ["name"] = "stairs:slab_stone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 6, ["x"] = 29, ["name"] = "stairs:stair_wood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 141}, {["y"] = 6, ["x"] = 29, ["name"] = "stairs:stair_wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 109}, {["y"] = 6, ["x"] = 29, ["name"] = "mcl_core:tree", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 6, ["x"] = 29, ["name"] = "mcl_core:tree", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 6, ["x"] = 29, ["name"] = "mcl_core:tree", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 7, ["x"] = 29, ["name"] = "stairs:stair_wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 7, ["x"] = 29, ["name"] = "mcl_core:wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 29, ["name"] = "stairs:stair_wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 77}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:gravel", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:gravel", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:gravel", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:gravel", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:gravel", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:gravel", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_core:wood", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_core:sprucewood", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_core:wood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_core:sprucewood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_core:wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_core:sprucewood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_core:wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 30, ["name"] = "stairs:stair_cobble", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 141}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_core:tree", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_farming:soil_wet", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_farming:soil_wet", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_farming:soil_wet", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_farming:soil_wet", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_farming:soil_wet", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_farming:soil_wet", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_farming:soil_wet", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_core:tree", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_core:tree", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_farming:soil_wet", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 45}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_farming:soil_wet", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_core:water_source", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_farming:soil_wet", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_farming:soil_wet", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_core:tree", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 2, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 30, ["name"] = "mcl_fences:fence", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 154}, {["y"] = 2, ["x"] = 30, ["name"] = "stairs:stair_wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 139}, {["y"] = 2, ["x"] = 30, ["name"] = "mcl_core:wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 30, ["name"] = "mcl_core:wood", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 30, ["name"] = "mcl_doors:wooden_door_b_1", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 173}, {["y"] = 2, ["x"] = 30, ["name"] = "mcl_farming:wheat", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 95}, {["y"] = 2, ["x"] = 30, ["name"] = "mcl_farming:wheat", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 79}, {["y"] = 2, ["x"] = 30, ["name"] = "mcl_farming:wheat", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 95}, {["y"] = 2, ["x"] = 30, ["name"] = "mcl_farming:wheat", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 111}, {["y"] = 2, ["x"] = 30, ["name"] = "mcl_farming:wheat", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 127}, {["y"] = 2, ["x"] = 30, ["name"] = "mcl_farming:wheat", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 111}, {["y"] = 2, ["x"] = 30, ["name"] = "mcl_farming:wheat", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 95}, {["y"] = 2, ["x"] = 30, ["name"] = "mcl_farming:wheat", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 63}, {["y"] = 2, ["x"] = 30, ["name"] = "mcl_farming:wheat", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 79}, {["y"] = 2, ["x"] = 30, ["name"] = "mcl_farming:wheat", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 111}, {["y"] = 2, ["x"] = 30, ["name"] = "mcl_farming:wheat", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 127}, {["y"] = 3, ["x"] = 30, ["name"] = "xpanes:pane_iron_4", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 189}, {["y"] = 3, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 30, ["name"] = "mesecons_pressureplates:pressure_plate_wood_off", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 171}, {["y"] = 3, ["x"] = 30, ["name"] = "xpanes:pane_natural", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 141}, {["y"] = 3, ["x"] = 30, ["name"] = "mcl_core:tree", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 30, ["name"] = "mcl_torches:torch_wall", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 3, ["x"] = 30, ["name"] = "mcl_core:tree", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 3, ["x"] = 30, ["name"] = "mcl_core:wood", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 30, ["name"] = "mcl_doors:wooden_door_t_1", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 189}, {["y"] = 4, ["x"] = 30, ["name"] = "xpanes:pane_iron_4", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 4, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 30, ["name"] = "mcl_core:wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 30, ["name"] = "mcl_core:wood", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 30, ["name"] = "mcl_torches:torch_wall", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 30, ["name"] = "mcl_core:wood", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 30, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 30, ["name"] = "mcl_core:wood", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 30, ["name"] = "mcl_core:tree", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 5, ["x"] = 30, ["name"] = "mcl_core:tree", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 6, ["x"] = 30, ["name"] = "stairs:slab_stone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 6, ["x"] = 30, ["name"] = "stairs:slab_stone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 6, ["x"] = 30, ["name"] = "stairs:stair_wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 141}, {["y"] = 6, ["x"] = 30, ["name"] = "stairs:stair_wood", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 157}, {["y"] = 6, ["x"] = 30, ["name"] = "stairs:stair_wood", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 173}, {["y"] = 6, ["x"] = 30, ["name"] = "mcl_core:wood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 30, ["name"] = "mcl_core:wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 30, ["name"] = "stairs:stair_wood", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 77}, {["y"] = 6, ["x"] = 30, ["name"] = "mcl_core:tree", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 6, ["x"] = 30, ["name"] = "mcl_core:tree", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 6, ["x"] = 30, ["name"] = "mcl_core:tree", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 7, ["x"] = 30, ["name"] = "stairs:stair_wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 7, ["x"] = 30, ["name"] = "mcl_core:wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 30, ["name"] = "stairs:stair_wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 93}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:gravel", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:gravel", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:gravel", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:gravel", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:gravel", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:gravel", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:sprucewood", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:sprucewood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:sprucewood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:sprucewood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_farming:soil_wet", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_farming:soil_wet", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_farming:soil_wet", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_farming:soil_wet", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_farming:soil_wet", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_farming:soil_wet", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_farming:soil_wet", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_farming:soil_wet", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_farming:soil_wet", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:water_source", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_farming:soil_wet", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_farming:soil_wet", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_farming:wheat", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 79}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_farming:wheat", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 95}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_farming:wheat", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 111}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_farming:wheat", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 127}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_farming:wheat", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 143}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_farming:wheat", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 127}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_farming:wheat", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 111}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_farming:wheat", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 79}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_farming:wheat", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 95}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_farming:wheat", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 127}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_farming:wheat", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 143}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 31, ["name"] = "xpanes:pane_natural", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 3, ["x"] = 31, ["name"] = "xpanes:pane_natural", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 3, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 3, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 31, ["name"] = "xpanes:pane_natural", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 3, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 3, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 31, ["name"] = "xpanes:pane_natural", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 3, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 31, ["name"] = "mcl_torches:torch_wall", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 4, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 4, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 4, ["x"] = 31, ["name"] = "mcl_torches:torch_wall", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 15}, {["y"] = 4, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 5, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 5, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 5, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 31, ["name"] = "stairs:slab_stone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 6, ["x"] = 31, ["name"] = "stairs:slab_stone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 6, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 31, ["name"] = "stairs:stair_wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 109}, {["y"] = 7, ["x"] = 31, ["name"] = "stairs:stair_wood", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 125}, {["y"] = 7, ["x"] = 31, ["name"] = "stairs:stair_wood", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 141}, {["y"] = 7, ["x"] = 31, ["name"] = "stairs:stair_wood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 125}, {["y"] = 7, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 31, ["name"] = "stairs:stair_wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 125}, {["y"] = 7, ["x"] = 31, ["name"] = "stairs:stair_wood", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 109}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:gravel", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:gravel", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:gravel", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:gravel", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:gravel", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:gravel", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:wood", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:sprucewood", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:wood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:sprucewood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:sprucewood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:tree", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:tree", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:tree", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:tree", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:tree", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:tree", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:tree", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:tree", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:tree", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:tree", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_farming:soil_wet", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_farming:soil_wet", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:water_source", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_farming:soil_wet", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_farming:soil_wet", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 141}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:tree", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_fences:fence", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 1, ["x"] = 32, ["name"] = "stairs:stair_cobble", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 141}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 32, ["name"] = "mcl_core:wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 32, ["name"] = "mcl_core:wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 32, ["name"] = "mcl_farming:wheat", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 95}, {["y"] = 2, ["x"] = 32, ["name"] = "mcl_farming:wheat", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 111}, {["y"] = 2, ["x"] = 32, ["name"] = "mcl_farming:wheat", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 143}, {["y"] = 2, ["x"] = 32, ["name"] = "mcl_farming:wheat", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 159}, {["y"] = 2, ["x"] = 32, ["name"] = "mcl_fences:fence", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 2, ["x"] = 32, ["name"] = "mcl_doors:wooden_door_b_1", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 2, ["x"] = 32, ["name"] = "mcl_core:wood", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 32, ["name"] = "mcl_core:wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 32, ["name"] = "xpanes:pane_natural", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 141}, {["y"] = 3, ["x"] = 32, ["name"] = "xpanes:pane_natural", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 3, ["x"] = 32, ["name"] = "xpanes:pane_natural", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 189}, {["y"] = 3, ["x"] = 32, ["name"] = "mcl_fences:fence", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 189}, {["y"] = 3, ["x"] = 32, ["name"] = "mcl_doors:wooden_door_t_1", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 189}, {["y"] = 3, ["x"] = 32, ["name"] = "mcl_core:wood", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 32, ["name"] = "mcl_core:wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 32, ["name"] = "mcl_core:wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 32, ["name"] = "mcl_torches:torch_wall", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 32, ["name"] = "mcl_wool:black", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 32, ["name"] = "mcl_torches:torch_wall", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 15}, {["y"] = 4, ["x"] = 32, ["name"] = "mcl_core:wood", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 32, ["name"] = "mcl_torches:torch_wall", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 4, ["x"] = 32, ["name"] = "mcl_core:wood", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 32, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 32, ["name"] = "mcl_core:wood", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 32, ["name"] = "mcl_core:tree", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 5, ["x"] = 32, ["name"] = "mcl_core:tree", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 6, ["x"] = 32, ["name"] = "stairs:slab_stone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 6, ["x"] = 32, ["name"] = "stairs:slab_stone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 6, ["x"] = 32, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 32, ["name"] = "mcl_core:wood", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 32, ["name"] = "mcl_core:tree", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 6, ["x"] = 32, ["name"] = "mcl_core:tree", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 6, ["x"] = 32, ["name"] = "mcl_core:tree", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 32, ["name"] = "stairs:stair_wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 93}, {["y"] = 7, ["x"] = 32, ["name"] = "stairs:stair_wood", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 109}, {["y"] = 7, ["x"] = 32, ["name"] = "stairs:stair_wood", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 125}, {["y"] = 7, ["x"] = 32, ["name"] = "stairs:stair_wood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 109}, {["y"] = 7, ["x"] = 32, ["name"] = "stairs:stair_wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 93}, {["y"] = 7, ["x"] = 32, ["name"] = "stairs:stair_wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 109}, {["y"] = 7, ["x"] = 32, ["name"] = "stairs:stair_wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 125}, {["y"] = 7, ["x"] = 32, ["name"] = "stairs:stair_wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 141}, {["y"] = 7, ["x"] = 32, ["name"] = "stairs:stair_wood", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 125}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:gravel", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:gravel", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:gravel", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:gravel", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:gravel", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:gravel", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_core:sprucewood", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_core:wood", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_core:sprucewood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_core:wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_core:sprucewood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_core:wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_core:sprucewood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_core:tree", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_farming:soil_wet", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_farming:soil_wet", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_core:water_source", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_farming:soil_wet", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_farming:soil_wet", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_core:tree", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 33, ["name"] = "mcl_core:wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 33, ["name"] = "mcl_farming:wheat", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 79}, {["y"] = 2, ["x"] = 33, ["name"] = "mcl_farming:wheat", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 95}, {["y"] = 2, ["x"] = 33, ["name"] = "mcl_farming:wheat", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 127}, {["y"] = 2, ["x"] = 33, ["name"] = "mcl_farming:wheat", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 143}, {["y"] = 2, ["x"] = 33, ["name"] = "mcl_core:wood", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 33, ["name"] = "mcl_core:wood", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 33, ["name"] = "mcl_core:wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 33, ["name"] = "mcl_core:tree", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 33, ["name"] = "mcl_torches:torch_wall", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 3, ["x"] = 33, ["name"] = "mcl_core:tree", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 3, ["x"] = 33, ["name"] = "mcl_core:wood", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 33, ["name"] = "mcl_core:wood", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 33, ["name"] = "mcl_core:wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 33, ["name"] = "mcl_core:wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 33, ["name"] = "mcl_torches:torch_wall", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 15}, {["y"] = 4, ["x"] = 33, ["name"] = "mcl_core:wood", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 33, ["name"] = "mcl_core:wood", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 33, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 33, ["name"] = "mcl_core:wood", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 33, ["name"] = "mcl_core:tree", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 5, ["x"] = 33, ["name"] = "mcl_core:tree", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 6, ["x"] = 33, ["name"] = "stairs:slab_stone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 6, ["x"] = 33, ["name"] = "stairs:slab_stone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 6, ["x"] = 33, ["name"] = "stairs:stair_wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 93}, {["y"] = 6, ["x"] = 33, ["name"] = "stairs:stair_wood", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 109}, {["y"] = 6, ["x"] = 33, ["name"] = "stairs:stair_wood", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 125}, {["y"] = 6, ["x"] = 33, ["name"] = "stairs:stair_wood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 109}, {["y"] = 6, ["x"] = 33, ["name"] = "stairs:stair_wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 125}, {["y"] = 6, ["x"] = 33, ["name"] = "stairs:stair_wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 141}, {["y"] = 6, ["x"] = 33, ["name"] = "stairs:stair_wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 157}, {["y"] = 6, ["x"] = 33, ["name"] = "stairs:stair_wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 173}, {["y"] = 6, ["x"] = 33, ["name"] = "stairs:stair_wood", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 157}, {["y"] = 6, ["x"] = 33, ["name"] = "mcl_core:tree", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 33, ["name"] = "mcl_core:tree", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 33, ["name"] = "mcl_core:tree", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:gravel", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:gravel", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:gravel", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:gravel", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:gravel", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:gravel", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:gravel", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:gravel", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:gravel", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:gravel", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:gravel", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:tree", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_farming:soil_wet", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_farming:soil_wet", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:water_source", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_farming:soil_wet", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_farming:soil_wet", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:tree", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_fences:fence", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_fences:fence", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_core:tree", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_core:tree", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_doors:wooden_door_b_1", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 140}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_farming:wheat", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 95}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_farming:wheat", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 79}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_farming:wheat", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 111}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_farming:wheat", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 127}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_core:tree", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_core:tree", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_fences:fence", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_fences:fence", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_core:tree", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_core:tree", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_doors:wooden_door_t_1", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 156}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_core:tree", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 3, ["x"] = 34, ["name"] = "xpanes:pane_natural", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 172}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_core:tree", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_core:tree", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 34, ["name"] = "xpanes:pane_natural", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_core:tree", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 4, ["x"] = 34, ["name"] = "mcl_fences:fence", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 4, ["x"] = 34, ["name"] = "mcl_fences:fence", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 4, ["x"] = 34, ["name"] = "mcl_core:tree", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 4, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 34, ["name"] = "mcl_core:tree", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 4, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 34, ["name"] = "mcl_torches:torch_wall", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 15}, {["y"] = 4, ["x"] = 34, ["name"] = "mcl_core:tree", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 34, ["name"] = "mcl_core:tree", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 5, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 34, ["name"] = "stairs:stair_wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 125}, {["y"] = 5, ["x"] = 34, ["name"] = "stairs:stair_wood", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 141}, {["y"] = 5, ["x"] = 34, ["name"] = "stairs:stair_wood", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 157}, {["y"] = 5, ["x"] = 34, ["name"] = "stairs:stair_wood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 141}, {["y"] = 5, ["x"] = 34, ["name"] = "stairs:stair_wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 125}, {["y"] = 5, ["x"] = 34, ["name"] = "stairs:stair_wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 141}, {["y"] = 5, ["x"] = 34, ["name"] = "stairs:stair_wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 157}, {["y"] = 5, ["x"] = 34, ["name"] = "stairs:stair_wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 173}, {["y"] = 5, ["x"] = 34, ["name"] = "stairs:stair_wood", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 157}, {["y"] = 5, ["x"] = 34, ["name"] = "mcl_core:tree", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 5, ["x"] = 34, ["name"] = "mcl_core:tree", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 5, ["x"] = 34, ["name"] = "mcl_core:tree", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 6, ["x"] = 34, ["name"] = "stairs:slab_stone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 45}, {["y"] = 6, ["x"] = 34, ["name"] = "stairs:slab_stone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 6, ["x"] = 34, ["name"] = "stairs:slab_stone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 6, ["x"] = 34, ["name"] = "stairs:slab_stone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 45}, {["y"] = 6, ["x"] = 34, ["name"] = "stairs:slab_stone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 6, ["x"] = 34, ["name"] = "stairs:slab_stone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 6, ["x"] = 34, ["name"] = "stairs:slab_stone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 6, ["x"] = 34, ["name"] = "stairs:slab_stone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 45}, {["y"] = 6, ["x"] = 34, ["name"] = "stairs:slab_stone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 6, ["x"] = 34, ["name"] = "stairs:slab_stone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:gravel", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:gravel", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:gravel", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:gravel", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:gravel", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:gravel", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:gravel", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:gravel", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:gravel", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:gravel", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:gravel", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:gravel", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:gravel", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:gravel", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:gravel", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:gravel", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:gravel", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:gravel", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:gravel", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:gravel", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:gravel", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:gravel", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:gravel", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:gravel", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:gravel", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:gravel", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:cobble", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:cobble", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:dirt", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:gravel", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:gravel", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:gravel", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 35, ["name"] = "stairs:stair_cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 141}, {["y"] = 1, ["x"] = 35, ["name"] = "mcl_core:gravel", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 35, ["name"] = "mcl_core:cobble", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 35, ["name"] = "mcl_core:cobble", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 35, ["name"] = "mcl_core:cobble", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 35, ["name"] = "mcl_core:cobble", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 35, ["name"] = "mcl_core:gravel", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 35, ["name"] = "mcl_fences:fence", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 1, ["x"] = 35, ["name"] = "mcl_core:tree", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 35, ["name"] = "mcl_core:tree", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 35, ["name"] = "mcl_core:tree", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 35, ["name"] = "mcl_core:tree", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 35, ["name"] = "mcl_core:tree", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 35, ["name"] = "mcl_core:tree", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 35, ["name"] = "mcl_core:tree", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 2, ["x"] = 35, ["name"] = "mcl_core:cobble", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 35, ["name"] = "mcl_core:cobble", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 35, ["name"] = "mcl_core:cobble", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 35, ["name"] = "mcl_core:cobble", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 35, ["name"] = "mcl_fences:fence", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 3, ["x"] = 35, ["name"] = "mcl_fences:fence", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 3, ["x"] = 35, ["name"] = "mcl_fences:fence", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 3, ["x"] = 35, ["name"] = "mcl_fences:fence", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 189}, {["y"] = 4, ["x"] = 35, ["name"] = "stairs:stair_wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 157}, {["y"] = 4, ["x"] = 35, ["name"] = "stairs:stair_wood", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 173}, {["y"] = 4, ["x"] = 35, ["name"] = "stairs:stair_wood", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 189}, {["y"] = 4, ["x"] = 35, ["name"] = "stairs:stair_wood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 173}, {["y"] = 4, ["x"] = 35, ["name"] = "stairs:stair_wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 157}, {["y"] = 4, ["x"] = 35, ["name"] = "stairs:stair_wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 141}, {["y"] = 4, ["x"] = 35, ["name"] = "stairs:stair_wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 125}, {["y"] = 4, ["x"] = 35, ["name"] = "stairs:stair_wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 141}, {["y"] = 4, ["x"] = 35, ["name"] = "stairs:stair_wood", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 141}, {["y"] = 4, ["x"] = 35, ["name"] = "mcl_fences:fence", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 4, ["x"] = 35, ["name"] = "mcl_fences:fence", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 141}, {["y"] = 4, ["x"] = 35, ["name"] = "mcl_torches:torch_wall", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 35, ["name"] = "mcl_wool:black", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 35, ["name"] = "mcl_torches:torch_wall", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 15}, {["y"] = 5, ["x"] = 35, ["name"] = "mcl_core:cobble", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 35, ["name"] = "mcl_core:cobble", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 35, ["name"] = "mcl_core:cobble", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 35, ["name"] = "mcl_core:cobble", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:cobble", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:water_source", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 57}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:water_source", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 41}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:cobble", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 36, ["name"] = "mcl_core:cobble", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 36, ["name"] = "mcl_core:cobble", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 36, ["name"] = "mcl_core:cobble", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 36, ["name"] = "mcl_core:cobble", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 36, ["name"] = "mcl_torches:torch_wall", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 15}, {["y"] = 5, ["x"] = 36, ["name"] = "mcl_core:cobble", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 36, ["name"] = "mcl_core:cobble", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 36, ["name"] = "mcl_core:cobble", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 36, ["name"] = "mcl_core:cobble", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:cobble", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:water_source", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 73}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:water_source", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 57}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:cobble", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 37, ["name"] = "stairs:stair_cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 141}, {["y"] = 1, ["x"] = 37, ["name"] = "stairs:stair_cobble", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 125}, {["y"] = 1, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 37, ["name"] = "mcl_core:cobble", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 37, ["name"] = "mcl_core:cobble", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 37, ["name"] = "mcl_core:cobble", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 37, ["name"] = "mcl_core:cobble", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 37, ["name"] = "mcl_torches:torch_wall", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 15}, {["y"] = 4, ["x"] = 37, ["name"] = "mcl_torches:torch_wall", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 15}, {["y"] = 5, ["x"] = 37, ["name"] = "stairs:stair_wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 125}, {["y"] = 5, ["x"] = 37, ["name"] = "stairs:stair_wood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 141}, {["y"] = 5, ["x"] = 37, ["name"] = "stairs:stair_wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 125}, {["y"] = 5, ["x"] = 37, ["name"] = "stairs:stair_wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 109}, {["y"] = 5, ["x"] = 37, ["name"] = "stairs:stair_wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 125}, {["y"] = 5, ["x"] = 37, ["name"] = "stairs:stair_wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 141}, {["y"] = 5, ["x"] = 37, ["name"] = "stairs:stair_wood", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 157}, {["y"] = 5, ["x"] = 37, ["name"] = "stairs:stair_wood", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 157}, {["y"] = 5, ["x"] = 37, ["name"] = "stairs:stair_wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 173}, {["y"] = 5, ["x"] = 37, ["name"] = "mcl_core:cobble", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 37, ["name"] = "mcl_core:cobble", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 37, ["name"] = "mcl_core:cobble", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 37, ["name"] = "mcl_core:cobble", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:gravel", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:gravel", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:gravel", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:gravel", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:gravel", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:gravel", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:gravel", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:gravel", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:gravel", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:gravel", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:gravel", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:gravel", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:gravel", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:gravel", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:gravel", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:gravel", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:gravel", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:gravel", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:gravel", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:gravel", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:gravel", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_fences:fence", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_fences:fence", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_core:gravel", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_core:gravel", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 38, ["name"] = "stairs:stair_cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 141}, {["y"] = 2, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 38, ["name"] = "mcl_doors:wooden_door_b_1", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 172}, {["y"] = 2, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 38, ["name"] = "mcl_fences:fence", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 2, ["x"] = 38, ["name"] = "mcl_core:tree", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 2, ["x"] = 38, ["name"] = "mcl_doors:wooden_door_b_1", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 125}, {["y"] = 2, ["x"] = 38, ["name"] = "mcl_core:wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 38, ["name"] = "mcl_core:tree", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 2, ["x"] = 38, ["name"] = "mcl_fences:fence", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 2, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 38, ["name"] = "mcl_doors:wooden_door_t_1", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 188}, {["y"] = 3, ["x"] = 38, ["name"] = "mcl_core:wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 38, ["name"] = "mcl_core:wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 38, ["name"] = "xpanes:pane_natural", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 140}, {["y"] = 3, ["x"] = 38, ["name"] = "xpanes:pane_natural", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 156}, {["y"] = 3, ["x"] = 38, ["name"] = "xpanes:pane_natural", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 172}, {["y"] = 3, ["x"] = 38, ["name"] = "mcl_core:wood", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 38, ["name"] = "mcl_fences:fence", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 189}, {["y"] = 3, ["x"] = 38, ["name"] = "mcl_core:tree", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 3, ["x"] = 38, ["name"] = "mcl_doors:wooden_door_t_1", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 141}, {["y"] = 3, ["x"] = 38, ["name"] = "mcl_core:wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 38, ["name"] = "mcl_core:tree", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 3, ["x"] = 38, ["name"] = "mcl_fences:fence", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 189}, {["y"] = 3, ["x"] = 38, ["name"] = "mcl_fences:fence", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 3, ["x"] = 38, ["name"] = "mcl_fences:fence", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 4, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 38, ["name"] = "mcl_core:wood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 38, ["name"] = "mcl_core:wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 38, ["name"] = "mcl_core:wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 38, ["name"] = "xpanes:pane_natural", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 156}, {["y"] = 4, ["x"] = 38, ["name"] = "xpanes:pane_natural", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 172}, {["y"] = 4, ["x"] = 38, ["name"] = "xpanes:pane_natural", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 188}, {["y"] = 4, ["x"] = 38, ["name"] = "mcl_core:wood", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 38, ["name"] = "mcl_torches:torch_wall", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 38, ["name"] = "mcl_wool:black", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 38, ["name"] = "mcl_torches:torch_wall", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 15}, {["y"] = 4, ["x"] = 38, ["name"] = "mcl_core:tree", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 4, ["x"] = 38, ["name"] = "mcl_core:wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 38, ["name"] = "mcl_core:wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 38, ["name"] = "mcl_core:tree", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 4, ["x"] = 38, ["name"] = "mcl_torches:torch_wall", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 38, ["name"] = "mcl_wool:black", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 38, ["name"] = "mcl_torches:torch_wall", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 15}, {["y"] = 4, ["x"] = 38, ["name"] = "mcl_fences:fence", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 4, ["x"] = 38, ["name"] = "mcl_fences:fence", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 5, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 38, ["name"] = "mcl_core:wood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 38, ["name"] = "mcl_core:wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 38, ["name"] = "mcl_core:wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 38, ["name"] = "mcl_core:wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 38, ["name"] = "mcl_core:wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 38, ["name"] = "mcl_core:wood", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 38, ["name"] = "mcl_core:wood", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 38, ["name"] = "mcl_core:tree", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 38, ["name"] = "mcl_core:tree", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 38, ["name"] = "stairs:stair_wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 93}, {["y"] = 6, ["x"] = 38, ["name"] = "stairs:stair_wood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 109}, {["y"] = 6, ["x"] = 38, ["name"] = "stairs:stair_wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 93}, {["y"] = 6, ["x"] = 38, ["name"] = "stairs:stair_wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 93}, {["y"] = 6, ["x"] = 38, ["name"] = "stairs:stair_wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 109}, {["y"] = 6, ["x"] = 38, ["name"] = "stairs:stair_wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 125}, {["y"] = 6, ["x"] = 38, ["name"] = "stairs:stair_wood", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 141}, {["y"] = 6, ["x"] = 38, ["name"] = "stairs:stair_wood", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 157}, {["y"] = 6, ["x"] = 38, ["name"] = "stairs:stair_wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 173}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 39, ["name"] = "mcl_core:gravel", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 39, ["name"] = "mcl_core:gravel", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 39, ["name"] = "mcl_core:gravel", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 39, ["name"] = "mcl_core:gravel", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 39, ["name"] = "mcl_core:gravel", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 39, ["name"] = "mcl_core:gravel", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 39, ["name"] = "crafting:workbench", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 187}, {["y"] = 2, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 39, ["name"] = "mcl_core:wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 39, ["name"] = "mcl_core:wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 39, ["name"] = "mcl_core:tree", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 2, ["x"] = 39, ["name"] = "mcl_doors:wooden_door_b_1", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 173}, {["y"] = 2, ["x"] = 39, ["name"] = "mcl_core:wood", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 39, ["name"] = "mcl_core:tree", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 3, ["x"] = 39, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 39, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 39, ["name"] = "mcl_core:wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 39, ["name"] = "mcl_core:wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 39, ["name"] = "mcl_core:tree", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 3, ["x"] = 39, ["name"] = "mcl_doors:wooden_door_t_1", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 189}, {["y"] = 3, ["x"] = 39, ["name"] = "mcl_core:wood", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 39, ["name"] = "mcl_core:tree", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 4, ["x"] = 39, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 39, ["name"] = "mcl_torches:torch_wall", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 4, ["x"] = 39, ["name"] = "mcl_torches:torch_wall", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 4, ["x"] = 39, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 39, ["name"] = "mcl_torches:torch_wall", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 15}, {["y"] = 4, ["x"] = 39, ["name"] = "mcl_core:wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 39, ["name"] = "mcl_core:wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 39, ["name"] = "mcl_torches:torch_wall", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 15}, {["y"] = 4, ["x"] = 39, ["name"] = "mcl_core:tree", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 4, ["x"] = 39, ["name"] = "mcl_core:wood", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 39, ["name"] = "mcl_core:wood", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 39, ["name"] = "mcl_core:tree", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 5, ["x"] = 39, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 39, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 39, ["name"] = "mcl_core:tree", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 39, ["name"] = "mcl_core:tree", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 39, ["name"] = "mcl_core:tree", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 5, ["x"] = 39, ["name"] = "mcl_core:tree", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 6, ["x"] = 39, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 39, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 39, ["name"] = "mcl_core:tree", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 6, ["x"] = 39, ["name"] = "mcl_core:tree", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 7, ["x"] = 39, ["name"] = "stairs:stair_wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 93}, {["y"] = 7, ["x"] = 39, ["name"] = "stairs:stair_wood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 77}, {["y"] = 7, ["x"] = 39, ["name"] = "stairs:stair_wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 61}, {["y"] = 7, ["x"] = 39, ["name"] = "stairs:stair_wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 61}, {["y"] = 7, ["x"] = 39, ["name"] = "stairs:stair_wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 77}, {["y"] = 7, ["x"] = 39, ["name"] = "stairs:stair_wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 93}, {["y"] = 7, ["x"] = 39, ["name"] = "stairs:stair_wood", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 109}, {["y"] = 7, ["x"] = 39, ["name"] = "stairs:stair_wood", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 125}, {["y"] = 7, ["x"] = 39, ["name"] = "stairs:stair_wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 141}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 40, ["name"] = "mcl_core:wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 40, ["name"] = "mcl_core:wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 40, ["name"] = "mcl_core:wood", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 40, ["name"] = "mcl_core:wood", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 40, ["name"] = "xpanes:pane_natural", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 3, ["x"] = 40, ["name"] = "xpanes:pane_natural", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 3, ["x"] = 40, ["name"] = "xpanes:pane_natural", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 3, ["x"] = 40, ["name"] = "xpanes:pane_natural", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 3, ["x"] = 40, ["name"] = "mcl_core:wood", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 40, ["name"] = "mcl_core:wood", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 40, ["name"] = "xpanes:pane_natural", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 189}, {["y"] = 4, ["x"] = 40, ["name"] = "xpanes:pane_natural", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 189}, {["y"] = 4, ["x"] = 40, ["name"] = "mcl_core:wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 40, ["name"] = "mcl_core:wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 40, ["name"] = "mcl_core:wood", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 40, ["name"] = "mcl_torches:torch_wall", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 4, ["x"] = 40, ["name"] = "mcl_core:wood", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 40, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 40, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 40, ["name"] = "mcl_core:tree", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 40, ["name"] = "mcl_core:tree", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 40, ["name"] = "mcl_core:tree", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 5, ["x"] = 40, ["name"] = "mcl_core:tree", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 40, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 40, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 40, ["name"] = "mcl_core:tree", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 6, ["x"] = 40, ["name"] = "mcl_core:tree", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 6, ["x"] = 40, ["name"] = "mcl_core:tree", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 6, ["x"] = 40, ["name"] = "mcl_core:tree", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 7, ["x"] = 40, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 40, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 8, ["x"] = 40, ["name"] = "stairs:stair_wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 93}, {["y"] = 8, ["x"] = 40, ["name"] = "stairs:stair_wood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 77}, {["y"] = 8, ["x"] = 40, ["name"] = "stairs:stair_wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 61}, {["y"] = 8, ["x"] = 40, ["name"] = "stairs:stair_wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 45}, {["y"] = 8, ["x"] = 40, ["name"] = "stairs:stair_wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 45}, {["y"] = 8, ["x"] = 40, ["name"] = "stairs:stair_wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 61}, {["y"] = 8, ["x"] = 40, ["name"] = "stairs:stair_wood", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 77}, {["y"] = 8, ["x"] = 40, ["name"] = "stairs:stair_wood", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 93}, {["y"] = 8, ["x"] = 40, ["name"] = "stairs:stair_wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 109}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 41, ["name"] = "mcl_fences:fence", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 104}, {["y"] = 2, ["x"] = 41, ["name"] = "mcl_fences:fence", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 138}, {["y"] = 2, ["x"] = 41, ["name"] = "stairs:stair_wood", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 155}, {["y"] = 2, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 41, ["name"] = "mcl_core:wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 41, ["name"] = "mcl_core:wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 41, ["name"] = "mcl_core:wood", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 41, ["name"] = "mcl_core:wood", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 41, ["name"] = "xpanes:pane_natural", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 3, ["x"] = 41, ["name"] = "mesecons_pressureplates:pressure_plate_wood_off", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 121}, {["y"] = 3, ["x"] = 41, ["name"] = "mesecons_pressureplates:pressure_plate_wood_off", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 155}, {["y"] = 3, ["x"] = 41, ["name"] = "xpanes:pane_natural", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 3, ["x"] = 41, ["name"] = "mcl_core:wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 41, ["name"] = "mcl_core:wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 41, ["name"] = "xpanes:pane_natural", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 3, ["x"] = 41, ["name"] = "xpanes:pane_natural", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 4, ["x"] = 41, ["name"] = "xpanes:pane_natural", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 4, ["x"] = 41, ["name"] = "xpanes:pane_natural", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 4, ["x"] = 41, ["name"] = "mcl_core:wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 41, ["name"] = "mcl_core:wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 41, ["name"] = "mcl_core:wood", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 41, ["name"] = "mcl_core:wood", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 41, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 41, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 41, ["name"] = "mcl_core:tree", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 41, ["name"] = "mcl_core:tree", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 41, ["name"] = "mcl_core:tree", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 5, ["x"] = 41, ["name"] = "mcl_core:tree", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 41, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 41, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 41, ["name"] = "mcl_core:tree", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 6, ["x"] = 41, ["name"] = "mcl_core:tree", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 6, ["x"] = 41, ["name"] = "mcl_core:tree", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 41, ["name"] = "mcl_core:tree", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 7, ["x"] = 41, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 41, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 8, ["x"] = 41, ["name"] = "stairs:stair_wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 77}, {["y"] = 8, ["x"] = 41, ["name"] = "stairs:stair_wood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 61}, {["y"] = 8, ["x"] = 41, ["name"] = "stairs:stair_wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 45}, {["y"] = 8, ["x"] = 41, ["name"] = "stairs:stair_wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 29}, {["y"] = 8, ["x"] = 41, ["name"] = "stairs:stair_wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 29}, {["y"] = 8, ["x"] = 41, ["name"] = "stairs:stair_wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 45}, {["y"] = 8, ["x"] = 41, ["name"] = "stairs:stair_wood", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 61}, {["y"] = 8, ["x"] = 41, ["name"] = "stairs:stair_wood", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 77}, {["y"] = 8, ["x"] = 41, ["name"] = "stairs:stair_wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 93}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 42, ["name"] = "stairs:stair_wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 89}, {["y"] = 2, ["x"] = 42, ["name"] = "stairs:stair_wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 106}, {["y"] = 2, ["x"] = 42, ["name"] = "stairs:stair_wood", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 122}, {["y"] = 2, ["x"] = 42, ["name"] = "stairs:stair_wood", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 138}, {["y"] = 2, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 42, ["name"] = "mcl_core:tree", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 2, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 42, ["name"] = "mcl_core:tree", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 2, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 42, ["name"] = "mcl_core:tree", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 3, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 42, ["name"] = "mcl_core:tree", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 3, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 42, ["name"] = "mcl_books:bookshelf", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 42, ["name"] = "mcl_books:bookshelf", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 42, ["name"] = "mcl_books:bookshelf", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 42, ["name"] = "mcl_books:bookshelf", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 42, ["name"] = "mcl_books:bookshelf", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 42, ["name"] = "mcl_books:bookshelf", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 42, ["name"] = "mcl_books:bookshelf", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 42, ["name"] = "mcl_core:tree", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 4, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 42, ["name"] = "mcl_core:tree", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 4, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 42, ["name"] = "mcl_core:tree", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 42, ["name"] = "mcl_core:tree", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 42, ["name"] = "mcl_core:tree", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 5, ["x"] = 42, ["name"] = "mcl_core:tree", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 42, ["name"] = "mcl_core:tree", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 42, ["name"] = "mcl_core:tree", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 7, ["x"] = 42, ["name"] = "stairs:stair_wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 77}, {["y"] = 7, ["x"] = 42, ["name"] = "stairs:stair_wood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 61}, {["y"] = 7, ["x"] = 42, ["name"] = "stairs:stair_wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 45}, {["y"] = 7, ["x"] = 42, ["name"] = "stairs:stair_wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 29}, {["y"] = 7, ["x"] = 42, ["name"] = "stairs:stair_wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 29}, {["y"] = 7, ["x"] = 42, ["name"] = "stairs:stair_wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 45}, {["y"] = 7, ["x"] = 42, ["name"] = "stairs:stair_wood", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 61}, {["y"] = 7, ["x"] = 42, ["name"] = "stairs:stair_wood", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 77}, {["y"] = 7, ["x"] = 42, ["name"] = "stairs:stair_wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 93}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 43, ["name"] = "mcl_core:tree", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 2, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 43, ["name"] = "mcl_core:tree", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 3, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 43, ["name"] = "xpanes:pane_natural", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 124}, {["y"] = 3, ["x"] = 43, ["name"] = "xpanes:pane_natural", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 108}, {["y"] = 3, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 43, ["name"] = "xpanes:pane_natural", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 108}, {["y"] = 3, ["x"] = 43, ["name"] = "xpanes:pane_natural", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 124}, {["y"] = 3, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 43, ["name"] = "mcl_core:tree", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 3, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 43, ["name"] = "mcl_core:tree", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 4, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 43, ["name"] = "mcl_core:tree", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 4, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 43, ["name"] = "mcl_core:tree", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 5, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 43, ["name"] = "mcl_core:tree", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 5, ["x"] = 43, ["name"] = "mcl_core:tree", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 6, ["x"] = 43, ["name"] = "stairs:stair_wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 77}, {["y"] = 6, ["x"] = 43, ["name"] = "stairs:stair_wood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 61}, {["y"] = 6, ["x"] = 43, ["name"] = "stairs:stair_wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 45}, {["y"] = 6, ["x"] = 43, ["name"] = "stairs:stair_wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 29}, {["y"] = 6, ["x"] = 43, ["name"] = "stairs:stair_wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 29}, {["y"] = 6, ["x"] = 43, ["name"] = "stairs:stair_wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 45}, {["y"] = 6, ["x"] = 43, ["name"] = "stairs:stair_wood", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 61}, {["y"] = 6, ["x"] = 43, ["name"] = "stairs:stair_wood", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 77}, {["y"] = 6, ["x"] = 43, ["name"] = "stairs:stair_wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 93}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 44, ["name"] = "stairs:stair_wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 77}, {["y"] = 5, ["x"] = 44, ["name"] = "stairs:stair_wood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 61}, {["y"] = 5, ["x"] = 44, ["name"] = "stairs:stair_wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 77}, {["y"] = 5, ["x"] = 44, ["name"] = "stairs:stair_wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 61}, {["y"] = 5, ["x"] = 44, ["name"] = "stairs:stair_wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 45}, {["y"] = 5, ["x"] = 44, ["name"] = "stairs:stair_wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 61}, {["y"] = 5, ["x"] = 44, ["name"] = "stairs:stair_wood", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 77}, {["y"] = 5, ["x"] = 44, ["name"] = "stairs:stair_wood", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 77}, {["y"] = 5, ["x"] = 44, ["name"] = "stairs:stair_wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 93}} +return {{["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:tree", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:tree", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:tree", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:tree", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:tree", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:tree", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:tree", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_core:tree", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_farming:soil_wet", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_farming:soil_wet", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_core:water_source", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_farming:soil_wet", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_farming:soil_wet", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 2, ["name"] = "mcl_core:tree", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 2, ["x"] = 2, ["name"] = "mcl_farming:wheat", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 2, ["name"] = "mcl_farming:wheat", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 2, ["name"] = "mcl_farming:wheat", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 2, ["name"] = "mcl_farming:wheat", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_core:tree", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_farming:soil_wet", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_farming:soil_wet", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_core:water_source", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_farming:soil_wet", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_farming:soil_wet", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 3, ["name"] = "mcl_core:tree", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 2, ["x"] = 3, ["name"] = "mcl_farming:wheat", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 3, ["name"] = "mcl_farming:wheat", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 3, ["name"] = "mcl_farming:wheat", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 3, ["name"] = "mcl_farming:wheat", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_core:tree", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_farming:soil_wet", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_farming:soil_wet", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_core:water_source", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 240, ["param1"] = 15}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_farming:soil_wet", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_farming:soil_wet", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 4, ["name"] = "mcl_core:tree", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 2, ["x"] = 4, ["name"] = "mcl_farming:wheat", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 4, ["name"] = "mcl_farming:wheat", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 4, ["name"] = "mcl_farming:wheat", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 4, ["name"] = "mcl_farming:wheat", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:tree", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_farming:soil_wet", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_farming:soil_wet", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:water_source", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_farming:soil_wet", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_farming:soil_wet", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:tree", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_farming:wheat", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_farming:wheat", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_farming:wheat", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_farming:wheat", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 6, ["name"] = "mcl_core:tree", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 6, ["name"] = "mcl_farming:soil_wet", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 6, ["name"] = "mcl_farming:soil_wet", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 6, ["name"] = "mcl_core:water_source", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 240, ["param1"] = 15}, {["y"] = 1, ["x"] = 6, ["name"] = "mcl_farming:soil_wet", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 6, ["name"] = "mcl_farming:soil_wet", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 6, ["name"] = "mcl_core:tree", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 2, ["x"] = 6, ["name"] = "mcl_farming:wheat", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 6, ["name"] = "mcl_farming:wheat", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 6, ["name"] = "mcl_farming:wheat", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 6, ["name"] = "mcl_farming:wheat", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 7, ["name"] = "mcl_core:tree", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 7, ["name"] = "mcl_farming:soil_wet", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 7, ["name"] = "mcl_farming:soil_wet", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 7, ["name"] = "mcl_core:water_source", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 7, ["name"] = "mcl_farming:soil_wet", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 7, ["name"] = "mcl_farming:soil_wet", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 7, ["name"] = "mcl_core:tree", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 2, ["x"] = 7, ["name"] = "mcl_farming:wheat", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 7, ["name"] = "mcl_farming:wheat", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 7, ["name"] = "mcl_farming:wheat", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 7, ["name"] = "mcl_farming:wheat", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:gravel", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:gravel", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:gravel", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 8, ["name"] = "mcl_core:tree", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 8, ["name"] = "mcl_farming:soil_wet", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 8, ["name"] = "mcl_farming:soil_wet", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 8, ["name"] = "mcl_core:water_source", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 8, ["name"] = "mcl_farming:soil_wet", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 8, ["name"] = "mcl_farming:soil_wet", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 8, ["name"] = "mcl_core:tree", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 2, ["x"] = 8, ["name"] = "mcl_farming:wheat", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 8, ["name"] = "mcl_farming:wheat", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 8, ["name"] = "mcl_farming:wheat", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 8, ["name"] = "mcl_farming:wheat", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:gravel", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:gravel", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:gravel", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 9, ["name"] = "mcl_core:tree", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 9, ["name"] = "mcl_core:tree", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 1, ["x"] = 9, ["name"] = "mcl_core:tree", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 9, ["name"] = "mcl_core:tree", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 1, ["x"] = 9, ["name"] = "mcl_core:tree", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 1, ["x"] = 9, ["name"] = "mcl_core:tree", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 1, ["x"] = 9, ["name"] = "mcl_core:tree", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:gravel", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:gravel", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:gravel", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:gravel", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:gravel", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:gravel", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:gravel", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:gravel", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:gravel", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:gravel", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:gravel", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:gravel", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:gravel", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:gravel", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:gravel", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:gravel", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:gravel", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:gravel", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:gravel", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "mcl_core:tree", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "mcl_core:tree", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "mcl_core:tree", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "mcl_core:tree", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "mcl_core:tree", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "mcl_core:tree", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "mcl_core:tree", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "mcl_core:tree", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "mcl_core:tree", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:gravel", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:gravel", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:gravel", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:gravel", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:gravel", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:gravel", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:gravel", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:gravel", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:gravel", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:gravel", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:gravel", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:gravel", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:gravel", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:gravel", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:gravel", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:gravel", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:gravel", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:gravel", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:gravel", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 11, ["name"] = "mcl_core:tree", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 11, ["name"] = "mcl_farming:soil_wet", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 11, ["name"] = "mcl_farming:soil_wet", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 11, ["name"] = "mcl_farming:soil_wet", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 11, ["name"] = "mcl_farming:soil_wet", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 11, ["name"] = "mcl_farming:soil_wet", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 29}, {["y"] = 1, ["x"] = 11, ["name"] = "mcl_farming:soil_wet", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 45}, {["y"] = 1, ["x"] = 11, ["name"] = "mcl_farming:soil_wet", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 1, ["x"] = 11, ["name"] = "mcl_core:tree", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 2, ["x"] = 11, ["name"] = "mcl_farming:wheat", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 11, ["name"] = "mcl_farming:wheat", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 11, ["name"] = "mcl_farming:wheat", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 11, ["name"] = "mcl_farming:wheat", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 31}, {["y"] = 2, ["x"] = 11, ["name"] = "mcl_farming:wheat", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 47}, {["y"] = 2, ["x"] = 11, ["name"] = "mcl_farming:wheat", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 63}, {["y"] = 2, ["x"] = 11, ["name"] = "mcl_farming:wheat", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 79}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:gravel", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:gravel", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:gravel", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:gravel", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:gravel", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:gravel", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:gravel", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:gravel", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:gravel", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:gravel", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:gravel", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:gravel", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:gravel", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:gravel", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:gravel", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:gravel", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:gravel", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:gravel", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:gravel", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 12, ["name"] = "mcl_core:tree", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 12, ["name"] = "mcl_farming:soil_wet", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 12, ["name"] = "mcl_farming:soil_wet", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 12, ["name"] = "mcl_farming:soil_wet", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 12, ["name"] = "mcl_farming:soil_wet", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 29}, {["y"] = 1, ["x"] = 12, ["name"] = "mcl_farming:soil_wet", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 45}, {["y"] = 1, ["x"] = 12, ["name"] = "mcl_farming:soil_wet", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 1, ["x"] = 12, ["name"] = "mcl_farming:soil_wet", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 1, ["x"] = 12, ["name"] = "mcl_core:tree", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 2, ["x"] = 12, ["name"] = "mcl_farming:wheat", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 12, ["name"] = "mcl_farming:wheat", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 2, ["x"] = 12, ["name"] = "mcl_farming:wheat", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 31}, {["y"] = 2, ["x"] = 12, ["name"] = "mcl_farming:wheat_3", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 47}, {["y"] = 2, ["x"] = 12, ["name"] = "mcl_farming:wheat", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 63}, {["y"] = 2, ["x"] = 12, ["name"] = "mcl_farming:wheat", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 79}, {["y"] = 2, ["x"] = 12, ["name"] = "mcl_farming:wheat", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 95}, {["y"] = 4, ["x"] = 12, ["name"] = "mcl_torches:torch_wall", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 15}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:gravel", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:gravel", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:gravel", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:gravel", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:gravel", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:gravel", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 13, ["name"] = "mcl_core:tree", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 13, ["name"] = "mcl_core:water_source", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 13, ["name"] = "mcl_core:water_source", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 13, ["name"] = "mcl_core:water_source", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 29}, {["y"] = 1, ["x"] = 13, ["name"] = "mcl_core:water_source", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 240, ["param1"] = 47}, {["y"] = 1, ["x"] = 13, ["name"] = "mcl_core:water_source", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 1, ["x"] = 13, ["name"] = "mcl_core:water_source", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 1, ["x"] = 13, ["name"] = "mcl_core:water_source", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 1, ["x"] = 13, ["name"] = "mcl_core:tree", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 13, ["name"] = "mcl_fences:fence", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 2, ["x"] = 13, ["name"] = "mcl_fences:fence", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 3, ["x"] = 13, ["name"] = "mcl_fences:fence", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 189}, {["y"] = 4, ["x"] = 13, ["name"] = "mcl_torches:torch_wall", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 13, ["name"] = "mcl_wool:black", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 13, ["name"] = "mcl_torches:torch_wall", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 15}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:gravel", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:gravel", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:gravel", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:gravel", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:gravel", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:gravel", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_core:tree", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_farming:soil_wet", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_farming:soil_wet", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 29}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_farming:soil_wet", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 45}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_farming:soil_wet", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_farming:soil_wet", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_farming:soil_wet", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_farming:soil_wet", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_core:tree", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_farming:wheat", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 31}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_farming:wheat", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 47}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_farming:wheat", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 63}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_farming:wheat", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 79}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_farming:wheat", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 95}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_farming:wheat", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 111}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_farming:wheat", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 127}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 14, ["name"] = "xpanes:pane_natural", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 3, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 14, ["name"] = "xpanes:pane_natural", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 4, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 14, ["name"] = "xpanes:pane_natural", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 4, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 14, ["name"] = "mcl_torches:torch_wall", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 15}, {["y"] = 5, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 14, ["name"] = "xpanes:pane_natural", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 7, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 8, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 8, ["x"] = 14, ["name"] = "xpanes:pane_natural", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 8, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 14, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:gravel", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:gravel", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:gravel", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:gravel", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:gravel", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:gravel", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_core:tree", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_farming:soil_wet", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 29}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_farming:soil_wet", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 45}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_farming:soil_wet", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_farming:soil_wet", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_farming:soil_wet", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_farming:soil_wet", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_farming:soil_wet", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_core:tree", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 15, ["name"] = "mcl_farming:wheat", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 47}, {["y"] = 2, ["x"] = 15, ["name"] = "mcl_farming:wheat", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 63}, {["y"] = 2, ["x"] = 15, ["name"] = "mcl_farming:wheat", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 79}, {["y"] = 2, ["x"] = 15, ["name"] = "mcl_farming:wheat", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 95}, {["y"] = 2, ["x"] = 15, ["name"] = "mcl_farming:wheat", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 111}, {["y"] = 2, ["x"] = 15, ["name"] = "mcl_farming:wheat", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 127}, {["y"] = 2, ["x"] = 15, ["name"] = "mcl_farming:wheat_2", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 143}, {["y"] = 2, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 15, ["name"] = "mcl_core:ladder", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 138}, {["y"] = 2, ["x"] = 15, ["name"] = "mcl_stairs:stair_cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 121}, {["y"] = 2, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 15, ["name"] = "mcl_core:ladder", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 155}, {["y"] = 3, ["x"] = 15, ["name"] = "mcl_stairs:stair_cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 170}, {["y"] = 3, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 15, ["name"] = "mcl_core:ladder", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 171}, {["y"] = 4, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 15, ["name"] = "mcl_core:ladder", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 154}, {["y"] = 5, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 15, ["name"] = "mcl_core:ladder", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 138}, {["y"] = 6, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 15, ["name"] = "mcl_core:ladder", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 123}, {["y"] = 7, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 8, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 8, ["x"] = 15, ["name"] = "mcl_core:ladder", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 107}, {["y"] = 8, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 15, ["name"] = "mcl_core:ladder", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 92}, {["y"] = 9, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 15, ["name"] = "mcl_core:ladder", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 77}, {["y"] = 10, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 15, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:gravel", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:gravel", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:gravel", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:gravel", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:gravel", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:gravel", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:tree", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:tree", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:tree", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:tree", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:tree", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:tree", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:tree", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:tree", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:tree", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_stairs:stair_cobble", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 141}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 16, ["name"] = "mcl_doors:wooden_door_b_1", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 2, ["x"] = 16, ["name"] = "mcl_stairs:stair_cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 153}, {["y"] = 2, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 16, ["name"] = "mcl_doors:wooden_door_t_1", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 189}, {["y"] = 3, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 16, ["name"] = "mcl_torches:torch_wall", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 4, ["x"] = 16, ["name"] = "xpanes:pane_natural", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 189}, {["y"] = 5, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 16, ["name"] = "mcl_torches:torch_wall", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 16, ["name"] = "xpanes:pane_natural", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 7, ["x"] = 16, ["name"] = "xpanes:pane_natural", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 8, ["x"] = 16, ["name"] = "xpanes:pane_natural", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 8, ["x"] = 16, ["name"] = "xpanes:pane_natural", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 9, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 16, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:gravel", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:gravel", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:gravel", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:gravel", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:gravel", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:gravel", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 17, ["name"] = "mcl_stairs:stair_cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 121}, {["y"] = 2, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 17, ["name"] = "mcl_stairs:stair_cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 170}, {["y"] = 3, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 17, ["name"] = "mcl_torches:torch_wall", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 15}, {["y"] = 4, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 8, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 8, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 17, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:gravel", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:gravel", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:gravel", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:gravel", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:gravel", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:gravel", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_fences:fence", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 156}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_fences:fence", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:wood", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:wood", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:wood", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_fences:fence", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 189}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 18, ["name"] = "xpanes:pane_natural", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:wood", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 18, ["name"] = "xpanes:pane_natural", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:wood", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_torches:torch_wall", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_wool:black", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_torches:torch_wall", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 15}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 18, ["name"] = "xpanes:pane_natural", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 18, ["name"] = "xpanes:pane_natural", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:wood", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:wood", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:wood", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 18, ["name"] = "mcl_core:tree", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 5, ["x"] = 18, ["name"] = "mcl_core:tree", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 18, ["name"] = "mcl_core:tree", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 18, ["name"] = "mcl_core:tree", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 18, ["name"] = "mcl_core:tree", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 6, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 18, ["name"] = "xpanes:pane_natural", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 7, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 8, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 8, ["x"] = 18, ["name"] = "xpanes:pane_natural", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 8, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 9, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 10, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 11, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 12, ["x"] = 18, ["name"] = "mcl_core:cobble", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:gravel", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:gravel", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:gravel", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:gravel", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:gravel", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:gravel", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 19, ["name"] = "mcl_core:cobble", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 19, ["name"] = "mcl_core:dirt", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 19, ["name"] = "mcl_core:dirt", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 19, ["name"] = "mcl_core:dirt", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 19, ["name"] = "mcl_core:cobble", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 19, ["name"] = "mcl_core:wood", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 19, ["name"] = "mcl_core:wood", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 19, ["name"] = "mcl_core:wood", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 19, ["name"] = "mcl_core:wood", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 19, ["name"] = "mcl_torches:torch_wall", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 15}, {["y"] = 4, ["x"] = 19, ["name"] = "mcl_core:wood", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 19, ["name"] = "mcl_core:wood", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 19, ["name"] = "mcl_core:tree", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 5, ["x"] = 19, ["name"] = "mcl_core:wood", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 19, ["name"] = "mcl_core:wood", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 19, ["name"] = "mcl_core:wood", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 19, ["name"] = "mcl_core:tree", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:gravel", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:gravel", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:gravel", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:gravel", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:gravel", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:gravel", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_core:cobble", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_core:dirt", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_core:dirt", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_core:dirt", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_core:cobble", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_stairs:stair_cobble", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 141}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_core:cobble", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_core:cobble", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_core:cobble", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_core:cobble", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "mcl_core:cobble", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 20, ["name"] = "mcl_core:wood", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 20, ["name"] = "mcl_doors:wooden_door_b_1", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 173}, {["y"] = 2, ["x"] = 20, ["name"] = "mcl_core:cobble", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 20, ["name"] = "mcl_core:wood", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 20, ["name"] = "mcl_core:wood", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 20, ["name"] = "mcl_core:wood", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 20, ["name"] = "mcl_core:cobble", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 20, ["name"] = "xpanes:pane_natural", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 3, ["x"] = 20, ["name"] = "mcl_doors:wooden_door_t_1", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 189}, {["y"] = 3, ["x"] = 20, ["name"] = "mcl_core:cobble", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 20, ["name"] = "mcl_core:wood", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 20, ["name"] = "xpanes:pane_natural", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 3, ["x"] = 20, ["name"] = "mcl_core:wood", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 20, ["name"] = "mcl_core:cobble", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:wood", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_torches:torch_wall", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:wood", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:cobble", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:wood", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:wood", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:wood", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 20, ["name"] = "mcl_core:cobble", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 20, ["name"] = "mcl_core:tree", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 5, ["x"] = 20, ["name"] = "mcl_core:wood", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 20, ["name"] = "mcl_core:wood", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 20, ["name"] = "mcl_core:wood", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 20, ["name"] = "mcl_core:tree", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 5, ["x"] = 20, ["name"] = "mcl_core:tree", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 20, ["name"] = "mcl_core:tree", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 20, ["name"] = "mcl_core:tree", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 20, ["name"] = "mcl_core:tree", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 20, ["name"] = "mcl_core:tree", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:gravel", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:gravel", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:gravel", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:gravel", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:gravel", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:gravel", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "mcl_core:cobble", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "mcl_core:dirt", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "mcl_core:dirt", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "mcl_core:dirt", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "mcl_core:cobble", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "mcl_core:cobble", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "mcl_core:dirt", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "mcl_core:dirt", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "mcl_core:dirt", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "mcl_core:cobble", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 21, ["name"] = "mcl_core:wood", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 21, ["name"] = "mcl_core:wood", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 21, ["name"] = "mcl_core:wood", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 21, ["name"] = "mcl_core:wood", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 21, ["name"] = "mcl_core:wood", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 21, ["name"] = "mcl_core:wood", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 21, ["name"] = "mcl_core:wood", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 21, ["name"] = "mcl_core:wood", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 21, ["name"] = "mcl_torches:torch_wall", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 15}, {["y"] = 4, ["x"] = 21, ["name"] = "mcl_core:wood", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 21, ["name"] = "mcl_core:wood", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 21, ["name"] = "mcl_core:wood", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 21, ["name"] = "mcl_core:wood", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 21, ["name"] = "mcl_core:tree", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 5, ["x"] = 21, ["name"] = "mcl_core:wood", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 21, ["name"] = "mcl_core:wood", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 21, ["name"] = "mcl_core:wood", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 21, ["name"] = "mcl_core:tree", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 5, ["x"] = 21, ["name"] = "mcl_core:tree", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 21, ["name"] = "mcl_core:wood", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 21, ["name"] = "mcl_core:wood", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 21, ["name"] = "mcl_core:wood", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 21, ["name"] = "mcl_core:tree", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:gravel", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:gravel", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:gravel", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:gravel", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:gravel", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:gravel", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "mcl_fences:fence", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 1, ["x"] = 22, ["name"] = "mcl_core:cobble", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "mcl_core:cobble", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "mcl_core:cobble", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "mcl_core:cobble", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "mcl_core:cobble", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "mcl_stairs:stair_cobble", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 141}, {["y"] = 1, ["x"] = 22, ["name"] = "mcl_core:cobble", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "mcl_core:dirt", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "mcl_core:dirt", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "mcl_core:dirt", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "mcl_core:cobble", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 22, ["name"] = "mcl_fences:fence", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 2, ["x"] = 22, ["name"] = "mcl_core:cobble", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 22, ["name"] = "mcl_core:wood", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 22, ["name"] = "mcl_core:wood", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 22, ["name"] = "mcl_core:wood", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 22, ["name"] = "mcl_core:cobble", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 22, ["name"] = "mcl_doors:wooden_door_b_1", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 2, ["x"] = 22, ["name"] = "mcl_core:wood", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 22, ["name"] = "mcl_fences:fence", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 189}, {["y"] = 3, ["x"] = 22, ["name"] = "mcl_core:cobble", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 22, ["name"] = "mcl_core:wood", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 22, ["name"] = "xpanes:pane_natural", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 3, ["x"] = 22, ["name"] = "mcl_core:wood", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 22, ["name"] = "mcl_core:cobble", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 22, ["name"] = "mcl_doors:wooden_door_t_1", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 189}, {["y"] = 3, ["x"] = 22, ["name"] = "xpanes:pane_natural", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 4, ["x"] = 22, ["name"] = "mcl_torches:torch_wall", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 22, ["name"] = "mcl_wool:black", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 22, ["name"] = "mcl_torches:torch_wall", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 15}, {["y"] = 4, ["x"] = 22, ["name"] = "mcl_core:cobble", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 22, ["name"] = "mcl_core:wood", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 22, ["name"] = "mcl_core:wood", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 22, ["name"] = "mcl_core:wood", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 22, ["name"] = "mcl_core:cobble", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 22, ["name"] = "mcl_core:wood", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 22, ["name"] = "mcl_torches:torch_wall", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 4, ["x"] = 22, ["name"] = "mcl_core:wood", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 22, ["name"] = "mcl_core:tree", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 22, ["name"] = "mcl_core:tree", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 22, ["name"] = "mcl_core:tree", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 22, ["name"] = "mcl_core:tree", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 22, ["name"] = "mcl_core:tree", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 5, ["x"] = 22, ["name"] = "mcl_core:tree", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 22, ["name"] = "mcl_core:wood", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 22, ["name"] = "mcl_core:wood", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 22, ["name"] = "mcl_core:wood", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 22, ["name"] = "mcl_core:tree", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:gravel", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:gravel", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:gravel", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:gravel", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:gravel", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:gravel", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 23, ["name"] = "mcl_core:cobble", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 23, ["name"] = "mcl_core:dirt", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 23, ["name"] = "mcl_core:dirt", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 23, ["name"] = "mcl_core:dirt", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 23, ["name"] = "mcl_core:cobble", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 23, ["name"] = "mcl_core:wood", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 23, ["name"] = "mcl_core:wood", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 23, ["name"] = "mcl_core:wood", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 23, ["name"] = "mcl_core:wood", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 23, ["name"] = "mcl_torches:torch_wall", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 15}, {["y"] = 4, ["x"] = 23, ["name"] = "mcl_core:wood", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 23, ["name"] = "mcl_core:wood", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 23, ["name"] = "mcl_core:tree", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 23, ["name"] = "mcl_core:wood", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 23, ["name"] = "mcl_core:wood", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 23, ["name"] = "mcl_core:wood", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 23, ["name"] = "mcl_core:tree", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:gravel", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:gravel", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:gravel", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:gravel", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:gravel", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:gravel", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 24, ["name"] = "mcl_core:wood", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 24, ["name"] = "mcl_core:wood", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 24, ["name"] = "mcl_core:wood", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 24, ["name"] = "mcl_core:wood", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 24, ["name"] = "xpanes:pane_natural", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 3, ["x"] = 24, ["name"] = "mcl_core:wood", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 24, ["name"] = "mcl_core:wood", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 24, ["name"] = "mcl_core:wood", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 24, ["name"] = "mcl_core:wood", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 24, ["name"] = "mcl_core:cobble", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 24, ["name"] = "mcl_stairs:stair_wood", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 5, ["x"] = 24, ["name"] = "mcl_core:wood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 24, ["name"] = "mcl_core:tree", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 5, ["x"] = 24, ["name"] = "xpanes:pane_natural", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 5, ["x"] = 24, ["name"] = "mcl_core:tree", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 5, ["x"] = 24, ["name"] = "mcl_core:wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 24, ["name"] = "mcl_stairs:stair_wood", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 125}, {["y"] = 5, ["x"] = 24, ["name"] = "mcl_core:tree", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 24, ["name"] = "mcl_core:tree", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 24, ["name"] = "mcl_core:tree", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 24, ["name"] = "mcl_core:tree", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 24, ["name"] = "mcl_core:tree", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 24, ["name"] = "mcl_stairs:stair_wood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 6, ["x"] = 24, ["name"] = "mcl_core:wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 24, ["name"] = "mcl_core:wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 24, ["name"] = "mcl_core:wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 24, ["name"] = "mcl_stairs:stair_wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 125}, {["y"] = 7, ["x"] = 24, ["name"] = "mcl_stairs:stair_wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 7, ["x"] = 24, ["name"] = "mcl_core:wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 24, ["name"] = "mcl_stairs:stair_wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 125}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:gravel", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:gravel", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:gravel", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:gravel", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:gravel", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:gravel", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "mcl_core:sprucewood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "mcl_core:wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "mcl_core:sprucewood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "mcl_core:wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "mcl_core:sprucewood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 25, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 25, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 25, ["name"] = "mcl_core:tree", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 3, ["x"] = 25, ["name"] = "mcl_torches:torch_wall", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 3, ["x"] = 25, ["name"] = "mcl_core:tree", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 4, ["x"] = 25, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 25, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 25, ["name"] = "mcl_stairs:stair_wood", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 141}, {["y"] = 5, ["x"] = 25, ["name"] = "mcl_stairs:stair_wood", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 141}, {["y"] = 6, ["x"] = 25, ["name"] = "mcl_stairs:stair_wood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 141}, {["y"] = 6, ["x"] = 25, ["name"] = "mcl_stairs:stair_wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 141}, {["y"] = 7, ["x"] = 25, ["name"] = "mcl_stairs:stair_wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 141}, {["y"] = 7, ["x"] = 25, ["name"] = "mcl_core:wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 25, ["name"] = "mcl_stairs:stair_wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 141}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:gravel", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:gravel", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:gravel", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:gravel", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:gravel", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:gravel", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "mcl_core:wood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "mcl_core:sprucewood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "mcl_core:wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "mcl_core:sprucewood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "mcl_core:wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "mcl_core:tree", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "mcl_core:tree", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "mcl_core:tree", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "mcl_core:tree", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "mcl_core:tree", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "mcl_core:tree", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "mcl_core:tree", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "mcl_core:tree", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "mcl_core:tree", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 2, ["x"] = 26, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 26, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 26, ["name"] = "xpanes:pane_natural", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 3, ["x"] = 26, ["name"] = "xpanes:pane_natural", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 4, ["x"] = 26, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 26, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 26, ["name"] = "mcl_torches:torch_wall", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 15}, {["y"] = 5, ["x"] = 26, ["name"] = "mcl_stairs:stair_wood", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 5, ["x"] = 26, ["name"] = "mcl_stairs:stair_wood", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 125}, {["y"] = 6, ["x"] = 26, ["name"] = "mcl_stairs:stair_wood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 6, ["x"] = 26, ["name"] = "mcl_stairs:stair_wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 125}, {["y"] = 7, ["x"] = 26, ["name"] = "mcl_stairs:stair_wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 7, ["x"] = 26, ["name"] = "mcl_core:wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 26, ["name"] = "mcl_stairs:stair_wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 125}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:gravel", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:gravel", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:gravel", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:gravel", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:gravel", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:gravel", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "mcl_core:sprucewood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "mcl_core:wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "mcl_core:sprucewood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "mcl_core:wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "mcl_core:sprucewood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "mcl_core:tree", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "mcl_farming:soil_wet", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 1, ["x"] = 27, ["name"] = "mcl_farming:soil_wet", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 1, ["x"] = 27, ["name"] = "mcl_farming:soil_wet", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 1, ["x"] = 27, ["name"] = "mcl_farming:soil_wet", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 45}, {["y"] = 1, ["x"] = 27, ["name"] = "mcl_farming:soil_wet", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 1, ["x"] = 27, ["name"] = "mcl_farming:soil_wet", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 45}, {["y"] = 1, ["x"] = 27, ["name"] = "mcl_farming:soil_wet", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 29}, {["y"] = 1, ["x"] = 27, ["name"] = "mcl_core:tree", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "mcl_core:tree", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "mcl_core:tree", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "mcl_core:tree", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "mcl_core:tree", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "mcl_core:tree", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "mcl_core:tree", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "mcl_core:tree", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "mcl_fences:fence", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 2, ["x"] = 27, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 27, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 27, ["name"] = "mcl_farming:wheat", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 111}, {["y"] = 2, ["x"] = 27, ["name"] = "mcl_farming:wheat", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 95}, {["y"] = 2, ["x"] = 27, ["name"] = "mcl_farming:wheat", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 79}, {["y"] = 2, ["x"] = 27, ["name"] = "mcl_farming:wheat", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 63}, {["y"] = 2, ["x"] = 27, ["name"] = "mcl_farming:wheat", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 79}, {["y"] = 2, ["x"] = 27, ["name"] = "mcl_farming:wheat", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 63}, {["y"] = 2, ["x"] = 27, ["name"] = "mcl_farming:wheat", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 47}, {["y"] = 2, ["x"] = 27, ["name"] = "mcl_fences:fence", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 3, ["x"] = 27, ["name"] = "xpanes:pane_natural", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 141}, {["y"] = 3, ["x"] = 27, ["name"] = "xpanes:pane_natural", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 141}, {["y"] = 3, ["x"] = 27, ["name"] = "mcl_fences:fence", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 189}, {["y"] = 4, ["x"] = 27, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 27, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 27, ["name"] = "mcl_torches:torch_wall", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 27, ["name"] = "mcl_wool:black", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 27, ["name"] = "mcl_torches:torch_wall", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 15}, {["y"] = 5, ["x"] = 27, ["name"] = "mcl_stairs:stair_wood", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 5, ["x"] = 27, ["name"] = "mcl_stairs:stair_wood", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 109}, {["y"] = 6, ["x"] = 27, ["name"] = "mcl_stairs:stair_wood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 6, ["x"] = 27, ["name"] = "mcl_stairs:stair_wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 109}, {["y"] = 7, ["x"] = 27, ["name"] = "mcl_stairs:stair_wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 7, ["x"] = 27, ["name"] = "mcl_core:wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 27, ["name"] = "mcl_stairs:stair_wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 109}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:gravel", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:gravel", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:gravel", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:gravel", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:gravel", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:gravel", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:sprucewood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:sprucewood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:tree", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_farming:soil_wet", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_farming:soil_wet", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_farming:soil_wet", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 45}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_farming:soil_wet", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_farming:soil_wet", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_farming:soil_wet", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_farming:soil_wet", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 45}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:tree", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:tree", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_farming:soil_wet", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_farming:soil_wet", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:water_source", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_farming:soil_wet", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_farming:soil_wet", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 1, ["x"] = 28, ["name"] = "mcl_core:tree", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_core:tree", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_core:tree", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_core:tree", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_farming:wheat", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 95}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_farming:wheat", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 79}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_farming:wheat", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 63}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_farming:wheat", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 79}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_farming:wheat", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 95}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_farming:wheat", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 79}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_farming:wheat", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 63}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_farming:wheat", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 79}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_farming:wheat", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 95}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_farming:wheat", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 127}, {["y"] = 2, ["x"] = 28, ["name"] = "mcl_farming:wheat", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 143}, {["y"] = 3, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 28, ["name"] = "xpanes:pane_natural", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 141}, {["y"] = 3, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 28, ["name"] = "xpanes:pane_natural", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 141}, {["y"] = 3, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 28, ["name"] = "mcl_core:tree", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 3, ["x"] = 28, ["name"] = "mcl_core:tree", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 3, ["x"] = 28, ["name"] = "mcl_core:tree", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 3, ["x"] = 28, ["name"] = "mcl_core:tree", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 3, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 28, ["name"] = "xpanes:pane_natural", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 156}, {["y"] = 3, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 28, ["name"] = "mcl_core:tree", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 4, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 28, ["name"] = "mcl_core:tree", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 28, ["name"] = "mcl_core:tree", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 4, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 28, ["name"] = "mcl_core:tree", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 4, ["x"] = 28, ["name"] = "mcl_torches:torch_wall", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 15}, {["y"] = 5, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 28, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 28, ["name"] = "mcl_stairs:stair_wood", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 5, ["x"] = 28, ["name"] = "mcl_stairs:stair_wood", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 93}, {["y"] = 5, ["x"] = 28, ["name"] = "mcl_core:tree", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 5, ["x"] = 28, ["name"] = "mcl_core:tree", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 5, ["x"] = 28, ["name"] = "mcl_core:tree", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 6, ["x"] = 28, ["name"] = "mcl_stairs:slab_stone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 6, ["x"] = 28, ["name"] = "mcl_stairs:slab_stone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 6, ["x"] = 28, ["name"] = "mcl_stairs:slab_stone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 6, ["x"] = 28, ["name"] = "mcl_stairs:slab_stone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 6, ["x"] = 28, ["name"] = "mcl_stairs:slab_stone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 45}, {["y"] = 6, ["x"] = 28, ["name"] = "mcl_stairs:slab_stone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 6, ["x"] = 28, ["name"] = "mcl_stairs:slab_stone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 45}, {["y"] = 6, ["x"] = 28, ["name"] = "mcl_stairs:slab_stone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 6, ["x"] = 28, ["name"] = "mcl_stairs:slab_stone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 45}, {["y"] = 6, ["x"] = 28, ["name"] = "mcl_stairs:slab_stone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 6, ["x"] = 28, ["name"] = "mcl_stairs:stair_wood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 6, ["x"] = 28, ["name"] = "mcl_stairs:stair_wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 93}, {["y"] = 7, ["x"] = 28, ["name"] = "mcl_stairs:stair_wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 7, ["x"] = 28, ["name"] = "mcl_core:wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 28, ["name"] = "mcl_stairs:stair_wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 93}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:gravel", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:gravel", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:gravel", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:gravel", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:gravel", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:gravel", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:sprucewood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:sprucewood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:sprucewood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:tree", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:water_source", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:water_source", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 240, ["param1"] = 45}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:water_source", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:water_source", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 240, ["param1"] = 77}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:water_source", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:water_source", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 240, ["param1"] = 77}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:water_source", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:tree", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:tree", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_farming:soil_wet", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 45}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_farming:soil_wet", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:water_source", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_farming:soil_wet", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_farming:soil_wet", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 1, ["x"] = 29, ["name"] = "mcl_core:tree", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 2, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 29, ["name"] = "mcl_core:water_source", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 29, ["name"] = "mcl_core:water_source", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 29, ["name"] = "mcl_stairs:stair_wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 139}, {["y"] = 2, ["x"] = 29, ["name"] = "mcl_core:wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 29, ["name"] = "mcl_core:wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 29, ["name"] = "mcl_core:wood", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 29, ["name"] = "mcl_core:wood", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 29, ["name"] = "mcl_farming:wheat", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 63}, {["y"] = 2, ["x"] = 29, ["name"] = "mcl_farming:wheat", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 79}, {["y"] = 2, ["x"] = 29, ["name"] = "mcl_farming:wheat", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 111}, {["y"] = 2, ["x"] = 29, ["name"] = "mcl_farming:wheat", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 127}, {["y"] = 3, ["x"] = 29, ["name"] = "xpanes:pane_iron_5", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 205}, {["y"] = 3, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 29, ["name"] = "mcl_core:wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 29, ["name"] = "mcl_core:wood", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 29, ["name"] = "mcl_core:wood", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 29, ["name"] = "mcl_core:wood", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 29, ["name"] = "xpanes:pane_iron_5", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 189}, {["y"] = 4, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 29, ["name"] = "mcl_core:wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 29, ["name"] = "mcl_core:wood", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 29, ["name"] = "mcl_core:wood", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 29, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 29, ["name"] = "mcl_stairs:stair_wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 141}, {["y"] = 5, ["x"] = 29, ["name"] = "mcl_stairs:stair_wood", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 157}, {["y"] = 5, ["x"] = 29, ["name"] = "mcl_core:wood", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 29, ["name"] = "mcl_core:wood", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 29, ["name"] = "mcl_core:tree", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 5, ["x"] = 29, ["name"] = "mcl_core:tree", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 6, ["x"] = 29, ["name"] = "mcl_stairs:slab_stone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 6, ["x"] = 29, ["name"] = "mcl_stairs:slab_stone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 6, ["x"] = 29, ["name"] = "mcl_stairs:stair_wood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 141}, {["y"] = 6, ["x"] = 29, ["name"] = "mcl_stairs:stair_wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 109}, {["y"] = 6, ["x"] = 29, ["name"] = "mcl_core:tree", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 6, ["x"] = 29, ["name"] = "mcl_core:tree", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 6, ["x"] = 29, ["name"] = "mcl_core:tree", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 7, ["x"] = 29, ["name"] = "mcl_stairs:stair_wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 7, ["x"] = 29, ["name"] = "mcl_core:wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 29, ["name"] = "mcl_stairs:stair_wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 77}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:gravel", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:gravel", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:gravel", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:gravel", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:gravel", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:gravel", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_core:wood", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_core:sprucewood", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_core:wood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_core:sprucewood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_core:wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_core:sprucewood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_core:wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_stairs:stair_cobble", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 141}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_core:tree", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_farming:soil_wet", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_farming:soil_wet", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_farming:soil_wet", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_farming:soil_wet", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_farming:soil_wet", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_farming:soil_wet", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_farming:soil_wet", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_core:tree", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_core:tree", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_farming:soil_wet", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 45}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_farming:soil_wet", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_core:water_source", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_farming:soil_wet", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_farming:soil_wet", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 1, ["x"] = 30, ["name"] = "mcl_core:tree", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 2, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 30, ["name"] = "mcl_fences:fence", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 154}, {["y"] = 2, ["x"] = 30, ["name"] = "mcl_stairs:stair_wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 139}, {["y"] = 2, ["x"] = 30, ["name"] = "mcl_core:wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 30, ["name"] = "mcl_core:wood", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 30, ["name"] = "mcl_doors:wooden_door_b_1", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 173}, {["y"] = 2, ["x"] = 30, ["name"] = "mcl_farming:wheat", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 95}, {["y"] = 2, ["x"] = 30, ["name"] = "mcl_farming:wheat", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 79}, {["y"] = 2, ["x"] = 30, ["name"] = "mcl_farming:wheat", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 95}, {["y"] = 2, ["x"] = 30, ["name"] = "mcl_farming:wheat", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 111}, {["y"] = 2, ["x"] = 30, ["name"] = "mcl_farming:wheat", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 127}, {["y"] = 2, ["x"] = 30, ["name"] = "mcl_farming:wheat", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 111}, {["y"] = 2, ["x"] = 30, ["name"] = "mcl_farming:wheat", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 95}, {["y"] = 2, ["x"] = 30, ["name"] = "mcl_farming:wheat", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 63}, {["y"] = 2, ["x"] = 30, ["name"] = "mcl_farming:wheat", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 79}, {["y"] = 2, ["x"] = 30, ["name"] = "mcl_farming:wheat", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 111}, {["y"] = 2, ["x"] = 30, ["name"] = "mcl_farming:wheat", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 127}, {["y"] = 3, ["x"] = 30, ["name"] = "xpanes:pane_iron_4", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 189}, {["y"] = 3, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 30, ["name"] = "mesecons_pressureplates:pressure_plate_wood_off", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 171}, {["y"] = 3, ["x"] = 30, ["name"] = "xpanes:pane_natural", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 141}, {["y"] = 3, ["x"] = 30, ["name"] = "mcl_core:tree", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 30, ["name"] = "mcl_torches:torch_wall", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 3, ["x"] = 30, ["name"] = "mcl_core:tree", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 3, ["x"] = 30, ["name"] = "mcl_core:wood", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 30, ["name"] = "mcl_doors:wooden_door_t_1", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 189}, {["y"] = 4, ["x"] = 30, ["name"] = "xpanes:pane_iron_4", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 4, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 30, ["name"] = "mcl_core:wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 30, ["name"] = "mcl_core:wood", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 30, ["name"] = "mcl_torches:torch_wall", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 30, ["name"] = "mcl_core:wood", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 30, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 30, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 30, ["name"] = "mcl_core:wood", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 30, ["name"] = "mcl_core:tree", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 5, ["x"] = 30, ["name"] = "mcl_core:tree", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 6, ["x"] = 30, ["name"] = "mcl_stairs:slab_stone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 6, ["x"] = 30, ["name"] = "mcl_stairs:slab_stone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 6, ["x"] = 30, ["name"] = "mcl_stairs:stair_wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 141}, {["y"] = 6, ["x"] = 30, ["name"] = "mcl_stairs:stair_wood", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 157}, {["y"] = 6, ["x"] = 30, ["name"] = "mcl_stairs:stair_wood", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 173}, {["y"] = 6, ["x"] = 30, ["name"] = "mcl_core:wood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 30, ["name"] = "mcl_core:wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 30, ["name"] = "mcl_stairs:stair_wood", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 77}, {["y"] = 6, ["x"] = 30, ["name"] = "mcl_core:tree", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 6, ["x"] = 30, ["name"] = "mcl_core:tree", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 6, ["x"] = 30, ["name"] = "mcl_core:tree", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 7, ["x"] = 30, ["name"] = "mcl_stairs:stair_wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 7, ["x"] = 30, ["name"] = "mcl_core:wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 30, ["name"] = "mcl_stairs:stair_wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 93}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:gravel", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:gravel", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:gravel", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:gravel", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:gravel", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:gravel", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 31, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:sprucewood", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:sprucewood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:sprucewood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:sprucewood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_farming:soil_wet", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_farming:soil_wet", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_farming:soil_wet", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_farming:soil_wet", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_farming:soil_wet", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_farming:soil_wet", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_farming:soil_wet", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_farming:soil_wet", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_farming:soil_wet", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:water_source", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_farming:soil_wet", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_farming:soil_wet", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_farming:wheat", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 79}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_farming:wheat", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 95}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_farming:wheat", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 111}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_farming:wheat", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 127}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_farming:wheat", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 143}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_farming:wheat", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 127}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_farming:wheat", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 111}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_farming:wheat", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 79}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_farming:wheat", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 95}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_farming:wheat", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 127}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_farming:wheat", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 143}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 31, ["name"] = "xpanes:pane_natural", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 3, ["x"] = 31, ["name"] = "xpanes:pane_natural", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 3, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 3, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 31, ["name"] = "xpanes:pane_natural", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 3, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 3, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 31, ["name"] = "xpanes:pane_natural", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 3, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 31, ["name"] = "mcl_torches:torch_wall", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 4, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 4, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 4, ["x"] = 31, ["name"] = "mcl_torches:torch_wall", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 15}, {["y"] = 4, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 31, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 5, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 5, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 5, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 31, ["name"] = "mcl_core:tree", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 31, ["name"] = "mcl_stairs:slab_stone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 6, ["x"] = 31, ["name"] = "mcl_stairs:slab_stone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 6, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 31, ["name"] = "mcl_stairs:stair_wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 109}, {["y"] = 7, ["x"] = 31, ["name"] = "mcl_stairs:stair_wood", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 125}, {["y"] = 7, ["x"] = 31, ["name"] = "mcl_stairs:stair_wood", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 141}, {["y"] = 7, ["x"] = 31, ["name"] = "mcl_stairs:stair_wood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 125}, {["y"] = 7, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 31, ["name"] = "mcl_core:wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 31, ["name"] = "mcl_stairs:stair_wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 125}, {["y"] = 7, ["x"] = 31, ["name"] = "mcl_stairs:stair_wood", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 109}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:gravel", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:gravel", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:gravel", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:gravel", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:gravel", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:gravel", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:wood", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:sprucewood", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:wood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:sprucewood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:sprucewood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:tree", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:tree", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:tree", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:tree", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:tree", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:tree", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:tree", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:tree", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:tree", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:tree", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_farming:soil_wet", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_farming:soil_wet", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:water_source", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_farming:soil_wet", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_farming:soil_wet", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 141}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:tree", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_fences:fence", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_stairs:stair_cobble", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 141}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 32, ["name"] = "mcl_core:wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 32, ["name"] = "mcl_core:wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 32, ["name"] = "mcl_farming:wheat", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 95}, {["y"] = 2, ["x"] = 32, ["name"] = "mcl_farming:wheat", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 111}, {["y"] = 2, ["x"] = 32, ["name"] = "mcl_farming:wheat", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 143}, {["y"] = 2, ["x"] = 32, ["name"] = "mcl_farming:wheat", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 159}, {["y"] = 2, ["x"] = 32, ["name"] = "mcl_fences:fence", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 2, ["x"] = 32, ["name"] = "mcl_doors:wooden_door_b_1", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 2, ["x"] = 32, ["name"] = "mcl_core:wood", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 32, ["name"] = "mcl_core:wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 32, ["name"] = "xpanes:pane_natural", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 141}, {["y"] = 3, ["x"] = 32, ["name"] = "xpanes:pane_natural", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 3, ["x"] = 32, ["name"] = "xpanes:pane_natural", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 189}, {["y"] = 3, ["x"] = 32, ["name"] = "mcl_fences:fence", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 189}, {["y"] = 3, ["x"] = 32, ["name"] = "mcl_doors:wooden_door_t_1", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 189}, {["y"] = 3, ["x"] = 32, ["name"] = "mcl_core:wood", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 32, ["name"] = "mcl_core:wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 32, ["name"] = "mcl_core:wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 32, ["name"] = "mcl_torches:torch_wall", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 32, ["name"] = "mcl_wool:black", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 32, ["name"] = "mcl_torches:torch_wall", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 15}, {["y"] = 4, ["x"] = 32, ["name"] = "mcl_core:wood", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 32, ["name"] = "mcl_torches:torch_wall", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 4, ["x"] = 32, ["name"] = "mcl_core:wood", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 32, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 32, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 32, ["name"] = "mcl_core:wood", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 32, ["name"] = "mcl_core:tree", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 5, ["x"] = 32, ["name"] = "mcl_core:tree", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 6, ["x"] = 32, ["name"] = "mcl_stairs:slab_stone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 6, ["x"] = 32, ["name"] = "mcl_stairs:slab_stone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 6, ["x"] = 32, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 32, ["name"] = "mcl_core:wood", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 32, ["name"] = "mcl_core:tree", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 6, ["x"] = 32, ["name"] = "mcl_core:tree", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 6, ["x"] = 32, ["name"] = "mcl_core:tree", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 32, ["name"] = "mcl_stairs:stair_wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 93}, {["y"] = 7, ["x"] = 32, ["name"] = "mcl_stairs:stair_wood", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 109}, {["y"] = 7, ["x"] = 32, ["name"] = "mcl_stairs:stair_wood", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 125}, {["y"] = 7, ["x"] = 32, ["name"] = "mcl_stairs:stair_wood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 109}, {["y"] = 7, ["x"] = 32, ["name"] = "mcl_stairs:stair_wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 93}, {["y"] = 7, ["x"] = 32, ["name"] = "mcl_stairs:stair_wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 109}, {["y"] = 7, ["x"] = 32, ["name"] = "mcl_stairs:stair_wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 125}, {["y"] = 7, ["x"] = 32, ["name"] = "mcl_stairs:stair_wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 141}, {["y"] = 7, ["x"] = 32, ["name"] = "mcl_stairs:stair_wood", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 125}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:gravel", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:gravel", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:gravel", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:gravel", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:gravel", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:gravel", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_core:sprucewood", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_core:wood", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_core:sprucewood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_core:wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_core:sprucewood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_core:wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_core:sprucewood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_core:tree", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_farming:soil_wet", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_farming:soil_wet", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_core:water_source", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_farming:soil_wet", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_farming:soil_wet", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_core:tree", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 33, ["name"] = "mcl_core:wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 33, ["name"] = "mcl_farming:wheat", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 79}, {["y"] = 2, ["x"] = 33, ["name"] = "mcl_farming:wheat", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 95}, {["y"] = 2, ["x"] = 33, ["name"] = "mcl_farming:wheat", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 127}, {["y"] = 2, ["x"] = 33, ["name"] = "mcl_farming:wheat", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 143}, {["y"] = 2, ["x"] = 33, ["name"] = "mcl_core:wood", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 33, ["name"] = "mcl_core:wood", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 33, ["name"] = "mcl_core:wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 33, ["name"] = "mcl_core:tree", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 33, ["name"] = "mcl_torches:torch_wall", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 3, ["x"] = 33, ["name"] = "mcl_core:tree", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 3, ["x"] = 33, ["name"] = "mcl_core:wood", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 33, ["name"] = "mcl_core:wood", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 33, ["name"] = "mcl_core:wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 33, ["name"] = "mcl_core:wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 33, ["name"] = "mcl_torches:torch_wall", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 15}, {["y"] = 4, ["x"] = 33, ["name"] = "mcl_core:wood", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 33, ["name"] = "mcl_core:wood", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 33, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 33, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 33, ["name"] = "mcl_core:wood", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 33, ["name"] = "mcl_core:tree", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 5, ["x"] = 33, ["name"] = "mcl_core:tree", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 6, ["x"] = 33, ["name"] = "mcl_stairs:slab_stone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 6, ["x"] = 33, ["name"] = "mcl_stairs:slab_stone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 6, ["x"] = 33, ["name"] = "mcl_stairs:stair_wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 93}, {["y"] = 6, ["x"] = 33, ["name"] = "mcl_stairs:stair_wood", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 109}, {["y"] = 6, ["x"] = 33, ["name"] = "mcl_stairs:stair_wood", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 125}, {["y"] = 6, ["x"] = 33, ["name"] = "mcl_stairs:stair_wood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 109}, {["y"] = 6, ["x"] = 33, ["name"] = "mcl_stairs:stair_wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 125}, {["y"] = 6, ["x"] = 33, ["name"] = "mcl_stairs:stair_wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 141}, {["y"] = 6, ["x"] = 33, ["name"] = "mcl_stairs:stair_wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 157}, {["y"] = 6, ["x"] = 33, ["name"] = "mcl_stairs:stair_wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 173}, {["y"] = 6, ["x"] = 33, ["name"] = "mcl_stairs:stair_wood", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 157}, {["y"] = 6, ["x"] = 33, ["name"] = "mcl_core:tree", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 33, ["name"] = "mcl_core:tree", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 33, ["name"] = "mcl_core:tree", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:gravel", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:gravel", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:gravel", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:gravel", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:gravel", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 34, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:gravel", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:gravel", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:gravel", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:gravel", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:gravel", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:gravel", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:tree", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_farming:soil_wet", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_farming:soil_wet", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:water_source", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_farming:soil_wet", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_farming:soil_wet", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:tree", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_fences:fence", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_fences:fence", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_core:tree", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_core:tree", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_doors:wooden_door_b_1", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 140}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_farming:wheat", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 95}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_farming:wheat", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 79}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_farming:wheat", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 111}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_farming:wheat", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 127}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_core:tree", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 34, ["name"] = "mcl_core:tree", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_fences:fence", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_fences:fence", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_core:tree", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_core:tree", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_doors:wooden_door_t_1", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 156}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_core:tree", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 3, ["x"] = 34, ["name"] = "xpanes:pane_natural", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 172}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_core:tree", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_core:tree", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 34, ["name"] = "xpanes:pane_natural", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 34, ["name"] = "mcl_core:tree", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 4, ["x"] = 34, ["name"] = "mcl_fences:fence", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 4, ["x"] = 34, ["name"] = "mcl_fences:fence", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 93}, {["y"] = 4, ["x"] = 34, ["name"] = "mcl_core:tree", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 4, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 34, ["name"] = "mcl_core:tree", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 4, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 34, ["name"] = "mcl_torches:torch_wall", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 15}, {["y"] = 4, ["x"] = 34, ["name"] = "mcl_core:tree", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 34, ["name"] = "mcl_core:wood", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 34, ["name"] = "mcl_core:tree", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 5, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 34, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 34, ["name"] = "mcl_stairs:stair_wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 125}, {["y"] = 5, ["x"] = 34, ["name"] = "mcl_stairs:stair_wood", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 141}, {["y"] = 5, ["x"] = 34, ["name"] = "mcl_stairs:stair_wood", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 157}, {["y"] = 5, ["x"] = 34, ["name"] = "mcl_stairs:stair_wood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 141}, {["y"] = 5, ["x"] = 34, ["name"] = "mcl_stairs:stair_wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 125}, {["y"] = 5, ["x"] = 34, ["name"] = "mcl_stairs:stair_wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 141}, {["y"] = 5, ["x"] = 34, ["name"] = "mcl_stairs:stair_wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 157}, {["y"] = 5, ["x"] = 34, ["name"] = "mcl_stairs:stair_wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 173}, {["y"] = 5, ["x"] = 34, ["name"] = "mcl_stairs:stair_wood", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 157}, {["y"] = 5, ["x"] = 34, ["name"] = "mcl_core:tree", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 5, ["x"] = 34, ["name"] = "mcl_core:tree", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 5, ["x"] = 34, ["name"] = "mcl_core:tree", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 6, ["x"] = 34, ["name"] = "mcl_stairs:slab_stone", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 45}, {["y"] = 6, ["x"] = 34, ["name"] = "mcl_stairs:slab_stone", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 6, ["x"] = 34, ["name"] = "mcl_stairs:slab_stone", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 6, ["x"] = 34, ["name"] = "mcl_stairs:slab_stone", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 45}, {["y"] = 6, ["x"] = 34, ["name"] = "mcl_stairs:slab_stone", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 6, ["x"] = 34, ["name"] = "mcl_stairs:slab_stone", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 6, ["x"] = 34, ["name"] = "mcl_stairs:slab_stone", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 6, ["x"] = 34, ["name"] = "mcl_stairs:slab_stone", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 45}, {["y"] = 6, ["x"] = 34, ["name"] = "mcl_stairs:slab_stone", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 61}, {["y"] = 6, ["x"] = 34, ["name"] = "mcl_stairs:slab_stone", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 77}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:gravel", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:gravel", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:gravel", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:gravel", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:gravel", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:gravel", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:gravel", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:gravel", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:gravel", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:gravel", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:gravel", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:gravel", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:gravel", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:gravel", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:gravel", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:gravel", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:gravel", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:gravel", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:gravel", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:gravel", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:gravel", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:gravel", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:gravel", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:gravel", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:gravel", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:gravel", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:cobble", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:cobble", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:dirt", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:gravel", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:gravel", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:gravel", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 35, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 35, ["name"] = "mcl_stairs:stair_cobble", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 141}, {["y"] = 1, ["x"] = 35, ["name"] = "mcl_core:gravel", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 35, ["name"] = "mcl_core:cobble", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 35, ["name"] = "mcl_core:cobble", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 35, ["name"] = "mcl_core:cobble", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 35, ["name"] = "mcl_core:cobble", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 35, ["name"] = "mcl_core:gravel", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 35, ["name"] = "mcl_fences:fence", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 1, ["x"] = 35, ["name"] = "mcl_core:tree", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 35, ["name"] = "mcl_core:tree", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 35, ["name"] = "mcl_core:tree", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 35, ["name"] = "mcl_core:tree", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 35, ["name"] = "mcl_core:tree", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 35, ["name"] = "mcl_core:tree", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 35, ["name"] = "mcl_core:tree", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 2, ["x"] = 35, ["name"] = "mcl_core:cobble", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 35, ["name"] = "mcl_core:cobble", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 35, ["name"] = "mcl_core:cobble", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 35, ["name"] = "mcl_core:cobble", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 35, ["name"] = "mcl_fences:fence", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 3, ["x"] = 35, ["name"] = "mcl_fences:fence", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 3, ["x"] = 35, ["name"] = "mcl_fences:fence", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 3, ["x"] = 35, ["name"] = "mcl_fences:fence", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 189}, {["y"] = 4, ["x"] = 35, ["name"] = "mcl_stairs:stair_wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 157}, {["y"] = 4, ["x"] = 35, ["name"] = "mcl_stairs:stair_wood", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 173}, {["y"] = 4, ["x"] = 35, ["name"] = "mcl_stairs:stair_wood", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 189}, {["y"] = 4, ["x"] = 35, ["name"] = "mcl_stairs:stair_wood", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 173}, {["y"] = 4, ["x"] = 35, ["name"] = "mcl_stairs:stair_wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 157}, {["y"] = 4, ["x"] = 35, ["name"] = "mcl_stairs:stair_wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 141}, {["y"] = 4, ["x"] = 35, ["name"] = "mcl_stairs:stair_wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 125}, {["y"] = 4, ["x"] = 35, ["name"] = "mcl_stairs:stair_wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 141}, {["y"] = 4, ["x"] = 35, ["name"] = "mcl_stairs:stair_wood", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 141}, {["y"] = 4, ["x"] = 35, ["name"] = "mcl_fences:fence", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 4, ["x"] = 35, ["name"] = "mcl_fences:fence", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 141}, {["y"] = 4, ["x"] = 35, ["name"] = "mcl_torches:torch_wall", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 35, ["name"] = "mcl_wool:black", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 35, ["name"] = "mcl_torches:torch_wall", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 15}, {["y"] = 5, ["x"] = 35, ["name"] = "mcl_core:cobble", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 35, ["name"] = "mcl_core:cobble", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 35, ["name"] = "mcl_core:cobble", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 35, ["name"] = "mcl_core:cobble", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:cobble", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:water_source", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 57}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:water_source", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 41}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:cobble", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 36, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 36, ["name"] = "mcl_core:cobble", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 36, ["name"] = "mcl_core:cobble", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 36, ["name"] = "mcl_core:gravel", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 36, ["name"] = "mcl_core:cobble", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 36, ["name"] = "mcl_core:cobble", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 36, ["name"] = "mcl_torches:torch_wall", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 15}, {["y"] = 5, ["x"] = 36, ["name"] = "mcl_core:cobble", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 36, ["name"] = "mcl_core:cobble", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 36, ["name"] = "mcl_core:cobble", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 36, ["name"] = "mcl_core:cobble", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:cobble", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:water_source", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 73}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:water_source", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 57}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:cobble", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 37, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 37, ["name"] = "mcl_stairs:stair_cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 141}, {["y"] = 1, ["x"] = 37, ["name"] = "mcl_stairs:stair_cobble", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 125}, {["y"] = 1, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 37, ["name"] = "mcl_core:cobble", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 37, ["name"] = "mcl_core:cobble", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 37, ["name"] = "mcl_core:gravel", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 37, ["name"] = "mcl_core:cobble", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 37, ["name"] = "mcl_core:cobble", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 37, ["name"] = "mcl_torches:torch_wall", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 15}, {["y"] = 4, ["x"] = 37, ["name"] = "mcl_torches:torch_wall", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 15}, {["y"] = 5, ["x"] = 37, ["name"] = "mcl_stairs:stair_wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 125}, {["y"] = 5, ["x"] = 37, ["name"] = "mcl_stairs:stair_wood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 141}, {["y"] = 5, ["x"] = 37, ["name"] = "mcl_stairs:stair_wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 125}, {["y"] = 5, ["x"] = 37, ["name"] = "mcl_stairs:stair_wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 109}, {["y"] = 5, ["x"] = 37, ["name"] = "mcl_stairs:stair_wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 125}, {["y"] = 5, ["x"] = 37, ["name"] = "mcl_stairs:stair_wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 141}, {["y"] = 5, ["x"] = 37, ["name"] = "mcl_stairs:stair_wood", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 157}, {["y"] = 5, ["x"] = 37, ["name"] = "mcl_stairs:stair_wood", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 157}, {["y"] = 5, ["x"] = 37, ["name"] = "mcl_stairs:stair_wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 173}, {["y"] = 5, ["x"] = 37, ["name"] = "mcl_core:cobble", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 37, ["name"] = "mcl_core:cobble", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 37, ["name"] = "mcl_core:cobble", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 37, ["name"] = "mcl_core:cobble", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:gravel", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:gravel", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:gravel", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:gravel", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:gravel", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:gravel", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:gravel", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:gravel", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:gravel", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:gravel", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:gravel", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:gravel", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:gravel", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:gravel", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:gravel", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:gravel", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:gravel", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:gravel", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:gravel", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:gravel", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:gravel", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 38, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_fences:fence", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_fences:fence", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_core:gravel", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_core:gravel", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 38, ["name"] = "mcl_stairs:stair_cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 141}, {["y"] = 2, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 38, ["name"] = "mcl_doors:wooden_door_b_1", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 172}, {["y"] = 2, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 38, ["name"] = "mcl_fences:fence", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 2, ["x"] = 38, ["name"] = "mcl_core:tree", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 2, ["x"] = 38, ["name"] = "mcl_doors:wooden_door_b_1", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 125}, {["y"] = 2, ["x"] = 38, ["name"] = "mcl_core:wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 38, ["name"] = "mcl_core:tree", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 2, ["x"] = 38, ["name"] = "mcl_fences:fence", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 2, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 38, ["name"] = "mcl_doors:wooden_door_t_1", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 188}, {["y"] = 3, ["x"] = 38, ["name"] = "mcl_core:wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 38, ["name"] = "mcl_core:wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 38, ["name"] = "xpanes:pane_natural", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 140}, {["y"] = 3, ["x"] = 38, ["name"] = "xpanes:pane_natural", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 156}, {["y"] = 3, ["x"] = 38, ["name"] = "xpanes:pane_natural", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 172}, {["y"] = 3, ["x"] = 38, ["name"] = "mcl_core:wood", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 38, ["name"] = "mcl_fences:fence", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 189}, {["y"] = 3, ["x"] = 38, ["name"] = "mcl_core:tree", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 3, ["x"] = 38, ["name"] = "mcl_doors:wooden_door_t_1", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 141}, {["y"] = 3, ["x"] = 38, ["name"] = "mcl_core:wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 38, ["name"] = "mcl_core:tree", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 3, ["x"] = 38, ["name"] = "mcl_fences:fence", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 189}, {["y"] = 3, ["x"] = 38, ["name"] = "mcl_fences:fence", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 3, ["x"] = 38, ["name"] = "mcl_fences:fence", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 109}, {["y"] = 4, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 38, ["name"] = "mcl_core:wood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 38, ["name"] = "mcl_core:wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 38, ["name"] = "mcl_core:wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 38, ["name"] = "xpanes:pane_natural", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 156}, {["y"] = 4, ["x"] = 38, ["name"] = "xpanes:pane_natural", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 172}, {["y"] = 4, ["x"] = 38, ["name"] = "xpanes:pane_natural", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 188}, {["y"] = 4, ["x"] = 38, ["name"] = "mcl_core:wood", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 38, ["name"] = "mcl_torches:torch_wall", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 38, ["name"] = "mcl_wool:black", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 38, ["name"] = "mcl_torches:torch_wall", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 15}, {["y"] = 4, ["x"] = 38, ["name"] = "mcl_core:tree", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 4, ["x"] = 38, ["name"] = "mcl_core:wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 38, ["name"] = "mcl_core:wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 38, ["name"] = "mcl_core:tree", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 4, ["x"] = 38, ["name"] = "mcl_torches:torch_wall", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 15}, {["y"] = 4, ["x"] = 38, ["name"] = "mcl_wool:black", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 38, ["name"] = "mcl_torches:torch_wall", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 15}, {["y"] = 4, ["x"] = 38, ["name"] = "mcl_fences:fence", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 4, ["x"] = 38, ["name"] = "mcl_fences:fence", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 5, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 38, ["name"] = "mcl_core:wood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 38, ["name"] = "mcl_core:wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 38, ["name"] = "mcl_core:wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 38, ["name"] = "mcl_core:wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 38, ["name"] = "mcl_core:wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 38, ["name"] = "mcl_core:wood", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 38, ["name"] = "mcl_core:wood", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 38, ["name"] = "mcl_core:tree", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 38, ["name"] = "mcl_core:tree", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 38, ["name"] = "mcl_core:cobble", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 38, ["name"] = "mcl_stairs:stair_wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 93}, {["y"] = 6, ["x"] = 38, ["name"] = "mcl_stairs:stair_wood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 109}, {["y"] = 6, ["x"] = 38, ["name"] = "mcl_stairs:stair_wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 93}, {["y"] = 6, ["x"] = 38, ["name"] = "mcl_stairs:stair_wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 93}, {["y"] = 6, ["x"] = 38, ["name"] = "mcl_stairs:stair_wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 109}, {["y"] = 6, ["x"] = 38, ["name"] = "mcl_stairs:stair_wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 125}, {["y"] = 6, ["x"] = 38, ["name"] = "mcl_stairs:stair_wood", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 141}, {["y"] = 6, ["x"] = 38, ["name"] = "mcl_stairs:stair_wood", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 157}, {["y"] = 6, ["x"] = 38, ["name"] = "mcl_stairs:stair_wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 173}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 39, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 39, ["name"] = "mcl_core:gravel", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 39, ["name"] = "mcl_core:gravel", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 39, ["name"] = "mcl_core:gravel", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 39, ["name"] = "mcl_core:gravel", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 39, ["name"] = "mcl_core:gravel", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 39, ["name"] = "mcl_core:gravel", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 39, ["name"] = "crafting:workbench", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 187}, {["y"] = 2, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 39, ["name"] = "mcl_core:wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 39, ["name"] = "mcl_core:wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 39, ["name"] = "mcl_core:tree", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 2, ["x"] = 39, ["name"] = "mcl_doors:wooden_door_b_1", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 173}, {["y"] = 2, ["x"] = 39, ["name"] = "mcl_core:wood", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 39, ["name"] = "mcl_core:tree", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 3, ["x"] = 39, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 39, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 39, ["name"] = "mcl_core:wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 39, ["name"] = "mcl_core:wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 39, ["name"] = "mcl_core:tree", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 3, ["x"] = 39, ["name"] = "mcl_doors:wooden_door_t_1", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 189}, {["y"] = 3, ["x"] = 39, ["name"] = "mcl_core:wood", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 39, ["name"] = "mcl_core:tree", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 4, ["x"] = 39, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 39, ["name"] = "mcl_torches:torch_wall", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 4, ["x"] = 39, ["name"] = "mcl_torches:torch_wall", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 4, ["x"] = 39, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 39, ["name"] = "mcl_torches:torch_wall", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 15}, {["y"] = 4, ["x"] = 39, ["name"] = "mcl_core:wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 39, ["name"] = "mcl_core:wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 39, ["name"] = "mcl_torches:torch_wall", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 15}, {["y"] = 4, ["x"] = 39, ["name"] = "mcl_core:tree", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 4, ["x"] = 39, ["name"] = "mcl_core:wood", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 39, ["name"] = "mcl_core:wood", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 39, ["name"] = "mcl_core:tree", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 5, ["x"] = 39, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 39, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 39, ["name"] = "mcl_core:tree", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 39, ["name"] = "mcl_core:tree", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 39, ["name"] = "mcl_core:tree", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 5, ["x"] = 39, ["name"] = "mcl_core:tree", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 6, ["x"] = 39, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 39, ["name"] = "mcl_core:cobble", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 39, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 39, ["name"] = "mcl_core:tree", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 6, ["x"] = 39, ["name"] = "mcl_core:tree", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 7, ["x"] = 39, ["name"] = "mcl_stairs:stair_wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 93}, {["y"] = 7, ["x"] = 39, ["name"] = "mcl_stairs:stair_wood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 77}, {["y"] = 7, ["x"] = 39, ["name"] = "mcl_stairs:stair_wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 61}, {["y"] = 7, ["x"] = 39, ["name"] = "mcl_stairs:stair_wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 61}, {["y"] = 7, ["x"] = 39, ["name"] = "mcl_stairs:stair_wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 77}, {["y"] = 7, ["x"] = 39, ["name"] = "mcl_stairs:stair_wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 93}, {["y"] = 7, ["x"] = 39, ["name"] = "mcl_stairs:stair_wood", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 109}, {["y"] = 7, ["x"] = 39, ["name"] = "mcl_stairs:stair_wood", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 125}, {["y"] = 7, ["x"] = 39, ["name"] = "mcl_stairs:stair_wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 141}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 40, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 40, ["name"] = "mcl_core:wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 40, ["name"] = "mcl_core:wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 40, ["name"] = "mcl_core:wood", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 40, ["name"] = "mcl_core:wood", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 40, ["name"] = "xpanes:pane_natural", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 3, ["x"] = 40, ["name"] = "xpanes:pane_natural", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 3, ["x"] = 40, ["name"] = "xpanes:pane_natural", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 3, ["x"] = 40, ["name"] = "xpanes:pane_natural", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 125}, {["y"] = 3, ["x"] = 40, ["name"] = "mcl_core:wood", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 40, ["name"] = "mcl_core:wood", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 40, ["name"] = "xpanes:pane_natural", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 189}, {["y"] = 4, ["x"] = 40, ["name"] = "xpanes:pane_natural", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 189}, {["y"] = 4, ["x"] = 40, ["name"] = "mcl_core:wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 40, ["name"] = "mcl_core:wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 40, ["name"] = "mcl_core:wood", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 40, ["name"] = "mcl_torches:torch_wall", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 4, ["x"] = 40, ["name"] = "mcl_core:wood", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 40, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 40, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 40, ["name"] = "mcl_core:tree", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 40, ["name"] = "mcl_core:tree", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 40, ["name"] = "mcl_core:tree", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 5, ["x"] = 40, ["name"] = "mcl_core:tree", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 40, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 40, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 40, ["name"] = "mcl_core:tree", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 6, ["x"] = 40, ["name"] = "mcl_core:tree", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 6, ["x"] = 40, ["name"] = "mcl_core:tree", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 6, ["x"] = 40, ["name"] = "mcl_core:tree", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 7, ["x"] = 40, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 40, ["name"] = "mcl_core:cobble", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 40, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 8, ["x"] = 40, ["name"] = "mcl_stairs:stair_wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 93}, {["y"] = 8, ["x"] = 40, ["name"] = "mcl_stairs:stair_wood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 77}, {["y"] = 8, ["x"] = 40, ["name"] = "mcl_stairs:stair_wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 61}, {["y"] = 8, ["x"] = 40, ["name"] = "mcl_stairs:stair_wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 45}, {["y"] = 8, ["x"] = 40, ["name"] = "mcl_stairs:stair_wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 45}, {["y"] = 8, ["x"] = 40, ["name"] = "mcl_stairs:stair_wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 61}, {["y"] = 8, ["x"] = 40, ["name"] = "mcl_stairs:stair_wood", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 77}, {["y"] = 8, ["x"] = 40, ["name"] = "mcl_stairs:stair_wood", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 93}, {["y"] = 8, ["x"] = 40, ["name"] = "mcl_stairs:stair_wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 109}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 41, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 41, ["name"] = "mcl_fences:fence", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 104}, {["y"] = 2, ["x"] = 41, ["name"] = "mcl_fences:fence", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 138}, {["y"] = 2, ["x"] = 41, ["name"] = "mcl_stairs:stair_wood", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 155}, {["y"] = 2, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 41, ["name"] = "mcl_core:wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 41, ["name"] = "mcl_core:wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 41, ["name"] = "mcl_core:wood", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 41, ["name"] = "mcl_core:wood", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 41, ["name"] = "xpanes:pane_natural", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 3, ["x"] = 41, ["name"] = "mesecons_pressureplates:pressure_plate_wood_off", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 121}, {["y"] = 3, ["x"] = 41, ["name"] = "mesecons_pressureplates:pressure_plate_wood_off", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 155}, {["y"] = 3, ["x"] = 41, ["name"] = "xpanes:pane_natural", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 3, ["x"] = 41, ["name"] = "mcl_core:wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 41, ["name"] = "mcl_core:wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 41, ["name"] = "xpanes:pane_natural", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 3, ["x"] = 41, ["name"] = "xpanes:pane_natural", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 157}, {["y"] = 4, ["x"] = 41, ["name"] = "xpanes:pane_natural", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 4, ["x"] = 41, ["name"] = "xpanes:pane_natural", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 173}, {["y"] = 4, ["x"] = 41, ["name"] = "mcl_core:wood", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 41, ["name"] = "mcl_core:wood", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 41, ["name"] = "mcl_core:wood", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 41, ["name"] = "mcl_core:wood", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 41, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 41, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 41, ["name"] = "mcl_core:tree", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 41, ["name"] = "mcl_core:tree", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 41, ["name"] = "mcl_core:tree", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 5, ["x"] = 41, ["name"] = "mcl_core:tree", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 41, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 41, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 41, ["name"] = "mcl_core:tree", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 6, ["x"] = 41, ["name"] = "mcl_core:tree", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 6, ["x"] = 41, ["name"] = "mcl_core:tree", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 41, ["name"] = "mcl_core:tree", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 7, ["x"] = 41, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 41, ["name"] = "mcl_core:cobble", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 7, ["x"] = 41, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 8, ["x"] = 41, ["name"] = "mcl_stairs:stair_wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 77}, {["y"] = 8, ["x"] = 41, ["name"] = "mcl_stairs:stair_wood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 61}, {["y"] = 8, ["x"] = 41, ["name"] = "mcl_stairs:stair_wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 45}, {["y"] = 8, ["x"] = 41, ["name"] = "mcl_stairs:stair_wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 29}, {["y"] = 8, ["x"] = 41, ["name"] = "mcl_stairs:stair_wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 29}, {["y"] = 8, ["x"] = 41, ["name"] = "mcl_stairs:stair_wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 45}, {["y"] = 8, ["x"] = 41, ["name"] = "mcl_stairs:stair_wood", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 61}, {["y"] = 8, ["x"] = 41, ["name"] = "mcl_stairs:stair_wood", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 77}, {["y"] = 8, ["x"] = 41, ["name"] = "mcl_stairs:stair_wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 93}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 42, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 42, ["name"] = "mcl_stairs:stair_wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 89}, {["y"] = 2, ["x"] = 42, ["name"] = "mcl_stairs:stair_wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 106}, {["y"] = 2, ["x"] = 42, ["name"] = "mcl_stairs:stair_wood", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 122}, {["y"] = 2, ["x"] = 42, ["name"] = "mcl_stairs:stair_wood", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 138}, {["y"] = 2, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 42, ["name"] = "mcl_core:tree", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 2, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 42, ["name"] = "mcl_core:tree", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 2, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 42, ["name"] = "mcl_core:tree", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 3, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 42, ["name"] = "mcl_core:tree", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 3, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 42, ["name"] = "mcl_books:bookshelf", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 42, ["name"] = "mcl_books:bookshelf", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 42, ["name"] = "mcl_books:bookshelf", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 42, ["name"] = "mcl_books:bookshelf", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 42, ["name"] = "mcl_books:bookshelf", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 42, ["name"] = "mcl_books:bookshelf", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 42, ["name"] = "mcl_books:bookshelf", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 42, ["name"] = "mcl_core:tree", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 4, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 42, ["name"] = "mcl_core:tree", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 4, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 42, ["name"] = "mcl_core:tree", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 42, ["name"] = "mcl_core:tree", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 42, ["name"] = "mcl_core:tree", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 5, ["x"] = 42, ["name"] = "mcl_core:tree", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 42, ["name"] = "mcl_core:cobble", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 42, ["name"] = "mcl_core:wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 42, ["name"] = "mcl_core:tree", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 42, ["name"] = "mcl_core:tree", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 7, ["x"] = 42, ["name"] = "mcl_stairs:stair_wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 77}, {["y"] = 7, ["x"] = 42, ["name"] = "mcl_stairs:stair_wood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 61}, {["y"] = 7, ["x"] = 42, ["name"] = "mcl_stairs:stair_wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 45}, {["y"] = 7, ["x"] = 42, ["name"] = "mcl_stairs:stair_wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 29}, {["y"] = 7, ["x"] = 42, ["name"] = "mcl_stairs:stair_wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 29}, {["y"] = 7, ["x"] = 42, ["name"] = "mcl_stairs:stair_wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 45}, {["y"] = 7, ["x"] = 42, ["name"] = "mcl_stairs:stair_wood", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 61}, {["y"] = 7, ["x"] = 42, ["name"] = "mcl_stairs:stair_wood", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 77}, {["y"] = 7, ["x"] = 42, ["name"] = "mcl_stairs:stair_wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 93}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 43, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 1, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 43, ["name"] = "mcl_core:tree", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 2, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 2, ["x"] = 43, ["name"] = "mcl_core:tree", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 3, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 43, ["name"] = "xpanes:pane_natural", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 124}, {["y"] = 3, ["x"] = 43, ["name"] = "xpanes:pane_natural", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 108}, {["y"] = 3, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 43, ["name"] = "xpanes:pane_natural", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 108}, {["y"] = 3, ["x"] = 43, ["name"] = "xpanes:pane_natural", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 124}, {["y"] = 3, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 43, ["name"] = "mcl_core:tree", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 3, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 43, ["name"] = "mcl_core:tree", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 4, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 43, ["name"] = "mcl_core:tree", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 4, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 43, ["name"] = "mcl_core:tree", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 5, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 43, ["name"] = "mcl_core:wood", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 43, ["name"] = "mcl_core:cobble", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 43, ["name"] = "mcl_core:tree", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 5, ["x"] = 43, ["name"] = "mcl_core:tree", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 6, ["x"] = 43, ["name"] = "mcl_stairs:stair_wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 77}, {["y"] = 6, ["x"] = 43, ["name"] = "mcl_stairs:stair_wood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 61}, {["y"] = 6, ["x"] = 43, ["name"] = "mcl_stairs:stair_wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 45}, {["y"] = 6, ["x"] = 43, ["name"] = "mcl_stairs:stair_wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 29}, {["y"] = 6, ["x"] = 43, ["name"] = "mcl_stairs:stair_wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 29}, {["y"] = 6, ["x"] = 43, ["name"] = "mcl_stairs:stair_wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 45}, {["y"] = 6, ["x"] = 43, ["name"] = "mcl_stairs:stair_wood", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 61}, {["y"] = 6, ["x"] = 43, ["name"] = "mcl_stairs:stair_wood", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 77}, {["y"] = 6, ["x"] = 43, ["name"] = "mcl_stairs:stair_wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 93}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 14, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 15, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 16, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 17, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 18, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 20, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 22, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 23, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 24, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 25, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 26, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 27, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 28, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 29, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 30, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 31, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 32, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 33, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 34, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 35, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 36, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 37, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 38, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 39, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 40, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 41, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 42, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 43, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 44, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 45, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 46, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 47, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 48, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 49, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 50, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 51, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 52, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 53, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 54, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 55, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 56, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 57, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 58, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 0, ["x"] = 44, ["name"] = "mcl_core:dirt_with_grass", ["z"] = 59, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 44, ["name"] = "mcl_stairs:stair_wood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 77}, {["y"] = 5, ["x"] = 44, ["name"] = "mcl_stairs:stair_wood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 61}, {["y"] = 5, ["x"] = 44, ["name"] = "mcl_stairs:stair_wood", ["z"] = 7, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 77}, {["y"] = 5, ["x"] = 44, ["name"] = "mcl_stairs:stair_wood", ["z"] = 8, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 61}, {["y"] = 5, ["x"] = 44, ["name"] = "mcl_stairs:stair_wood", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 45}, {["y"] = 5, ["x"] = 44, ["name"] = "mcl_stairs:stair_wood", ["z"] = 10, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 61}, {["y"] = 5, ["x"] = 44, ["name"] = "mcl_stairs:stair_wood", ["z"] = 11, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 77}, {["y"] = 5, ["x"] = 44, ["name"] = "mcl_stairs:stair_wood", ["z"] = 12, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 77}, {["y"] = 5, ["x"] = 44, ["name"] = "mcl_stairs:stair_wood", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 93}} diff --git a/mods/MAPGEN/mcl_structures/build/witcher_house.we b/mods/MAPGEN/mcl_structures/build/witcher_house.we index f488a404..81b49248 100644 --- a/mods/MAPGEN/mcl_structures/build/witcher_house.we +++ b/mods/MAPGEN/mcl_structures/build/witcher_house.we @@ -1 +1 @@ -return {{["y"] = 6, ["x"] = 0, ["name"] = "stairs:stair_sprucewood", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 13}, {["y"] = 6, ["x"] = 0, ["name"] = "stairs:stair_sprucewood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 13}, {["y"] = 6, ["x"] = 0, ["name"] = "stairs:stair_sprucewood", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 13}, {["y"] = 6, ["x"] = 0, ["name"] = "stairs:stair_sprucewood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 13}, {["y"] = 6, ["x"] = 0, ["name"] = "stairs:stair_sprucewood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 13}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:sprucetree", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:sprucetree", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:sprucetree", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:sprucetree", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 2, ["x"] = 1, ["name"] = "mcl_core:sprucetree", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 2, ["x"] = 1, ["name"] = "mcl_core:sprucetree", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:sprucewood", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:sprucetree", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:sprucewood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:sprucewood", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:sprucewood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:sprucetree", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_fences:fence", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 11}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:sprucetree", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:sprucewood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:sprucewood", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:sprucewood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:sprucetree", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 5, ["x"] = 1, ["name"] = "mcl_core:sprucetree", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 5, ["x"] = 1, ["name"] = "mcl_core:sprucewood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 1, ["name"] = "mcl_core:sprucewood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 1, ["name"] = "mcl_core:sprucetree", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 6, ["x"] = 1, ["name"] = "stairs:stair_sprucewood", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 6, ["x"] = 1, ["name"] = "mcl_core:sprucewood", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 1, ["name"] = "mcl_core:sprucewood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 1, ["name"] = "mcl_core:sprucewood", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 1, ["name"] = "mcl_core:sprucewood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 1, ["name"] = "mcl_core:sprucewood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 1, ["name"] = "stairs:stair_sprucewood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 13}, {["y"] = 3, ["x"] = 2, ["name"] = "mcl_core:sprucewood", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 2, ["name"] = "mcl_core:sprucewood", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 2, ["name"] = "mcl_core:sprucewood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 2, ["name"] = "mcl_core:sprucewood", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 2, ["name"] = "mcl_core:sprucewood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 2, ["name"] = "mcl_core:sprucewood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 2, ["name"] = "mcl_core:sprucewood", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 2, ["name"] = "mcl_core:sprucewood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 2, ["name"] = "mcl_core:sprucewood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 2, ["name"] = "stairs:stair_sprucewood", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 6, ["x"] = 2, ["name"] = "mcl_core:sprucewood", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 2, ["name"] = "mcl_core:sprucewood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 2, ["name"] = "mcl_core:sprucewood", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 2, ["name"] = "mcl_core:sprucewood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 2, ["name"] = "mcl_core:sprucewood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 2, ["name"] = "stairs:stair_sprucewood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 13}, {["y"] = 3, ["x"] = 3, ["name"] = "mcl_core:sprucewood", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 3, ["name"] = "mcl_core:sprucewood", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 3, ["name"] = "mcl_core:sprucewood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 3, ["name"] = "mcl_core:sprucewood", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 3, ["name"] = "mcl_core:sprucewood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 3, ["name"] = "mcl_core:sprucewood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 3, ["name"] = "mcl_core:sprucewood", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 3, ["name"] = "mcl_core:sprucewood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 3, ["name"] = "mcl_core:sprucewood", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 3, ["name"] = "mcl_core:sprucewood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 3, ["name"] = "stairs:stair_sprucewood", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 6, ["x"] = 3, ["name"] = "mcl_core:sprucewood", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 3, ["name"] = "mcl_core:sprucewood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 3, ["name"] = "mcl_core:sprucewood", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 3, ["name"] = "mcl_core:sprucewood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 3, ["name"] = "mcl_core:sprucewood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 3, ["name"] = "stairs:stair_sprucewood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 13}, {["y"] = 3, ["x"] = 4, ["name"] = "mcl_core:sprucewood", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 4, ["name"] = "mcl_core:sprucewood", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 4, ["name"] = "mcl_core:sprucewood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 4, ["name"] = "mcl_core:sprucewood", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 4, ["name"] = "mcl_core:sprucewood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 4, ["name"] = "mcl_core:sprucewood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 4, ["name"] = "mcl_core:sprucewood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 4, ["name"] = "mcl_core:sprucewood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 4, ["name"] = "stairs:stair_sprucewood", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 6, ["x"] = 4, ["name"] = "mcl_core:sprucewood", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 4, ["name"] = "mcl_core:sprucewood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 4, ["name"] = "mcl_core:sprucewood", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 4, ["name"] = "mcl_core:sprucewood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 4, ["name"] = "mcl_core:sprucewood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 4, ["name"] = "stairs:stair_sprucewood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 13}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:sprucetree", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:sprucetree", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:sprucetree", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:sprucetree", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_core:sprucetree", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_core:sprucetree", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:sprucewood", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:sprucetree", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:sprucewood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:sprucewood", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:sprucewood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:sprucetree", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_fences:fence", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 11}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:sprucetree", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:sprucewood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:sprucewood", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:sprucewood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:sprucetree", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 5, ["x"] = 5, ["name"] = "mcl_core:sprucetree", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 5, ["x"] = 5, ["name"] = "mcl_core:sprucewood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 5, ["name"] = "flowers:pot", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {["item"] = "farming:mushroom_red", ["owner"] = "davethedevils"}}, ["param2"] = 0, ["param1"] = 12}, {["y"] = 5, ["x"] = 5, ["name"] = "mcl_core:sprucewood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 5, ["name"] = "mcl_core:sprucetree", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 6, ["x"] = 5, ["name"] = "stairs:stair_sprucewood", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 6, ["x"] = 5, ["name"] = "mcl_core:sprucewood", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 5, ["name"] = "mcl_core:sprucewood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 5, ["name"] = "mcl_core:sprucewood", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 5, ["name"] = "mcl_core:sprucewood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 5, ["name"] = "mcl_core:sprucewood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 5, ["name"] = "stairs:stair_sprucewood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 13}, {["y"] = 6, ["x"] = 6, ["name"] = "stairs:stair_sprucewood", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 13}, {["y"] = 6, ["x"] = 6, ["name"] = "stairs:stair_sprucewood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 13}, {["y"] = 6, ["x"] = 6, ["name"] = "stairs:stair_sprucewood", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 13}, {["y"] = 6, ["x"] = 6, ["name"] = "stairs:stair_sprucewood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 13}, {["y"] = 6, ["x"] = 6, ["name"] = "stairs:stair_sprucewood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 13}} +return {{["y"] = 6, ["x"] = 0, ["name"] = "mcl_stairs:stair_sprucewood", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 13}, {["y"] = 6, ["x"] = 0, ["name"] = "mcl_stairs:stair_sprucewood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 13}, {["y"] = 6, ["x"] = 0, ["name"] = "mcl_stairs:stair_sprucewood", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 13}, {["y"] = 6, ["x"] = 0, ["name"] = "mcl_stairs:stair_sprucewood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 13}, {["y"] = 6, ["x"] = 0, ["name"] = "mcl_stairs:stair_sprucewood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 13}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:sprucetree", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "mcl_core:sprucetree", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:sprucetree", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 1, ["name"] = "mcl_core:sprucetree", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 2, ["x"] = 1, ["name"] = "mcl_core:sprucetree", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 2, ["x"] = 1, ["name"] = "mcl_core:sprucetree", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:sprucewood", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:sprucetree", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:sprucewood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:sprucewood", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:sprucewood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 1, ["name"] = "mcl_core:sprucetree", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_fences:fence", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 11}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:sprucetree", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:sprucewood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:sprucewood", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:sprucewood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 1, ["name"] = "mcl_core:sprucetree", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 5, ["x"] = 1, ["name"] = "mcl_core:sprucetree", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 5, ["x"] = 1, ["name"] = "mcl_core:sprucewood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 1, ["name"] = "mcl_core:sprucewood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 1, ["name"] = "mcl_core:sprucetree", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 6, ["x"] = 1, ["name"] = "mcl_stairs:stair_sprucewood", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 6, ["x"] = 1, ["name"] = "mcl_core:sprucewood", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 1, ["name"] = "mcl_core:sprucewood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 1, ["name"] = "mcl_core:sprucewood", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 1, ["name"] = "mcl_core:sprucewood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 1, ["name"] = "mcl_core:sprucewood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 1, ["name"] = "mcl_stairs:stair_sprucewood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 13}, {["y"] = 3, ["x"] = 2, ["name"] = "mcl_core:sprucewood", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 2, ["name"] = "mcl_core:sprucewood", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 2, ["name"] = "mcl_core:sprucewood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 2, ["name"] = "mcl_core:sprucewood", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 2, ["name"] = "mcl_core:sprucewood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 2, ["name"] = "mcl_core:sprucewood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 2, ["name"] = "mcl_core:sprucewood", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 2, ["name"] = "mcl_core:sprucewood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 2, ["name"] = "mcl_core:sprucewood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 2, ["name"] = "mcl_stairs:stair_sprucewood", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 6, ["x"] = 2, ["name"] = "mcl_core:sprucewood", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 2, ["name"] = "mcl_core:sprucewood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 2, ["name"] = "mcl_core:sprucewood", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 2, ["name"] = "mcl_core:sprucewood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 2, ["name"] = "mcl_core:sprucewood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 2, ["name"] = "mcl_stairs:stair_sprucewood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 13}, {["y"] = 3, ["x"] = 3, ["name"] = "mcl_core:sprucewood", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 3, ["name"] = "mcl_core:sprucewood", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 3, ["name"] = "mcl_core:sprucewood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 3, ["name"] = "mcl_core:sprucewood", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 3, ["name"] = "mcl_core:sprucewood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 3, ["name"] = "mcl_core:sprucewood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 3, ["name"] = "mcl_core:sprucewood", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 3, ["name"] = "mcl_core:sprucewood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 3, ["name"] = "mcl_core:sprucewood", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 3, ["name"] = "mcl_core:sprucewood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 3, ["name"] = "mcl_stairs:stair_sprucewood", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 6, ["x"] = 3, ["name"] = "mcl_core:sprucewood", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 3, ["name"] = "mcl_core:sprucewood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 3, ["name"] = "mcl_core:sprucewood", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 3, ["name"] = "mcl_core:sprucewood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 3, ["name"] = "mcl_core:sprucewood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 3, ["name"] = "mcl_stairs:stair_sprucewood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 13}, {["y"] = 3, ["x"] = 4, ["name"] = "mcl_core:sprucewood", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 4, ["name"] = "mcl_core:sprucewood", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 4, ["name"] = "mcl_core:sprucewood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 4, ["name"] = "mcl_core:sprucewood", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 4, ["name"] = "mcl_core:sprucewood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 4, ["name"] = "mcl_core:sprucewood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 4, ["name"] = "mcl_core:sprucewood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 4, ["name"] = "mcl_core:sprucewood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 4, ["name"] = "mcl_stairs:stair_sprucewood", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 6, ["x"] = 4, ["name"] = "mcl_core:sprucewood", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 4, ["name"] = "mcl_core:sprucewood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 4, ["name"] = "mcl_core:sprucewood", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 4, ["name"] = "mcl_core:sprucewood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 4, ["name"] = "mcl_core:sprucewood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 4, ["name"] = "mcl_stairs:stair_sprucewood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 13}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:sprucetree", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "mcl_core:sprucetree", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:sprucetree", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "mcl_core:sprucetree", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_core:sprucetree", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 2, ["x"] = 5, ["name"] = "mcl_core:sprucetree", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:sprucewood", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:sprucetree", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 1, ["param1"] = 0}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:sprucewood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:sprucewood", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:sprucewood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 3, ["x"] = 5, ["name"] = "mcl_core:sprucetree", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_fences:fence", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 11}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:sprucetree", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:sprucewood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:sprucewood", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:sprucewood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 4, ["x"] = 5, ["name"] = "mcl_core:sprucetree", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 5, ["x"] = 5, ["name"] = "mcl_core:sprucetree", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 0}, {["y"] = 5, ["x"] = 5, ["name"] = "mcl_core:sprucewood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 5, ["name"] = "flowers:pot", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {["item"] = "farming:mushroom_red", ["owner"] = "davethedevils"}}, ["param2"] = 0, ["param1"] = 12}, {["y"] = 5, ["x"] = 5, ["name"] = "mcl_core:sprucewood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 5, ["x"] = 5, ["name"] = "mcl_core:sprucetree", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 0}, {["y"] = 6, ["x"] = 5, ["name"] = "mcl_stairs:stair_sprucewood", ["z"] = 0, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 13}, {["y"] = 6, ["x"] = 5, ["name"] = "mcl_core:sprucewood", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 5, ["name"] = "mcl_core:sprucewood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 5, ["name"] = "mcl_core:sprucewood", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 5, ["name"] = "mcl_core:sprucewood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 5, ["name"] = "mcl_core:sprucewood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 0, ["param1"] = 0}, {["y"] = 6, ["x"] = 5, ["name"] = "mcl_stairs:stair_sprucewood", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 2, ["param1"] = 13}, {["y"] = 6, ["x"] = 6, ["name"] = "mcl_stairs:stair_sprucewood", ["z"] = 1, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 13}, {["y"] = 6, ["x"] = 6, ["name"] = "mcl_stairs:stair_sprucewood", ["z"] = 2, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 13}, {["y"] = 6, ["x"] = 6, ["name"] = "mcl_stairs:stair_sprucewood", ["z"] = 3, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 13}, {["y"] = 6, ["x"] = 6, ["name"] = "mcl_stairs:stair_sprucewood", ["z"] = 4, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 13}, {["y"] = 6, ["x"] = 6, ["name"] = "mcl_stairs:stair_sprucewood", ["z"] = 5, ["meta"] = {["inventory"] = {}, ["fields"] = {}}, ["param2"] = 3, ["param1"] = 13}} diff --git a/mods/MAPGEN/mcl_structures/depends.txt b/mods/MAPGEN/mcl_structures/depends.txt index bb1009bd..eab89039 100644 --- a/mods/MAPGEN/mcl_structures/depends.txt +++ b/mods/MAPGEN/mcl_structures/depends.txt @@ -2,7 +2,7 @@ mcl_core mcl_loot xpanes mcl_doors -stairs +mcl_stairs mcl_colorblocks mcl_wool mcl_fences