Merge pull request #3957 from webbukkit/v3.0

v3.5 release
This commit is contained in:
mikeprimm 2023-04-29 20:53:30 -05:00 committed by GitHub
commit 5e090fc4d8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
202 changed files with 6383 additions and 84 deletions

View File

@ -54,11 +54,13 @@ public abstract class GenericMapChunkCache extends MapChunkCache {
private DynmapBlockState blk;
private final int worldheight;
private final int ymin;
private final int sealevel;
OurMapIterator(int x0, int y0, int z0) {
initialize(x0, y0, z0);
worldheight = dw.worldheight;
ymin = dw.minY;
sealevel = dw.sealevel;
}
@Override
@ -483,7 +485,16 @@ public abstract class GenericMapChunkCache extends MapChunkCache {
public final int getWorldHeight() {
return worldheight;
}
@Override
public final int getWorldYMin() {
return ymin;
}
/**
* Get world sealevel
*/
public final int getWorldSeaLevel() {
return sealevel;
}
@Override
public final long getBlockKey() {
return (((chunkindex * (worldheight - ymin)) + (y - ymin)) << 8) | (bx << 4) | bz;
@ -1284,19 +1295,19 @@ public abstract class GenericMapChunkCache extends MapChunkCache {
bitsperblock = (statelist.length * 64) / 4096;
dbp = new DataBitsPacked(bitsperblock, 4096, statelist);
}
if (bitsperblock > 8) { // Not palette
for (int j = 0; j < 4096; j++) {
int v = db != null ? db.get(j) : dbp.getAt(j);
sbld.xyzBlockState(j & 0xF, (j & 0xF00) >> 8, (j & 0xF0) >> 4, DynmapBlockState.getStateByGlobalIndex(v));
}
}
else {
//if (bitsperblock > 8) { // Not palette
// for (int j = 0; j < 4096; j++) {
// int v = db != null ? db.get(j) : dbp.getAt(j);
// sbld.xyzBlockState(j & 0xF, (j & 0xF00) >> 8, (j & 0xF0) >> 4, DynmapBlockState.getStateByGlobalIndex(v));
// }
//}
//else {
sbld.xyzBlockStatePalette(palette); // Set palette
for (int j = 0; j < 4096; j++) {
int v = db != null ? db.get(j) : dbp.getAt(j);
sbld.xyzBlockStateInPalette(j & 0xF, (j & 0xF00) >> 8, (j & 0xF0) >> 4, (short)v);
}
}
//}
}
}
if (sec.contains("BlockLight")) {

View File

@ -22,6 +22,8 @@ import org.json.simple.JSONObject;
public class CaveHDShader implements HDShader {
private String name;
private boolean iflit;
private Color startColor;
private Color endColor;
private BitSet hiddenids = new BitSet();
private void setHidden(DynmapBlockState blk) {
@ -41,7 +43,8 @@ public class CaveHDShader implements HDShader {
public CaveHDShader(DynmapCore core, ConfigurationNode configuration) {
name = (String) configuration.get("name");
iflit = configuration.getBoolean("onlyiflit", false);
startColor = configuration.getColor("startColor", null);
endColor = configuration.getColor("endColor", null);
for (int i = 0; i < DynmapBlockState.getGlobalIndexMax(); i++) {
DynmapBlockState bs = DynmapBlockState.getStateByGlobalIndex(i);
if (bs.isAir() || bs.isWater()) {
@ -115,19 +118,17 @@ public class CaveHDShader implements HDShader {
protected MapIterator mapiter;
protected HDMap map;
private boolean air;
private int yshift;
private final int sealevel;
private final int ymax, ymin;
final int[] lightingTable;
private OurShaderState(MapIterator mapiter, HDMap map, MapChunkCache cache) {
this.mapiter = mapiter;
this.map = map;
this.color = new Color();
int wheight = mapiter.getWorldHeight();
yshift = 0;
while(wheight > 128) {
wheight >>= 1;
yshift++;
}
this.ymax = mapiter.getWorldHeight() - 1;
this.ymin = mapiter.getWorldYMin();
this.sealevel = mapiter.getWorldSeaLevel();
if (MapManager.mapman.useBrightnessTable()) {
lightingTable = cache.getWorld().getBrightnessTable();
}
@ -187,17 +188,27 @@ public class CaveHDShader implements HDShader {
return false;
}
int cr, cg, cb;
int mult = 256;
int mult;
int ys = mapiter.getY() >> yshift;
if (ys < 64) {
cr = 0;
cg = 64 + ys * 3;
cb = 255 - ys * 4;
} else {
cr = (ys - 64) * 4;
cg = 255;
cb = 0;
int y = mapiter.getY();
if((startColor != null) && (endColor != null))
{
double interp = ((double)(y - this.ymin)) / (this.ymax - this.ymin);
cr = (int)(((1.0 - interp) * startColor.getRed()) + (interp * endColor.getRed()));
cg = (int)(((1.0 - interp) * startColor.getGreen()) + (interp * endColor.getGreen()));
cb = (int)(((1.0 - interp) * startColor.getBlue()) + (interp * endColor.getBlue()));
}
else
{
if (y < this.sealevel) {
cr = 0;
cg = 64 + ((192 * (y - this.ymin)) / (this.sealevel - this.ymin));
cb = 255 - (255 * (y - this.ymin)) / (this.sealevel - this.ymin);
} else {
cr = (255 * (y - this.sealevel)) / (this.ymax - this.sealevel);
cg = 255;
cb = 0;
}
}
/* Figure out which color to use */
switch(ps.getLastBlockStep()) {

View File

@ -61,6 +61,10 @@ public class ChunkVersionHDShader implements HDShader {
new DataVersionMap(2975, "1.18.2", 0x38bfa5),
new DataVersionMap(3105, "1.19", 0xd56f82),
new DataVersionMap(3116, "1.19.1", 0xe196a4),
new DataVersionMap(3120, "1.19.2", 0xe7aeb8),
new DataVersionMap(3218, "1.19.3", 0xf8c0c8),
new DataVersionMap(3337, "1.19.4", 0xffb6c1),
};
final static Color unknown_color = new Color(255, 255, 255);

View File

@ -18,7 +18,6 @@ import org.dynmap.Log;
import org.dynmap.MapManager;
import org.dynmap.MapTile;
import org.dynmap.MapType;
import org.dynmap.MapType.ImageFormat;
import org.dynmap.MapTypeState;
import org.dynmap.markers.impl.MarkerAPIImpl;
import org.dynmap.renderer.DynmapBlockState;

View File

@ -106,10 +106,18 @@ public interface MapIterator extends MapDataContext {
*/
BlockStep getLastStep();
/**
* Get world height
* Get world height (yMax+1)
* @return height
*/
int getWorldHeight();
/**
* Get world bottom (yMin)
*/
int getWorldYMin();
/**
* Get world sealevel
*/
int getWorldSeaLevel();
/**
* Get block key for current position (unique ID for block within cache being iterated)
* @return block key

View File

@ -9,6 +9,8 @@
<meta name="description" content="Minecraft Dynamic Map" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no" />
<!-- These 2 lines make us fullscreen on apple mobile products - remove if you don't like that -->
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<link rel="apple-touch-icon" sizes="180x180" href="images/icons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="images/icons/favicon-32x32.png">

File diff suppressed because one or more lines are too long

View File

@ -3733,3 +3733,725 @@ block:id=%melon_stem,patch0=0:melon_stem,blockcolor=foliagebiome,transparency=TR
[1.19-]block:id=%lightning_rod,state=powered:false/facing:up,patch0=0:lightning_rod,transparency=SEMITRANSPARENT,stdrot=true
[1.19-]block:id=%lightning_rod,state=powered:true/facing:down,patch0=0:lightning_rod_on,transparency=SEMITRANSPARENT,stdrot=true
[1.19-]block:id=%lightning_rod,state=powered:false/facing:down,patch0=0:lightning_rod,transparency=SEMITRANSPARENT,stdrot=true
# 1.19.3
[1.19.3-]texture:id=bamboo_block,filename=assets/minecraft/textures/block/bamboo_block.png,xcount=1,ycount=1
[1.19.3-]texture:id=bamboo_block_top,filename=assets/minecraft/textures/block/bamboo_block_top.png,xcount=1,ycount=1
[1.19.3-]texture:id=stripped_bamboo_block,filename=assets/minecraft/textures/block/stripped_bamboo_block.png,xcount=1,ycount=1
[1.19.3-]texture:id=stripped_bamboo_block_top,filename=assets/minecraft/textures/block/stripped_bamboo_block_top.png,xcount=1,ycount=1
[1.19.3-]texture:id=stripped_bamboo_block,filename=assets/minecraft/textures/block/stripped_bamboo_block.png,xcount=1,ycount=1
[1.19.3-]texture:id=stripped_bamboo_block_top,filename=assets/minecraft/textures/block/stripped_bamboo_block_top.png,xcount=1,ycount=1
[1.19.3-]texture:id=bamboo_planks,filename=assets/minecraft/textures/block/bamboo_planks.png,xcount=1,ycount=1
[1.19.3-]texture:id=bamboo_mosaic,filename=assets/minecraft/textures/block/bamboo_mosaic.png,xcount=1,ycount=1
[1.19.3-]texture:id=bamboo_door_top,filename=assets/minecraft/textures/block/bamboo_door_top.png,xcount=1,ycount=1
[1.19.3-]texture:id=bamboo_door_bottom,filename=assets/minecraft/textures/block/bamboo_door_bottom.png,xcount=1,ycount=1
[1.19.3-]texture:id=bamboo_trapdoor,filename=assets/minecraft/textures/block/bamboo_trapdoor.png,xcount=1,ycount=1
[1.19.3-]texturefile:id=bamboo_sign,filename=assets/minecraft/textures/entity/signs/bamboo.png,format=SIGN
[1.19.3-]texturefile:id=piglin,filename=assets/minecraft/textures/entity/piglin/piglin.png,format=SKIN
[1.19.3-]texture:id=chiseled_bookshelf_side,filename=assets/minecraft/textures/block/chiseled_bookshelf_side.png,xcount=1,ycount=1
[1.19.3-]texture:id=chiseled_bookshelf_top,filename=assets/minecraft/textures/block/chiseled_bookshelf_top.png,xcount=1,ycount=1
[1.19.3-]texture:id=chiseled_bookshelf_occupied,filename=assets/minecraft/textures/block/chiseled_bookshelf_occupied.png,xcount=1,ycount=1
[1.19.3-]texture:id=chiseled_bookshelf_empty,filename=assets/minecraft/textures/block/chiseled_bookshelf_empty.png,xcount=1,ycount=1
[1.19.3-]texturefile:id=acacia_hanging_sign,filename=assets/minecraft/textures/entity/signs/hanging/acacia.png,format=SIGN
[1.19.3-]texturefile:id=bamboo_hanging_sign,filename=assets/minecraft/textures/entity/signs/hanging/bamboo.png,format=SIGN
[1.19.3-]texturefile:id=birch_hanging_sign,filename=assets/minecraft/textures/entity/signs/hanging/birch.png,format=SIGN
[1.19.3-]texturefile:id=crimson_hanging_sign,filename=assets/minecraft/textures/entity/signs/hanging/crimson.png,format=SIGN
[1.19.3-]texturefile:id=dark_oak_hanging_sign,filename=assets/minecraft/textures/entity/signs/hanging/dark_oak.png,format=SIGN
[1.19.3-]texturefile:id=jungle_hanging_sign,filename=assets/minecraft/textures/entity/signs/hanging/jungle.png,format=SIGN
[1.19.3-]texturefile:id=mangrove_hanging_sign,filename=assets/minecraft/textures/entity/signs/hanging/mangrove.png,format=SIGN
[1.19.3-]texturefile:id=oak_hanging_sign,filename=assets/minecraft/textures/entity/signs/hanging/oak_hanging_sign.png,format=SIGN
[1.19.3-]texturefile:id=spruce_hanging_sign,filename=assets/minecraft/textures/entity/signs/hanging/spruce_hanging_sign.png,format=SIGN
[1.19.3-]texturefile:id=warped_hanging_sign,filename=assets/minecraft/textures/entity/signs/hanging/warped.png,format=SIGN
[1.19.3-]block:id=%bamboo_block,state=axis:x,patch0=0:bamboo_block,patch1=0:bamboo_block_top,stdrot=true
[1.19.3-]block:id=%bamboo_block,state=axis:y,patch0=0:bamboo_block,patch1=0:bamboo_block_top,patch2=0:bamboo_block,patch3=0:bamboo_block,patch4=0:bamboo_block_top,patch5=0:bamboo_block,stdrot=true
[1.19.3-]block:id=%bamboo_block,state=axis:z,patch0=0:bamboo_block,patch1=0:bamboo_block_top,stdrot=true
[1.19.3-]block:id=%stripped_bamboo_block,state=axis:x,patch0=0:stripped_bamboo_block,patch1=0:stripped_bamboo_block_top,stdrot=true
[1.19.3-]block:id=%stripped_bamboo_block,state=axis:y,patch0=0:stripped_bamboo_block,patch1=0:stripped_bamboo_block_top,patch2=0:stripped_bamboo_block,patch3=0:stripped_bamboo_block,patch4=0:stripped_bamboo_block_top,patch5=0:stripped_bamboo_block,stdrot=true
[1.19.3-]block:id=%stripped_bamboo_block,state=axis:z,patch0=0:stripped_bamboo_block,patch1=0:stripped_bamboo_block_top,stdrot=true
[1.19.3-]block:id=%bamboo_planks,patch0=0:bamboo_planks,patch1=0:bamboo_planks,patch2=0:bamboo_planks,patch3=0:bamboo_planks,patch4=0:bamboo_planks,patch5=0:bamboo_planks,stdrot=true
[1.19.3-]block:id=%bamboo_mosaic,patch0=0:bamboo_mosaic,patch1=0:bamboo_mosaic,patch2=0:bamboo_mosaic,patch3=0:bamboo_mosaic,patch4=0:bamboo_mosaic,patch5=0:bamboo_mosaic,stdrot=true
[1.19.3-]block:id=%bamboo_stairs,state=facing:north/half:top/shape:straight,patch0=0:bamboo_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_stairs,state=facing:north/half:top/shape:inner_left,patch0=0:bamboo_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_stairs,state=facing:north/half:top/shape:inner_right,patch0=0:bamboo_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_stairs,state=facing:north/half:top/shape:outer_left,patch0=0:bamboo_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_stairs,state=facing:north/half:top/shape:outer_right,patch0=0:bamboo_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_stairs,state=facing:north/half:bottom/shape:straight,patch0=0:bamboo_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_stairs,state=facing:north/half:bottom/shape:inner_left,patch0=0:bamboo_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_stairs,state=facing:north/half:bottom/shape:inner_right,patch0=0:bamboo_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_stairs,state=facing:north/half:bottom/shape:outer_left,patch0=0:bamboo_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_stairs,state=facing:north/half:bottom/shape:outer_right,patch0=0:bamboo_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_stairs,state=facing:south/half:top/shape:straight,patch0=0:bamboo_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_stairs,state=facing:south/half:top/shape:inner_left,patch0=0:bamboo_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_stairs,state=facing:south/half:top/shape:inner_right,patch0=0:bamboo_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_stairs,state=facing:south/half:top/shape:outer_left,patch0=0:bamboo_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_stairs,state=facing:south/half:top/shape:outer_right,patch0=0:bamboo_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_stairs,state=facing:south/half:bottom/shape:straight,patch0=0:bamboo_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_stairs,state=facing:south/half:bottom/shape:inner_left,patch0=0:bamboo_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_stairs,state=facing:south/half:bottom/shape:inner_right,patch0=0:bamboo_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_stairs,state=facing:south/half:bottom/shape:outer_left,patch0=0:bamboo_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_stairs,state=facing:south/half:bottom/shape:outer_right,patch0=0:bamboo_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_stairs,state=facing:west/half:top/shape:straight,patch0=0:bamboo_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_stairs,state=facing:west/half:top/shape:inner_left,patch0=0:bamboo_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_stairs,state=facing:west/half:top/shape:inner_right,patch0=0:bamboo_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_stairs,state=facing:west/half:top/shape:outer_left,patch0=0:bamboo_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_stairs,state=facing:west/half:top/shape:outer_right,patch0=0:bamboo_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_stairs,state=facing:west/half:bottom/shape:straight,patch0=0:bamboo_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_stairs,state=facing:west/half:bottom/shape:inner_left,patch0=0:bamboo_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_stairs,state=facing:west/half:bottom/shape:inner_right,patch0=0:bamboo_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_stairs,state=facing:west/half:bottom/shape:outer_left,patch0=0:bamboo_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_stairs,state=facing:west/half:bottom/shape:outer_right,patch0=0:bamboo_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_stairs,state=facing:east/half:top/shape:straight,patch0=0:bamboo_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_stairs,state=facing:east/half:top/shape:inner_left,patch0=0:bamboo_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_stairs,state=facing:east/half:top/shape:inner_right,patch0=0:bamboo_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_stairs,state=facing:east/half:top/shape:outer_left,patch0=0:bamboo_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_stairs,state=facing:east/half:top/shape:outer_right,patch0=0:bamboo_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_stairs,state=facing:east/half:bottom/shape:straight,patch0=0:bamboo_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_stairs,state=facing:east/half:bottom/shape:inner_left,patch0=0:bamboo_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_stairs,state=facing:east/half:bottom/shape:inner_right,patch0=0:bamboo_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_stairs,state=facing:east/half:bottom/shape:outer_left,patch0=0:bamboo_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_stairs,state=facing:east/half:bottom/shape:outer_right,patch0=0:bamboo_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_mosaic_stairs,state=facing:north/half:top/shape:straight,patch0=0:bamboo_mosaic,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_mosaic_stairs,state=facing:north/half:top/shape:inner_left,patch0=0:bamboo_mosaic,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_mosaic_stairs,state=facing:north/half:top/shape:inner_right,patch0=0:bamboo_mosaic,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_mosaic_stairs,state=facing:north/half:top/shape:outer_left,patch0=0:bamboo_mosaic,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_mosaic_stairs,state=facing:north/half:top/shape:outer_right,patch0=0:bamboo_mosaic,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_mosaic_stairs,state=facing:north/half:bottom/shape:straight,patch0=0:bamboo_mosaic,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_mosaic_stairs,state=facing:north/half:bottom/shape:inner_left,patch0=0:bamboo_mosaic,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_mosaic_stairs,state=facing:north/half:bottom/shape:inner_right,patch0=0:bamboo_mosaic,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_mosaic_stairs,state=facing:north/half:bottom/shape:outer_left,patch0=0:bamboo_mosaic,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_mosaic_stairs,state=facing:north/half:bottom/shape:outer_right,patch0=0:bamboo_mosaic,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_mosaic_stairs,state=facing:south/half:top/shape:straight,patch0=0:bamboo_mosaic,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_mosaic_stairs,state=facing:south/half:top/shape:inner_left,patch0=0:bamboo_mosaic,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_mosaic_stairs,state=facing:south/half:top/shape:inner_right,patch0=0:bamboo_mosaic,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_mosaic_stairs,state=facing:south/half:top/shape:outer_left,patch0=0:bamboo_mosaic,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_mosaic_stairs,state=facing:south/half:top/shape:outer_right,patch0=0:bamboo_mosaic,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_mosaic_stairs,state=facing:south/half:bottom/shape:straight,patch0=0:bamboo_mosaic,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_mosaic_stairs,state=facing:south/half:bottom/shape:inner_left,patch0=0:bamboo_mosaic,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_mosaic_stairs,state=facing:south/half:bottom/shape:inner_right,patch0=0:bamboo_mosaic,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_mosaic_stairs,state=facing:south/half:bottom/shape:outer_left,patch0=0:bamboo_mosaic,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_mosaic_stairs,state=facing:south/half:bottom/shape:outer_right,patch0=0:bamboo_mosaic,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_mosaic_stairs,state=facing:west/half:top/shape:straight,patch0=0:bamboo_mosaic,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_mosaic_stairs,state=facing:west/half:top/shape:inner_left,patch0=0:bamboo_mosaic,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_mosaic_stairs,state=facing:west/half:top/shape:inner_right,patch0=0:bamboo_mosaic,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_mosaic_stairs,state=facing:west/half:top/shape:outer_left,patch0=0:bamboo_mosaic,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_mosaic_stairs,state=facing:west/half:top/shape:outer_right,patch0=0:bamboo_mosaic,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_mosaic_stairs,state=facing:west/half:bottom/shape:straight,patch0=0:bamboo_mosaic,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_mosaic_stairs,state=facing:west/half:bottom/shape:inner_left,patch0=0:bamboo_mosaic,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_mosaic_stairs,state=facing:west/half:bottom/shape:inner_right,patch0=0:bamboo_mosaic,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_mosaic_stairs,state=facing:west/half:bottom/shape:outer_left,patch0=0:bamboo_mosaic,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_mosaic_stairs,state=facing:west/half:bottom/shape:outer_right,patch0=0:bamboo_mosaic,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_mosaic_stairs,state=facing:east/half:top/shape:straight,patch0=0:bamboo_mosaic,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_mosaic_stairs,state=facing:east/half:top/shape:inner_left,patch0=0:bamboo_mosaic,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_mosaic_stairs,state=facing:east/half:top/shape:inner_right,patch0=0:bamboo_mosaic,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_mosaic_stairs,state=facing:east/half:top/shape:outer_left,patch0=0:bamboo_mosaic,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_mosaic_stairs,state=facing:east/half:top/shape:outer_right,patch0=0:bamboo_mosaic,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_mosaic_stairs,state=facing:east/half:bottom/shape:straight,patch0=0:bamboo_mosaic,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_mosaic_stairs,state=facing:east/half:bottom/shape:inner_left,patch0=0:bamboo_mosaic,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_mosaic_stairs,state=facing:east/half:bottom/shape:inner_right,patch0=0:bamboo_mosaic,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_mosaic_stairs,state=facing:east/half:bottom/shape:outer_left,patch0=0:bamboo_mosaic,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_mosaic_stairs,state=facing:east/half:bottom/shape:outer_right,patch0=0:bamboo_mosaic,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_slab,state=type:top,patch0=0:bamboo_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_slab,state=type:bottom,patch0=0:bamboo_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_slab,state=type:double,patch0=0:bamboo_planks,patch1=0:bamboo_planks,patch2=0:bamboo_planks,patch3=0:bamboo_planks,patch4=0:bamboo_planks,patch5=0:bamboo_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_mosaic_slab,state=type:top,patch0=0:bamboo_mosaic,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_mosaic_slab,state=type:bottom,patch0=0:bamboo_mosaic,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_mosaic_slab,state=type:double,patch0=0:bamboo_mosaic,patch1=0:bamboo_mosaic,patch2=0:bamboo_mosaic,patch3=0:bamboo_mosaic,patch4=0:bamboo_mosaic,patch5=0:bamboo_mosaic,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_fence,state=west:true/east:true/south:true/north:true,patch0=0:bamboo_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_fence,state=west:false/east:true/south:true/north:true,patch0=0:bamboo_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_fence,state=west:true/east:true/south:false/north:true,patch0=0:bamboo_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_fence,state=west:false/east:true/south:false/north:true,patch0=0:bamboo_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_fence,state=west:true/east:true/south:true/north:false,patch0=0:bamboo_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_fence,state=west:false/east:true/south:true/north:false,patch0=0:bamboo_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_fence,state=west:true/east:true/south:false/north:false,patch0=0:bamboo_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_fence,state=west:false/east:true/south:false/north:false,patch0=0:bamboo_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_fence,state=west:true/east:false/south:true/north:true,patch0=0:bamboo_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_fence,state=west:false/east:false/south:true/north:true,patch0=0:bamboo_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_fence,state=west:true/east:false/south:false/north:true,patch0=0:bamboo_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_fence,state=west:false/east:false/south:false/north:true,patch0=0:bamboo_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_fence,state=west:true/east:false/south:true/north:false,patch0=0:bamboo_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_fence,state=west:false/east:false/south:true/north:false,patch0=0:bamboo_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_fence,state=west:true/east:false/south:false/north:false,patch0=0:bamboo_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_fence,state=west:false/east:false/south:false/north:false,patch0=0:bamboo_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_fence_gate,state=facing:north/in_wall:true/open:true,patch0=0:bamboo_planks,transparency=TRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_fence_gate,state=facing:north/in_wall:true/open:false,patch0=0:bamboo_planks,transparency=TRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_fence_gate,state=facing:north/in_wall:false/open:true,patch0=0:bamboo_planks,transparency=TRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_fence_gate,state=facing:north/in_wall:false/open:false,patch0=0:bamboo_planks,transparency=TRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_fence_gate,state=facing:south/in_wall:true/open:true,patch0=0:bamboo_planks,transparency=TRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_fence_gate,state=facing:south/in_wall:true/open:false,patch0=0:bamboo_planks,transparency=TRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_fence_gate,state=facing:south/in_wall:false/open:true,patch0=0:bamboo_planks,transparency=TRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_fence_gate,state=facing:south/in_wall:false/open:false,patch0=0:bamboo_planks,transparency=TRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_fence_gate,state=facing:west/in_wall:true/open:true,patch0=0:bamboo_planks,transparency=TRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_fence_gate,state=facing:west/in_wall:true/open:false,patch0=0:bamboo_planks,transparency=TRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_fence_gate,state=facing:west/in_wall:false/open:true,patch0=0:bamboo_planks,transparency=TRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_fence_gate,state=facing:west/in_wall:false/open:false,patch0=0:bamboo_planks,transparency=TRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_fence_gate,state=facing:east/in_wall:true/open:true,patch0=0:bamboo_planks,transparency=TRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_fence_gate,state=facing:east/in_wall:true/open:false,patch0=0:bamboo_planks,transparency=TRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_fence_gate,state=facing:east/in_wall:false/open:true,patch0=0:bamboo_planks,transparency=TRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_fence_gate,state=facing:east/in_wall:false/open:false,patch0=0:bamboo_planks,transparency=TRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_door,state=facing:north/hinge:left/half:upper/open:true,patch0=0:bamboo_door_top,transparency=TRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_door,state=facing:north/hinge:left/half:upper/open:false,patch0=0:bamboo_door_top,transparency=TRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_door,state=facing:north/hinge:right/half:upper/open:true,patch0=0:bamboo_door_top,transparency=TRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_door,state=facing:north/hinge:right/half:upper/open:false,patch0=0:bamboo_door_top,transparency=TRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_door,state=facing:north/hinge:left/half:lower/open:true,patch0=0:bamboo_door_bottom,transparency=TRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_door,state=facing:north/hinge:left/half:lower/open:false,patch0=0:bamboo_door_bottom,transparency=TRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_door,state=facing:north/hinge:right/half:lower/open:true,patch0=0:bamboo_door_bottom,transparency=TRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_door,state=facing:north/hinge:right/half:lower/open:false,patch0=0:bamboo_door_bottom,transparency=TRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_door,state=facing:south/hinge:left/half:upper/open:true,patch0=0:bamboo_door_top,transparency=TRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_door,state=facing:south/hinge:left/half:upper/open:false,patch0=0:bamboo_door_top,transparency=TRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_door,state=facing:south/hinge:right/half:upper/open:true,patch0=0:bamboo_door_top,transparency=TRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_door,state=facing:south/hinge:right/half:upper/open:false,patch0=0:bamboo_door_top,transparency=TRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_door,state=facing:south/hinge:left/half:lower/open:true,patch0=0:bamboo_door_bottom,transparency=TRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_door,state=facing:south/hinge:left/half:lower/open:false,patch0=0:bamboo_door_bottom,transparency=TRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_door,state=facing:south/hinge:right/half:lower/open:true,patch0=0:bamboo_door_bottom,transparency=TRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_door,state=facing:south/hinge:right/half:lower/open:false,patch0=0:bamboo_door_bottom,transparency=TRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_door,state=facing:west/hinge:left/half:upper/open:true,patch0=0:bamboo_door_top,transparency=TRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_door,state=facing:west/hinge:left/half:upper/open:false,patch0=0:bamboo_door_top,transparency=TRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_door,state=facing:west/hinge:right/half:upper/open:true,patch0=0:bamboo_door_top,transparency=TRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_door,state=facing:west/hinge:right/half:upper/open:false,patch0=0:bamboo_door_top,transparency=TRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_door,state=facing:west/hinge:left/half:lower/open:true,patch0=0:bamboo_door_bottom,transparency=TRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_door,state=facing:west/hinge:left/half:lower/open:false,patch0=0:bamboo_door_bottom,transparency=TRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_door,state=facing:west/hinge:right/half:lower/open:true,patch0=0:bamboo_door_bottom,transparency=TRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_door,state=facing:west/hinge:right/half:lower/open:false,patch0=0:bamboo_door_bottom,transparency=TRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_door,state=facing:east/hinge:left/half:upper/open:true,patch0=0:bamboo_door_top,transparency=TRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_door,state=facing:east/hinge:left/half:upper/open:false,patch0=0:bamboo_door_top,transparency=TRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_door,state=facing:east/hinge:right/half:upper/open:true,patch0=0:bamboo_door_top,transparency=TRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_door,state=facing:east/hinge:right/half:upper/open:false,patch0=0:bamboo_door_top,transparency=TRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_door,state=facing:east/hinge:left/half:lower/open:true,patch0=0:bamboo_door_bottom,transparency=TRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_door,state=facing:east/hinge:left/half:lower/open:false,patch0=0:bamboo_door_bottom,transparency=TRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_door,state=facing:east/hinge:right/half:lower/open:true,patch0=0:bamboo_door_bottom,transparency=TRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_door,state=facing:east/hinge:right/half:lower/open:false,patch0=0:bamboo_door_bottom,transparency=TRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_trapdoor,state=facing:north/half:top/open:true,patch0=0:bamboo_trapdoor,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_trapdoor,state=facing:north/half:top/open:false,patch0=0:bamboo_trapdoor,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_trapdoor,state=facing:north/half:bottom/open:true,patch0=0:bamboo_trapdoor,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_trapdoor,state=facing:north/half:bottom/open:false,patch0=0:bamboo_trapdoor,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_trapdoor,state=facing:south/half:top/open:true,patch0=0:bamboo_trapdoor,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_trapdoor,state=facing:south/half:top/open:false,patch0=0:bamboo_trapdoor,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_trapdoor,state=facing:south/half:bottom/open:true,patch0=0:bamboo_trapdoor,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_trapdoor,state=facing:south/half:bottom/open:false,patch0=0:bamboo_trapdoor,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_trapdoor,state=facing:west/half:top/open:true,patch0=0:bamboo_trapdoor,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_trapdoor,state=facing:west/half:top/open:false,patch0=0:bamboo_trapdoor,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_trapdoor,state=facing:west/half:bottom/open:true,patch0=0:bamboo_trapdoor,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_trapdoor,state=facing:west/half:bottom/open:false,patch0=0:bamboo_trapdoor,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_trapdoor,state=facing:east/half:top/open:true,patch0=0:bamboo_trapdoor,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_trapdoor,state=facing:east/half:top/open:false,patch0=0:bamboo_trapdoor,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_trapdoor,state=facing:east/half:bottom/open:true,patch0=0:bamboo_trapdoor,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_trapdoor,state=facing:east/half:bottom/open:false,patch0=0:bamboo_trapdoor,transparency=SEMITRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_pressure_plate,state=powered:true,patch0=0:bamboo_planks,transparency=TRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_pressure_plate,state=powered:false,patch0=0:bamboo_planks,transparency=TRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_button,state=facing:north/face:floor/powered:true,patch0=0:bamboo_planks,transparency=TRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_button,state=facing:north/face:floor/powered:false,patch0=0:bamboo_planks,transparency=TRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_button,state=facing:south/face:floor/powered:true,patch0=0:bamboo_planks,transparency=TRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_button,state=facing:south/face:floor/powered:false,patch0=0:bamboo_planks,transparency=TRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_button,state=facing:west/face:floor/powered:true,patch0=0:bamboo_planks,transparency=TRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_button,state=facing:west/face:floor/powered:false,patch0=0:bamboo_planks,transparency=TRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_button,state=facing:east/face:floor/powered:true,patch0=0:bamboo_planks,transparency=TRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_button,state=facing:east/face:floor/powered:false,patch0=0:bamboo_planks,transparency=TRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_button,state=facing:north/face:wall/powered:true,patch0=0:bamboo_planks,transparency=TRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_button,state=facing:north/face:wall/powered:false,patch0=0:bamboo_planks,transparency=TRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_button,state=facing:south/face:wall/powered:true,patch0=0:bamboo_planks,transparency=TRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_button,state=facing:south/face:wall/powered:false,patch0=0:bamboo_planks,transparency=TRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_button,state=facing:west/face:wall/powered:true,patch0=0:bamboo_planks,transparency=TRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_button,state=facing:west/face:wall/powered:false,patch0=0:bamboo_planks,transparency=TRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_button,state=facing:east/face:wall/powered:true,patch0=0:bamboo_planks,transparency=TRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_button,state=facing:east/face:wall/powered:false,patch0=0:bamboo_planks,transparency=TRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_button,state=facing:north/face:ceiling/powered:true,patch0=0:bamboo_planks,transparency=TRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_button,state=facing:north/face:ceiling/powered:false,patch0=0:bamboo_planks,transparency=TRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_button,state=facing:south/face:ceiling/powered:true,patch0=0:bamboo_planks,transparency=TRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_button,state=facing:south/face:ceiling/powered:false,patch0=0:bamboo_planks,transparency=TRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_button,state=facing:west/face:ceiling/powered:true,patch0=0:bamboo_planks,transparency=TRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_button,state=facing:west/face:ceiling/powered:false,patch0=0:bamboo_planks,transparency=TRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_button,state=facing:east/face:ceiling/powered:true,patch0=0:bamboo_planks,transparency=TRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_button,state=facing:east/face:ceiling/powered:false,patch0=0:bamboo_planks,transparency=TRANSPARENT,stdrot=true
[1.19.3-]block:id=%bamboo_sign,patch0=0,patch1=1,patch2=2,patch3=3,patch4=4,patch5=5,patch6=6,patch7=7,patch8=8,patch9=9,transparency=TRANSPARENT,txtid=bamboo_sign
[1.19.3-]block:id=%bamboo_wall_sign,patch0=0,patch1=1,patch2=2,patch3=3,patch4=4,patch5=5,transparency=TRANSPARENT,txtid=bamboo_sign
[1.19.3-]block:id=piglin_wall_head,patch0=5:piglin,patch1=4:piglin,patch2=1:piglin,patch3=0:piglin,patch4=2:piglin,patch5=3:piglin,transparency=TRANSPARENT
[1.19.3-]block:id=piglin_head,patch0=5:piglin,patch1=4:piglin,patch2=1:piglin,patch3=0:piglin,patch4=2:piglin,patch5=3:piglin,transparency=TRANSPARENT
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:true/slot_4_occupied:true/slot_0_occupied:true/facing:north/slot_1_occupied:true/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:false/slot_4_occupied:true/slot_0_occupied:true/facing:north/slot_1_occupied:true/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:true/slot_4_occupied:false/slot_0_occupied:true/facing:north/slot_1_occupied:true/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:false/slot_4_occupied:false/slot_0_occupied:true/facing:north/slot_1_occupied:true/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:true/slot_4_occupied:true/slot_0_occupied:true/facing:north/slot_1_occupied:true/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:false/slot_4_occupied:true/slot_0_occupied:true/facing:north/slot_1_occupied:true/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:true/slot_4_occupied:false/slot_0_occupied:true/facing:north/slot_1_occupied:true/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:false/slot_4_occupied:false/slot_0_occupied:true/facing:north/slot_1_occupied:true/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:true/slot_4_occupied:true/slot_0_occupied:true/facing:north/slot_1_occupied:true/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:false/slot_4_occupied:true/slot_0_occupied:true/facing:north/slot_1_occupied:true/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:true/slot_4_occupied:false/slot_0_occupied:true/facing:north/slot_1_occupied:true/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:false/slot_4_occupied:false/slot_0_occupied:true/facing:north/slot_1_occupied:true/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:true/slot_4_occupied:true/slot_0_occupied:true/facing:north/slot_1_occupied:true/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:false/slot_4_occupied:true/slot_0_occupied:true/facing:north/slot_1_occupied:true/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:true/slot_4_occupied:false/slot_0_occupied:true/facing:north/slot_1_occupied:true/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:false/slot_4_occupied:false/slot_0_occupied:true/facing:north/slot_1_occupied:true/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:true/slot_4_occupied:true/slot_0_occupied:true/facing:north/slot_1_occupied:false/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:false/slot_4_occupied:true/slot_0_occupied:true/facing:north/slot_1_occupied:false/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:true/slot_4_occupied:false/slot_0_occupied:true/facing:north/slot_1_occupied:false/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:false/slot_4_occupied:false/slot_0_occupied:true/facing:north/slot_1_occupied:false/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:true/slot_4_occupied:true/slot_0_occupied:true/facing:north/slot_1_occupied:false/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:false/slot_4_occupied:true/slot_0_occupied:true/facing:north/slot_1_occupied:false/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:true/slot_4_occupied:false/slot_0_occupied:true/facing:north/slot_1_occupied:false/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:false/slot_4_occupied:false/slot_0_occupied:true/facing:north/slot_1_occupied:false/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:true/slot_4_occupied:true/slot_0_occupied:true/facing:north/slot_1_occupied:false/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:false/slot_4_occupied:true/slot_0_occupied:true/facing:north/slot_1_occupied:false/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:true/slot_4_occupied:false/slot_0_occupied:true/facing:north/slot_1_occupied:false/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:false/slot_4_occupied:false/slot_0_occupied:true/facing:north/slot_1_occupied:false/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:true/slot_4_occupied:true/slot_0_occupied:true/facing:north/slot_1_occupied:false/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:false/slot_4_occupied:true/slot_0_occupied:true/facing:north/slot_1_occupied:false/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:true/slot_4_occupied:false/slot_0_occupied:true/facing:north/slot_1_occupied:false/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:false/slot_4_occupied:false/slot_0_occupied:true/facing:north/slot_1_occupied:false/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:true/slot_4_occupied:true/slot_0_occupied:false/facing:north/slot_1_occupied:true/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:false/slot_4_occupied:true/slot_0_occupied:false/facing:north/slot_1_occupied:true/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:true/slot_4_occupied:false/slot_0_occupied:false/facing:north/slot_1_occupied:true/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:false/slot_4_occupied:false/slot_0_occupied:false/facing:north/slot_1_occupied:true/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:true/slot_4_occupied:true/slot_0_occupied:false/facing:north/slot_1_occupied:true/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:false/slot_4_occupied:true/slot_0_occupied:false/facing:north/slot_1_occupied:true/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:true/slot_4_occupied:false/slot_0_occupied:false/facing:north/slot_1_occupied:true/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:false/slot_4_occupied:false/slot_0_occupied:false/facing:north/slot_1_occupied:true/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:true/slot_4_occupied:true/slot_0_occupied:false/facing:north/slot_1_occupied:true/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:false/slot_4_occupied:true/slot_0_occupied:false/facing:north/slot_1_occupied:true/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:true/slot_4_occupied:false/slot_0_occupied:false/facing:north/slot_1_occupied:true/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:false/slot_4_occupied:false/slot_0_occupied:false/facing:north/slot_1_occupied:true/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:true/slot_4_occupied:true/slot_0_occupied:false/facing:north/slot_1_occupied:true/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:false/slot_4_occupied:true/slot_0_occupied:false/facing:north/slot_1_occupied:true/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:true/slot_4_occupied:false/slot_0_occupied:false/facing:north/slot_1_occupied:true/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:false/slot_4_occupied:false/slot_0_occupied:false/facing:north/slot_1_occupied:true/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:true/slot_4_occupied:true/slot_0_occupied:false/facing:north/slot_1_occupied:false/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:false/slot_4_occupied:true/slot_0_occupied:false/facing:north/slot_1_occupied:false/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:true/slot_4_occupied:false/slot_0_occupied:false/facing:north/slot_1_occupied:false/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:false/slot_4_occupied:false/slot_0_occupied:false/facing:north/slot_1_occupied:false/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:true/slot_4_occupied:true/slot_0_occupied:false/facing:north/slot_1_occupied:false/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:false/slot_4_occupied:true/slot_0_occupied:false/facing:north/slot_1_occupied:false/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:true/slot_4_occupied:false/slot_0_occupied:false/facing:north/slot_1_occupied:false/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:false/slot_4_occupied:false/slot_0_occupied:false/facing:north/slot_1_occupied:false/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:true/slot_4_occupied:true/slot_0_occupied:false/facing:north/slot_1_occupied:false/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:false/slot_4_occupied:true/slot_0_occupied:false/facing:north/slot_1_occupied:false/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:true/slot_4_occupied:false/slot_0_occupied:false/facing:north/slot_1_occupied:false/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:false/slot_4_occupied:false/slot_0_occupied:false/facing:north/slot_1_occupied:false/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:true/slot_4_occupied:true/slot_0_occupied:false/facing:north/slot_1_occupied:false/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:false/slot_4_occupied:true/slot_0_occupied:false/facing:north/slot_1_occupied:false/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:true/slot_4_occupied:false/slot_0_occupied:false/facing:north/slot_1_occupied:false/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:false/slot_4_occupied:false/slot_0_occupied:false/facing:north/slot_1_occupied:false/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:true/slot_4_occupied:true/slot_0_occupied:true/facing:south/slot_1_occupied:true/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:false/slot_4_occupied:true/slot_0_occupied:true/facing:south/slot_1_occupied:true/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:true/slot_4_occupied:false/slot_0_occupied:true/facing:south/slot_1_occupied:true/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:false/slot_4_occupied:false/slot_0_occupied:true/facing:south/slot_1_occupied:true/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:true/slot_4_occupied:true/slot_0_occupied:true/facing:south/slot_1_occupied:true/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:false/slot_4_occupied:true/slot_0_occupied:true/facing:south/slot_1_occupied:true/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:true/slot_4_occupied:false/slot_0_occupied:true/facing:south/slot_1_occupied:true/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:false/slot_4_occupied:false/slot_0_occupied:true/facing:south/slot_1_occupied:true/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:true/slot_4_occupied:true/slot_0_occupied:true/facing:south/slot_1_occupied:true/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:false/slot_4_occupied:true/slot_0_occupied:true/facing:south/slot_1_occupied:true/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:true/slot_4_occupied:false/slot_0_occupied:true/facing:south/slot_1_occupied:true/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:false/slot_4_occupied:false/slot_0_occupied:true/facing:south/slot_1_occupied:true/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:true/slot_4_occupied:true/slot_0_occupied:true/facing:south/slot_1_occupied:true/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:false/slot_4_occupied:true/slot_0_occupied:true/facing:south/slot_1_occupied:true/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:true/slot_4_occupied:false/slot_0_occupied:true/facing:south/slot_1_occupied:true/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:false/slot_4_occupied:false/slot_0_occupied:true/facing:south/slot_1_occupied:true/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:true/slot_4_occupied:true/slot_0_occupied:true/facing:south/slot_1_occupied:false/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:false/slot_4_occupied:true/slot_0_occupied:true/facing:south/slot_1_occupied:false/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:true/slot_4_occupied:false/slot_0_occupied:true/facing:south/slot_1_occupied:false/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:false/slot_4_occupied:false/slot_0_occupied:true/facing:south/slot_1_occupied:false/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:true/slot_4_occupied:true/slot_0_occupied:true/facing:south/slot_1_occupied:false/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:false/slot_4_occupied:true/slot_0_occupied:true/facing:south/slot_1_occupied:false/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:true/slot_4_occupied:false/slot_0_occupied:true/facing:south/slot_1_occupied:false/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:false/slot_4_occupied:false/slot_0_occupied:true/facing:south/slot_1_occupied:false/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:true/slot_4_occupied:true/slot_0_occupied:true/facing:south/slot_1_occupied:false/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:false/slot_4_occupied:true/slot_0_occupied:true/facing:south/slot_1_occupied:false/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:true/slot_4_occupied:false/slot_0_occupied:true/facing:south/slot_1_occupied:false/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:false/slot_4_occupied:false/slot_0_occupied:true/facing:south/slot_1_occupied:false/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:true/slot_4_occupied:true/slot_0_occupied:true/facing:south/slot_1_occupied:false/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:false/slot_4_occupied:true/slot_0_occupied:true/facing:south/slot_1_occupied:false/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:true/slot_4_occupied:false/slot_0_occupied:true/facing:south/slot_1_occupied:false/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:false/slot_4_occupied:false/slot_0_occupied:true/facing:south/slot_1_occupied:false/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:true/slot_4_occupied:true/slot_0_occupied:false/facing:south/slot_1_occupied:true/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:false/slot_4_occupied:true/slot_0_occupied:false/facing:south/slot_1_occupied:true/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:true/slot_4_occupied:false/slot_0_occupied:false/facing:south/slot_1_occupied:true/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:false/slot_4_occupied:false/slot_0_occupied:false/facing:south/slot_1_occupied:true/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:true/slot_4_occupied:true/slot_0_occupied:false/facing:south/slot_1_occupied:true/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:false/slot_4_occupied:true/slot_0_occupied:false/facing:south/slot_1_occupied:true/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:true/slot_4_occupied:false/slot_0_occupied:false/facing:south/slot_1_occupied:true/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:false/slot_4_occupied:false/slot_0_occupied:false/facing:south/slot_1_occupied:true/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:true/slot_4_occupied:true/slot_0_occupied:false/facing:south/slot_1_occupied:true/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:false/slot_4_occupied:true/slot_0_occupied:false/facing:south/slot_1_occupied:true/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:true/slot_4_occupied:false/slot_0_occupied:false/facing:south/slot_1_occupied:true/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:false/slot_4_occupied:false/slot_0_occupied:false/facing:south/slot_1_occupied:true/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:true/slot_4_occupied:true/slot_0_occupied:false/facing:south/slot_1_occupied:true/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:false/slot_4_occupied:true/slot_0_occupied:false/facing:south/slot_1_occupied:true/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:true/slot_4_occupied:false/slot_0_occupied:false/facing:south/slot_1_occupied:true/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:false/slot_4_occupied:false/slot_0_occupied:false/facing:south/slot_1_occupied:true/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:true/slot_4_occupied:true/slot_0_occupied:false/facing:south/slot_1_occupied:false/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:false/slot_4_occupied:true/slot_0_occupied:false/facing:south/slot_1_occupied:false/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:true/slot_4_occupied:false/slot_0_occupied:false/facing:south/slot_1_occupied:false/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:false/slot_4_occupied:false/slot_0_occupied:false/facing:south/slot_1_occupied:false/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:true/slot_4_occupied:true/slot_0_occupied:false/facing:south/slot_1_occupied:false/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:false/slot_4_occupied:true/slot_0_occupied:false/facing:south/slot_1_occupied:false/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:true/slot_4_occupied:false/slot_0_occupied:false/facing:south/slot_1_occupied:false/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:false/slot_4_occupied:false/slot_0_occupied:false/facing:south/slot_1_occupied:false/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:true/slot_4_occupied:true/slot_0_occupied:false/facing:south/slot_1_occupied:false/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:false/slot_4_occupied:true/slot_0_occupied:false/facing:south/slot_1_occupied:false/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:true/slot_4_occupied:false/slot_0_occupied:false/facing:south/slot_1_occupied:false/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:false/slot_4_occupied:false/slot_0_occupied:false/facing:south/slot_1_occupied:false/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:true/slot_4_occupied:true/slot_0_occupied:false/facing:south/slot_1_occupied:false/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:false/slot_4_occupied:true/slot_0_occupied:false/facing:south/slot_1_occupied:false/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:true/slot_4_occupied:false/slot_0_occupied:false/facing:south/slot_1_occupied:false/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:false/slot_4_occupied:false/slot_0_occupied:false/facing:south/slot_1_occupied:false/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:true/slot_4_occupied:true/slot_0_occupied:true/facing:west/slot_1_occupied:true/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:false/slot_4_occupied:true/slot_0_occupied:true/facing:west/slot_1_occupied:true/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:true/slot_4_occupied:false/slot_0_occupied:true/facing:west/slot_1_occupied:true/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:false/slot_4_occupied:false/slot_0_occupied:true/facing:west/slot_1_occupied:true/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:true/slot_4_occupied:true/slot_0_occupied:true/facing:west/slot_1_occupied:true/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:false/slot_4_occupied:true/slot_0_occupied:true/facing:west/slot_1_occupied:true/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:true/slot_4_occupied:false/slot_0_occupied:true/facing:west/slot_1_occupied:true/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:false/slot_4_occupied:false/slot_0_occupied:true/facing:west/slot_1_occupied:true/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:true/slot_4_occupied:true/slot_0_occupied:true/facing:west/slot_1_occupied:true/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:false/slot_4_occupied:true/slot_0_occupied:true/facing:west/slot_1_occupied:true/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:true/slot_4_occupied:false/slot_0_occupied:true/facing:west/slot_1_occupied:true/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:false/slot_4_occupied:false/slot_0_occupied:true/facing:west/slot_1_occupied:true/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:true/slot_4_occupied:true/slot_0_occupied:true/facing:west/slot_1_occupied:true/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:false/slot_4_occupied:true/slot_0_occupied:true/facing:west/slot_1_occupied:true/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:true/slot_4_occupied:false/slot_0_occupied:true/facing:west/slot_1_occupied:true/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:false/slot_4_occupied:false/slot_0_occupied:true/facing:west/slot_1_occupied:true/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:true/slot_4_occupied:true/slot_0_occupied:true/facing:west/slot_1_occupied:false/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:false/slot_4_occupied:true/slot_0_occupied:true/facing:west/slot_1_occupied:false/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:true/slot_4_occupied:false/slot_0_occupied:true/facing:west/slot_1_occupied:false/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:false/slot_4_occupied:false/slot_0_occupied:true/facing:west/slot_1_occupied:false/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:true/slot_4_occupied:true/slot_0_occupied:true/facing:west/slot_1_occupied:false/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:false/slot_4_occupied:true/slot_0_occupied:true/facing:west/slot_1_occupied:false/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:true/slot_4_occupied:false/slot_0_occupied:true/facing:west/slot_1_occupied:false/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:false/slot_4_occupied:false/slot_0_occupied:true/facing:west/slot_1_occupied:false/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:true/slot_4_occupied:true/slot_0_occupied:true/facing:west/slot_1_occupied:false/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:false/slot_4_occupied:true/slot_0_occupied:true/facing:west/slot_1_occupied:false/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:true/slot_4_occupied:false/slot_0_occupied:true/facing:west/slot_1_occupied:false/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:false/slot_4_occupied:false/slot_0_occupied:true/facing:west/slot_1_occupied:false/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:true/slot_4_occupied:true/slot_0_occupied:true/facing:west/slot_1_occupied:false/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:false/slot_4_occupied:true/slot_0_occupied:true/facing:west/slot_1_occupied:false/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:true/slot_4_occupied:false/slot_0_occupied:true/facing:west/slot_1_occupied:false/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:false/slot_4_occupied:false/slot_0_occupied:true/facing:west/slot_1_occupied:false/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:true/slot_4_occupied:true/slot_0_occupied:false/facing:west/slot_1_occupied:true/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:false/slot_4_occupied:true/slot_0_occupied:false/facing:west/slot_1_occupied:true/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:true/slot_4_occupied:false/slot_0_occupied:false/facing:west/slot_1_occupied:true/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:false/slot_4_occupied:false/slot_0_occupied:false/facing:west/slot_1_occupied:true/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:true/slot_4_occupied:true/slot_0_occupied:false/facing:west/slot_1_occupied:true/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:false/slot_4_occupied:true/slot_0_occupied:false/facing:west/slot_1_occupied:true/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:true/slot_4_occupied:false/slot_0_occupied:false/facing:west/slot_1_occupied:true/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:false/slot_4_occupied:false/slot_0_occupied:false/facing:west/slot_1_occupied:true/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:true/slot_4_occupied:true/slot_0_occupied:false/facing:west/slot_1_occupied:true/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:false/slot_4_occupied:true/slot_0_occupied:false/facing:west/slot_1_occupied:true/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:true/slot_4_occupied:false/slot_0_occupied:false/facing:west/slot_1_occupied:true/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:false/slot_4_occupied:false/slot_0_occupied:false/facing:west/slot_1_occupied:true/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:true/slot_4_occupied:true/slot_0_occupied:false/facing:west/slot_1_occupied:true/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:false/slot_4_occupied:true/slot_0_occupied:false/facing:west/slot_1_occupied:true/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:true/slot_4_occupied:false/slot_0_occupied:false/facing:west/slot_1_occupied:true/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:false/slot_4_occupied:false/slot_0_occupied:false/facing:west/slot_1_occupied:true/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:true/slot_4_occupied:true/slot_0_occupied:false/facing:west/slot_1_occupied:false/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:false/slot_4_occupied:true/slot_0_occupied:false/facing:west/slot_1_occupied:false/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:true/slot_4_occupied:false/slot_0_occupied:false/facing:west/slot_1_occupied:false/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:false/slot_4_occupied:false/slot_0_occupied:false/facing:west/slot_1_occupied:false/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:true/slot_4_occupied:true/slot_0_occupied:false/facing:west/slot_1_occupied:false/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:false/slot_4_occupied:true/slot_0_occupied:false/facing:west/slot_1_occupied:false/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:true/slot_4_occupied:false/slot_0_occupied:false/facing:west/slot_1_occupied:false/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:false/slot_4_occupied:false/slot_0_occupied:false/facing:west/slot_1_occupied:false/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:true/slot_4_occupied:true/slot_0_occupied:false/facing:west/slot_1_occupied:false/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:false/slot_4_occupied:true/slot_0_occupied:false/facing:west/slot_1_occupied:false/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:true/slot_4_occupied:false/slot_0_occupied:false/facing:west/slot_1_occupied:false/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:false/slot_4_occupied:false/slot_0_occupied:false/facing:west/slot_1_occupied:false/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:true/slot_4_occupied:true/slot_0_occupied:false/facing:west/slot_1_occupied:false/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:false/slot_4_occupied:true/slot_0_occupied:false/facing:west/slot_1_occupied:false/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:true/slot_4_occupied:false/slot_0_occupied:false/facing:west/slot_1_occupied:false/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:false/slot_4_occupied:false/slot_0_occupied:false/facing:west/slot_1_occupied:false/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:true/slot_4_occupied:true/slot_0_occupied:true/facing:east/slot_1_occupied:true/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:false/slot_4_occupied:true/slot_0_occupied:true/facing:east/slot_1_occupied:true/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:true/slot_4_occupied:false/slot_0_occupied:true/facing:east/slot_1_occupied:true/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:false/slot_4_occupied:false/slot_0_occupied:true/facing:east/slot_1_occupied:true/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:true/slot_4_occupied:true/slot_0_occupied:true/facing:east/slot_1_occupied:true/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:false/slot_4_occupied:true/slot_0_occupied:true/facing:east/slot_1_occupied:true/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:true/slot_4_occupied:false/slot_0_occupied:true/facing:east/slot_1_occupied:true/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:false/slot_4_occupied:false/slot_0_occupied:true/facing:east/slot_1_occupied:true/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:true/slot_4_occupied:true/slot_0_occupied:true/facing:east/slot_1_occupied:true/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:false/slot_4_occupied:true/slot_0_occupied:true/facing:east/slot_1_occupied:true/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:true/slot_4_occupied:false/slot_0_occupied:true/facing:east/slot_1_occupied:true/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:false/slot_4_occupied:false/slot_0_occupied:true/facing:east/slot_1_occupied:true/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:true/slot_4_occupied:true/slot_0_occupied:true/facing:east/slot_1_occupied:true/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:false/slot_4_occupied:true/slot_0_occupied:true/facing:east/slot_1_occupied:true/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:true/slot_4_occupied:false/slot_0_occupied:true/facing:east/slot_1_occupied:true/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:false/slot_4_occupied:false/slot_0_occupied:true/facing:east/slot_1_occupied:true/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:true/slot_4_occupied:true/slot_0_occupied:true/facing:east/slot_1_occupied:false/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:false/slot_4_occupied:true/slot_0_occupied:true/facing:east/slot_1_occupied:false/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:true/slot_4_occupied:false/slot_0_occupied:true/facing:east/slot_1_occupied:false/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:false/slot_4_occupied:false/slot_0_occupied:true/facing:east/slot_1_occupied:false/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:true/slot_4_occupied:true/slot_0_occupied:true/facing:east/slot_1_occupied:false/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:false/slot_4_occupied:true/slot_0_occupied:true/facing:east/slot_1_occupied:false/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:true/slot_4_occupied:false/slot_0_occupied:true/facing:east/slot_1_occupied:false/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:false/slot_4_occupied:false/slot_0_occupied:true/facing:east/slot_1_occupied:false/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:true/slot_4_occupied:true/slot_0_occupied:true/facing:east/slot_1_occupied:false/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:false/slot_4_occupied:true/slot_0_occupied:true/facing:east/slot_1_occupied:false/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:true/slot_4_occupied:false/slot_0_occupied:true/facing:east/slot_1_occupied:false/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:false/slot_4_occupied:false/slot_0_occupied:true/facing:east/slot_1_occupied:false/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:true/slot_4_occupied:true/slot_0_occupied:true/facing:east/slot_1_occupied:false/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:false/slot_4_occupied:true/slot_0_occupied:true/facing:east/slot_1_occupied:false/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:true/slot_4_occupied:false/slot_0_occupied:true/facing:east/slot_1_occupied:false/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:false/slot_4_occupied:false/slot_0_occupied:true/facing:east/slot_1_occupied:false/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:true/slot_4_occupied:true/slot_0_occupied:false/facing:east/slot_1_occupied:true/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:false/slot_4_occupied:true/slot_0_occupied:false/facing:east/slot_1_occupied:true/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:true/slot_4_occupied:false/slot_0_occupied:false/facing:east/slot_1_occupied:true/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:false/slot_4_occupied:false/slot_0_occupied:false/facing:east/slot_1_occupied:true/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:true/slot_4_occupied:true/slot_0_occupied:false/facing:east/slot_1_occupied:true/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:false/slot_4_occupied:true/slot_0_occupied:false/facing:east/slot_1_occupied:true/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:true/slot_4_occupied:false/slot_0_occupied:false/facing:east/slot_1_occupied:true/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:false/slot_4_occupied:false/slot_0_occupied:false/facing:east/slot_1_occupied:true/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:true/slot_4_occupied:true/slot_0_occupied:false/facing:east/slot_1_occupied:true/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:false/slot_4_occupied:true/slot_0_occupied:false/facing:east/slot_1_occupied:true/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:true/slot_4_occupied:false/slot_0_occupied:false/facing:east/slot_1_occupied:true/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:false/slot_4_occupied:false/slot_0_occupied:false/facing:east/slot_1_occupied:true/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:true/slot_4_occupied:true/slot_0_occupied:false/facing:east/slot_1_occupied:true/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:false/slot_4_occupied:true/slot_0_occupied:false/facing:east/slot_1_occupied:true/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:true/slot_4_occupied:false/slot_0_occupied:false/facing:east/slot_1_occupied:true/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:false/slot_4_occupied:false/slot_0_occupied:false/facing:east/slot_1_occupied:true/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_occupied,patch3=0:chiseled_bookshelf_empty,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:true/slot_4_occupied:true/slot_0_occupied:false/facing:east/slot_1_occupied:false/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:false/slot_4_occupied:true/slot_0_occupied:false/facing:east/slot_1_occupied:false/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:true/slot_4_occupied:false/slot_0_occupied:false/facing:east/slot_1_occupied:false/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:false/slot_4_occupied:false/slot_0_occupied:false/facing:east/slot_1_occupied:false/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:true/slot_4_occupied:true/slot_0_occupied:false/facing:east/slot_1_occupied:false/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:false/slot_4_occupied:true/slot_0_occupied:false/facing:east/slot_1_occupied:false/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:true/slot_4_occupied:false/slot_0_occupied:false/facing:east/slot_1_occupied:false/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:true/slot_5_occupied:false/slot_4_occupied:false/slot_0_occupied:false/facing:east/slot_1_occupied:false/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:true/slot_4_occupied:true/slot_0_occupied:false/facing:east/slot_1_occupied:false/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:false/slot_4_occupied:true/slot_0_occupied:false/facing:east/slot_1_occupied:false/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:true/slot_4_occupied:false/slot_0_occupied:false/facing:east/slot_1_occupied:false/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:false/slot_4_occupied:false/slot_0_occupied:false/facing:east/slot_1_occupied:false/slot_3_occupied:true,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:true/slot_4_occupied:true/slot_0_occupied:false/facing:east/slot_1_occupied:false/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:false/slot_4_occupied:true/slot_0_occupied:false/facing:east/slot_1_occupied:false/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:true/slot_4_occupied:false/slot_0_occupied:false/facing:east/slot_1_occupied:false/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,patch3=0:chiseled_bookshelf_occupied,stdrot=true
[1.19.3-]block:id=%chiseled_bookshelf,state=slot_2_occupied:false/slot_5_occupied:false/slot_4_occupied:false/slot_0_occupied:false/facing:east/slot_1_occupied:false/slot_3_occupied:false,patch0=0:chiseled_bookshelf_side,patch1=0:chiseled_bookshelf_top,patch2=0:chiseled_bookshelf_empty,stdrot=true
# 1.19.4
[1.19.4-]texture:id=cherry_planks,filename=assets/minecraft/textures/block/cherry_planks.png,xcount=1,ycount=1
[1.19.4-]texture:id=cherry_sapling,filename=assets/minecraft/textures/block/cherry_sapling.png,xcount=1,ycount=1
[1.19.4-]texture:id=cherry_log,filename=assets/minecraft/textures/block/cherry_log.png,xcount=1,ycount=1
[1.19.4-]texture:id=cherry_log_top,filename=assets/minecraft/textures/block/cherry_log_top.png,xcount=1,ycount=1
[1.19.4-]texture:id=stripped_cherry_log,filename=assets/minecraft/textures/block/stripped_cherry_log.png,xcount=1,ycount=1
[1.19.4-]texture:id=stripped_cherry_log_top,filename=assets/minecraft/textures/block/stripped_cherry_log_top.png,xcount=1,ycount=1
[1.19.4-]texture:id=cherry_leaves,filename=assets/minecraft/textures/block/cherry_leaves.png,xcount=1,ycount=1
[1.19.4-]texture:id=cherry_trapdoor,filename=assets/minecraft/textures/block/cherry_trapdoor.png,xcount=1,ycount=1
[1.19.4-]texture:id=cherry_door_top,filename=assets/minecraft/textures/block/cherry_door_top.png,xcount=1,ycount=1
[1.19.4-]texture:id=cherry_door_bottom,filename=assets/minecraft/textures/block/cherry_door_bottom.png,xcount=1,ycount=1
[1.19.4-]texturefile:id=cherry_sign,filename=assets/minecraft/textures/entity/signs/cherry.png,format=SIGN
[1.19.4-]texture:id=suspicious_sand_0,filename=assets/minecraft/textures/block/suspicious_sand_0.png,xcount=1,ycount=1
[1.19.4-]texture:id=suspicious_sand_1,filename=assets/minecraft/textures/block/suspicious_sand_1.png,xcount=1,ycount=1
[1.19.4-]texture:id=suspicious_sand_2,filename=assets/minecraft/textures/block/suspicious_sand_2.png,xcount=1,ycount=1
[1.19.4-]texture:id=suspicious_sand_3,filename=assets/minecraft/textures/block/suspicious_sand_3.png,xcount=1,ycount=1
[1.19.4-]texture:id=torchflower,filename=assets/minecraft/textures/block/torchflower.png,xcount=1,ycount=1
[1.19.4-]texture:id=torchflower_crop_stage0,filename=assets/minecraft/textures/block/torchflower_crop_stage0.png,xcount=1,ycount=1
[1.19.4-]texture:id=torchflower_crop_stage1,filename=assets/minecraft/textures/block/torchflower_crop_stage1.png,xcount=1,ycount=1
[1.19.4-]texture:id=torchflower_crop_stage2,filename=assets/minecraft/textures/block/torchflower_crop_stage2.png,xcount=1,ycount=1
[1.19.4-]texture:id=pink_petals,filename=assets/minecraft/textures/block/pink_petals.png,xcount=1,ycount=1
[1.19.4-]texture:id=pink_petals_stem,filename=assets/minecraft/textures/block/pink_petals_stem.png,xcount=1,ycount=1
[1.19.4-]block:id=%cherry_planks,patch0=0:cherry_planks,patch1=0:cherry_planks,patch2=0:cherry_planks,patch3=0:cherry_planks,patch4=0:cherry_planks,patch5=0:cherry_planks,stdrot=true
[1.19.4-]block:id=%cherry_sapling,patch0=0:cherry_sapling,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_planks,patch0=0:cherry_planks,patch1=0:cherry_planks,patch2=0:cherry_planks,patch3=0:cherry_planks,patch4=0:cherry_planks,patch5=0:cherry_planks,stdrot=true
[1.19.4-]block:id=%cherry_sapling,patch0=0:cherry_sapling,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_log,state=axis:x,patch0=0:cherry_log_top,patch1=6000:cherry_log,patch2=6000:cherry_log,patch3=0:cherry_log_top,patch4=6000:cherry_log,patch5=6000:cherry_log,stdrot=true
[1.19.4-]block:id=%cherry_log,state=axis:y,patch0=0:cherry_log,patch1=0:cherry_log_top,patch2=0:cherry_log,patch3=0:cherry_log,patch4=0:cherry_log_top,patch5=0:cherry_log,stdrot=true
[1.19.4-]block:id=%cherry_log,state=axis:z,patch0=6000:cherry_log,patch1=0:cherry_log,patch2=0:cherry_log_top,patch3=6000:cherry_log,patch4=0:cherry_log,patch5=0:cherry_log_top,stdrot=true
[1.19.4-]block:id=%stripped_cherry_log,state=axis:x,patch0=0:stripped_cherry_log_top,patch1=6000:stripped_cherry_log,patch2=6000:stripped_cherry_log,patch3=0:stripped_cherry_log_top,patch4=6000:stripped_cherry_log,patch5=6000:stripped_cherry_log,stdrot=true
[1.19.4-]block:id=%stripped_cherry_log,state=axis:y,patch0=0:stripped_cherry_log,patch1=0:stripped_cherry_log_top,patch2=0:stripped_cherry_log,patch3=0:stripped_cherry_log,patch4=0:stripped_cherry_log_top,patch5=0:stripped_cherry_log,stdrot=true
[1.19.4-]block:id=%stripped_cherry_log,state=axis:z,patch0=6000:stripped_cherry_log,patch1=0:stripped_cherry_log,patch2=0:stripped_cherry_log_top,patch3=6000:stripped_cherry_log,patch4=0:stripped_cherry_log,patch5=0:stripped_cherry_log_top,stdrot=true
[1.19.4-]block:id=%cherry_wood,state=axis:x,patch0=0:cherry_log,stdrot=true
[1.19.4-]block:id=%cherry_wood,state=axis:y,patch0=0:cherry_log,patch1=0:cherry_log,patch2=0:cherry_log,patch3=0:cherry_log,patch4=0:cherry_log,patch5=0:cherry_log,stdrot=true
[1.19.4-]block:id=%cherry_wood,state=axis:z,patch0=0:cherry_log,stdrot=true
[1.19.4-]block:id=%stripped_cherry_wood,state=axis:x,patch0=0:stripped_cherry_log,stdrot=true
[1.19.4-]block:id=%stripped_cherry_wood,state=axis:y,patch0=0:stripped_cherry_log,patch1=0:stripped_cherry_log,patch2=0:stripped_cherry_log,patch3=0:stripped_cherry_log,patch4=0:stripped_cherry_log,patch5=0:stripped_cherry_log,stdrot=true
[1.19.4-]block:id=%stripped_cherry_wood,state=axis:z,patch0=0:stripped_cherry_log,stdrot=true
[1.19.4-]block:id=%cherry_leaves,patch0=0:cherry_leaves,patch1=0:cherry_leaves,patch2=0:cherry_leaves,patch3=0:cherry_leaves,patch4=0:cherry_leaves,patch5=0:cherry_leaves,transparency=SEMITRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_pressure_plate,state=powered:true,patch0=0:cherry_planks,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_pressure_plate,state=powered:false,patch0=0:cherry_planks,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_trapdoor,state=facing:north/half:top/open:true,patch0=0:cherry_trapdoor,transparency=SEMITRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_trapdoor,state=facing:north/half:top/open:false,patch0=0:cherry_trapdoor,transparency=SEMITRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_trapdoor,state=facing:north/half:bottom/open:true,patch0=0:cherry_trapdoor,transparency=SEMITRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_trapdoor,state=facing:north/half:bottom/open:false,patch0=0:cherry_trapdoor,transparency=SEMITRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_trapdoor,state=facing:south/half:top/open:true,patch0=0:cherry_trapdoor,transparency=SEMITRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_trapdoor,state=facing:south/half:top/open:false,patch0=0:cherry_trapdoor,transparency=SEMITRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_trapdoor,state=facing:south/half:bottom/open:true,patch0=0:cherry_trapdoor,transparency=SEMITRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_trapdoor,state=facing:south/half:bottom/open:false,patch0=0:cherry_trapdoor,transparency=SEMITRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_trapdoor,state=facing:west/half:top/open:true,patch0=0:cherry_trapdoor,transparency=SEMITRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_trapdoor,state=facing:west/half:top/open:false,patch0=0:cherry_trapdoor,transparency=SEMITRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_trapdoor,state=facing:west/half:bottom/open:true,patch0=0:cherry_trapdoor,transparency=SEMITRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_trapdoor,state=facing:west/half:bottom/open:false,patch0=0:cherry_trapdoor,transparency=SEMITRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_trapdoor,state=facing:east/half:top/open:true,patch0=0:cherry_trapdoor,transparency=SEMITRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_trapdoor,state=facing:east/half:top/open:false,patch0=0:cherry_trapdoor,transparency=SEMITRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_trapdoor,state=facing:east/half:bottom/open:true,patch0=0:cherry_trapdoor,transparency=SEMITRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_trapdoor,state=facing:east/half:bottom/open:false,patch0=0:cherry_trapdoor,transparency=SEMITRANSPARENT,stdrot=true
[1.19.4-]block:id=%potted_cherry_sapling,patch0=0:flower_pot,patch1=0:dirt,patch2=0:cherry_sapling,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_button,state=facing:north/face:floor/powered:true,patch0=0:cherry_planks,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_button,state=facing:north/face:floor/powered:false,patch0=0:cherry_planks,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_button,state=facing:south/face:floor/powered:true,patch0=0:cherry_planks,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_button,state=facing:south/face:floor/powered:false,patch0=0:cherry_planks,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_button,state=facing:west/face:floor/powered:true,patch0=0:cherry_planks,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_button,state=facing:west/face:floor/powered:false,patch0=0:cherry_planks,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_button,state=facing:east/face:floor/powered:true,patch0=0:cherry_planks,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_button,state=facing:east/face:floor/powered:false,patch0=0:cherry_planks,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_button,state=facing:north/face:wall/powered:true,patch0=0:cherry_planks,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_button,state=facing:north/face:wall/powered:false,patch0=0:cherry_planks,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_button,state=facing:south/face:wall/powered:true,patch0=0:cherry_planks,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_button,state=facing:south/face:wall/powered:false,patch0=0:cherry_planks,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_button,state=facing:west/face:wall/powered:true,patch0=0:cherry_planks,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_button,state=facing:west/face:wall/powered:false,patch0=0:cherry_planks,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_button,state=facing:east/face:wall/powered:true,patch0=0:cherry_planks,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_button,state=facing:east/face:wall/powered:false,patch0=0:cherry_planks,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_button,state=facing:north/face:ceiling/powered:true,patch0=0:cherry_planks,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_button,state=facing:north/face:ceiling/powered:false,patch0=0:cherry_planks,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_button,state=facing:south/face:ceiling/powered:true,patch0=0:cherry_planks,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_button,state=facing:south/face:ceiling/powered:false,patch0=0:cherry_planks,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_button,state=facing:west/face:ceiling/powered:true,patch0=0:cherry_planks,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_button,state=facing:west/face:ceiling/powered:false,patch0=0:cherry_planks,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_button,state=facing:east/face:ceiling/powered:true,patch0=0:cherry_planks,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_button,state=facing:east/face:ceiling/powered:false,patch0=0:cherry_planks,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_stairs,state=facing:north/half:top/shape:straight,patch0=0:cherry_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_stairs,state=facing:north/half:top/shape:inner_left,patch0=0:cherry_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_stairs,state=facing:north/half:top/shape:inner_right,patch0=0:cherry_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_stairs,state=facing:north/half:top/shape:outer_left,patch0=0:cherry_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_stairs,state=facing:north/half:top/shape:outer_right,patch0=0:cherry_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_stairs,state=facing:north/half:bottom/shape:straight,patch0=0:cherry_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_stairs,state=facing:north/half:bottom/shape:inner_left,patch0=0:cherry_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_stairs,state=facing:north/half:bottom/shape:inner_right,patch0=0:cherry_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_stairs,state=facing:north/half:bottom/shape:outer_left,patch0=0:cherry_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_stairs,state=facing:north/half:bottom/shape:outer_right,patch0=0:cherry_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_stairs,state=facing:south/half:top/shape:straight,patch0=0:cherry_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_stairs,state=facing:south/half:top/shape:inner_left,patch0=0:cherry_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_stairs,state=facing:south/half:top/shape:inner_right,patch0=0:cherry_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_stairs,state=facing:south/half:top/shape:outer_left,patch0=0:cherry_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_stairs,state=facing:south/half:top/shape:outer_right,patch0=0:cherry_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_stairs,state=facing:south/half:bottom/shape:straight,patch0=0:cherry_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_stairs,state=facing:south/half:bottom/shape:inner_left,patch0=0:cherry_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_stairs,state=facing:south/half:bottom/shape:inner_right,patch0=0:cherry_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_stairs,state=facing:south/half:bottom/shape:outer_left,patch0=0:cherry_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_stairs,state=facing:south/half:bottom/shape:outer_right,patch0=0:cherry_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_stairs,state=facing:west/half:top/shape:straight,patch0=0:cherry_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_stairs,state=facing:west/half:top/shape:inner_left,patch0=0:cherry_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_stairs,state=facing:west/half:top/shape:inner_right,patch0=0:cherry_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_stairs,state=facing:west/half:top/shape:outer_left,patch0=0:cherry_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_stairs,state=facing:west/half:top/shape:outer_right,patch0=0:cherry_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_stairs,state=facing:west/half:bottom/shape:straight,patch0=0:cherry_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_stairs,state=facing:west/half:bottom/shape:inner_left,patch0=0:cherry_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_stairs,state=facing:west/half:bottom/shape:inner_right,patch0=0:cherry_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_stairs,state=facing:west/half:bottom/shape:outer_left,patch0=0:cherry_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_stairs,state=facing:west/half:bottom/shape:outer_right,patch0=0:cherry_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_stairs,state=facing:east/half:top/shape:straight,patch0=0:cherry_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_stairs,state=facing:east/half:top/shape:inner_left,patch0=0:cherry_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_stairs,state=facing:east/half:top/shape:inner_right,patch0=0:cherry_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_stairs,state=facing:east/half:top/shape:outer_left,patch0=0:cherry_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_stairs,state=facing:east/half:top/shape:outer_right,patch0=0:cherry_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_stairs,state=facing:east/half:bottom/shape:straight,patch0=0:cherry_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_stairs,state=facing:east/half:bottom/shape:inner_left,patch0=0:cherry_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_stairs,state=facing:east/half:bottom/shape:inner_right,patch0=0:cherry_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_stairs,state=facing:east/half:bottom/shape:outer_left,patch0=0:cherry_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_stairs,state=facing:east/half:bottom/shape:outer_right,patch0=0:cherry_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_slab,state=type:top,patch0=0:cherry_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_slab,state=type:bottom,patch0=0:cherry_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_slab,state=type:double,patch0=0:cherry_planks,patch1=0:cherry_planks,patch2=0:cherry_planks,patch3=0:cherry_planks,patch4=0:cherry_planks,patch5=0:cherry_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_fence_gate,state=facing:north/in_wall:true/open:true,patch0=0:cherry_planks,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_fence_gate,state=facing:north/in_wall:true/open:false,patch0=0:cherry_planks,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_fence_gate,state=facing:north/in_wall:false/open:true,patch0=0:cherry_planks,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_fence_gate,state=facing:north/in_wall:false/open:false,patch0=0:cherry_planks,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_fence_gate,state=facing:south/in_wall:true/open:true,patch0=0:cherry_planks,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_fence_gate,state=facing:south/in_wall:true/open:false,patch0=0:cherry_planks,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_fence_gate,state=facing:south/in_wall:false/open:true,patch0=0:cherry_planks,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_fence_gate,state=facing:south/in_wall:false/open:false,patch0=0:cherry_planks,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_fence_gate,state=facing:west/in_wall:true/open:true,patch0=0:cherry_planks,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_fence_gate,state=facing:west/in_wall:true/open:false,patch0=0:cherry_planks,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_fence_gate,state=facing:west/in_wall:false/open:true,patch0=0:cherry_planks,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_fence_gate,state=facing:west/in_wall:false/open:false,patch0=0:cherry_planks,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_fence_gate,state=facing:east/in_wall:true/open:true,patch0=0:cherry_planks,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_fence_gate,state=facing:east/in_wall:true/open:false,patch0=0:cherry_planks,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_fence_gate,state=facing:east/in_wall:false/open:true,patch0=0:cherry_planks,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_fence_gate,state=facing:east/in_wall:false/open:false,patch0=0:cherry_planks,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_fence,state=west:true/east:true/south:true/north:true,patch0=0:cherry_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_fence,state=west:false/east:true/south:true/north:true,patch0=0:cherry_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_fence,state=west:true/east:true/south:false/north:true,patch0=0:cherry_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_fence,state=west:false/east:true/south:false/north:true,patch0=0:cherry_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_fence,state=west:true/east:true/south:true/north:false,patch0=0:cherry_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_fence,state=west:false/east:true/south:true/north:false,patch0=0:cherry_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_fence,state=west:true/east:true/south:false/north:false,patch0=0:cherry_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_fence,state=west:false/east:true/south:false/north:false,patch0=0:cherry_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_fence,state=west:true/east:false/south:true/north:true,patch0=0:cherry_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_fence,state=west:false/east:false/south:true/north:true,patch0=0:cherry_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_fence,state=west:true/east:false/south:false/north:true,patch0=0:cherry_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_fence,state=west:false/east:false/south:false/north:true,patch0=0:cherry_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_fence,state=west:true/east:false/south:true/north:false,patch0=0:cherry_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_fence,state=west:false/east:false/south:true/north:false,patch0=0:cherry_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_fence,state=west:true/east:false/south:false/north:false,patch0=0:cherry_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_fence,state=west:false/east:false/south:false/north:false,patch0=0:cherry_planks,transparency=SEMITRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_door,state=facing:north/hinge:left/half:upper/open:true,patch0=0:cherry_door_top,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_door,state=facing:north/hinge:left/half:upper/open:false,patch0=0:cherry_door_top,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_door,state=facing:north/hinge:right/half:upper/open:true,patch0=0:cherry_door_top,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_door,state=facing:north/hinge:right/half:upper/open:false,patch0=0:cherry_door_top,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_door,state=facing:north/hinge:left/half:lower/open:true,patch0=0:cherry_door_bottom,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_door,state=facing:north/hinge:left/half:lower/open:false,patch0=0:cherry_door_bottom,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_door,state=facing:north/hinge:right/half:lower/open:true,patch0=0:cherry_door_bottom,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_door,state=facing:north/hinge:right/half:lower/open:false,patch0=0:cherry_door_bottom,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_door,state=facing:south/hinge:left/half:upper/open:true,patch0=0:cherry_door_top,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_door,state=facing:south/hinge:left/half:upper/open:false,patch0=0:cherry_door_top,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_door,state=facing:south/hinge:right/half:upper/open:true,patch0=0:cherry_door_top,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_door,state=facing:south/hinge:right/half:upper/open:false,patch0=0:cherry_door_top,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_door,state=facing:south/hinge:left/half:lower/open:true,patch0=0:cherry_door_bottom,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_door,state=facing:south/hinge:left/half:lower/open:false,patch0=0:cherry_door_bottom,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_door,state=facing:south/hinge:right/half:lower/open:true,patch0=0:cherry_door_bottom,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_door,state=facing:south/hinge:right/half:lower/open:false,patch0=0:cherry_door_bottom,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_door,state=facing:west/hinge:left/half:upper/open:true,patch0=0:cherry_door_top,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_door,state=facing:west/hinge:left/half:upper/open:false,patch0=0:cherry_door_top,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_door,state=facing:west/hinge:right/half:upper/open:true,patch0=0:cherry_door_top,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_door,state=facing:west/hinge:right/half:upper/open:false,patch0=0:cherry_door_top,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_door,state=facing:west/hinge:left/half:lower/open:true,patch0=0:cherry_door_bottom,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_door,state=facing:west/hinge:left/half:lower/open:false,patch0=0:cherry_door_bottom,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_door,state=facing:west/hinge:right/half:lower/open:true,patch0=0:cherry_door_bottom,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_door,state=facing:west/hinge:right/half:lower/open:false,patch0=0:cherry_door_bottom,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_door,state=facing:east/hinge:left/half:upper/open:true,patch0=0:cherry_door_top,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_door,state=facing:east/hinge:left/half:upper/open:false,patch0=0:cherry_door_top,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_door,state=facing:east/hinge:right/half:upper/open:true,patch0=0:cherry_door_top,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_door,state=facing:east/hinge:right/half:upper/open:false,patch0=0:cherry_door_top,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_door,state=facing:east/hinge:left/half:lower/open:true,patch0=0:cherry_door_bottom,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_door,state=facing:east/hinge:left/half:lower/open:false,patch0=0:cherry_door_bottom,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_door,state=facing:east/hinge:right/half:lower/open:true,patch0=0:cherry_door_bottom,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%cherry_door,state=facing:east/hinge:right/half:lower/open:false,patch0=0:cherry_door_bottom,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=cherry_sign,patch0=0,patch1=1,patch2=2,patch3=3,patch4=4,patch5=5,patch6=6,patch7=7,patch8=8,patch9=9,transparency=TRANSPARENT,txtid=cherry_sign
[1.19.4-]block:id=cherry_wall_sign,patch0=0,patch1=1,patch2=2,patch3=3,patch4=4,patch5=5,transparency=TRANSPARENT,txtid=cherry_sign
[1.19.4-]block:id=%suspicious_sand,state=dusted:0,patch0=0:suspicious_sand_0,patch1=0:suspicious_sand_0,patch2=0:suspicious_sand_0,patch3=0:suspicious_sand_0,patch4=0:suspicious_sand_0,patch5=0:suspicious_sand_0,stdrot=true
[1.19.4-]block:id=%suspicious_sand,state=dusted:1,patch0=0:suspicious_sand_1,patch1=0:suspicious_sand_1,patch2=0:suspicious_sand_1,patch3=0:suspicious_sand_1,patch4=0:suspicious_sand_1,patch5=0:suspicious_sand_1,stdrot=true
[1.19.4-]block:id=%suspicious_sand,state=dusted:2,patch0=0:suspicious_sand_2,patch1=0:suspicious_sand_2,patch2=0:suspicious_sand_2,patch3=0:suspicious_sand_2,patch4=0:suspicious_sand_2,patch5=0:suspicious_sand_2,stdrot=true
[1.19.4-]block:id=%suspicious_sand,state=dusted:3,patch0=0:suspicious_sand_3,patch1=0:suspicious_sand_3,patch2=0:suspicious_sand_3,patch3=0:suspicious_sand_3,patch4=0:suspicious_sand_3,patch5=0:suspicious_sand_3,stdrot=true
[1.19.4-]block:id=%torchflower,patch0=0:torchflower,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%potted_torchflower,patch0=0:flower_pot,patch1=0:dirt,patch2=0:torchflower,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%torchflower_crop,state=age:0,patch0=0:torchflower_crop_stage0,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%torchflower_crop,state=age:1,patch0=0:torchflower_crop_stage1,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%torchflower_crop,state=age:2,patch0=0:torchflower_crop_stage2,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%pink_petals,state=facing:north/flower_amount:1,patch0=0:pink_petals,patch1=2000:pink_petals_stem,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%pink_petals,state=facing:north/flower_amount:2,patch0=0:pink_petals,patch1=2000:pink_petals_stem,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%pink_petals,state=facing:north/flower_amount:3,patch0=0:pink_petals,patch1=2000:pink_petals_stem,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%pink_petals,state=facing:north/flower_amount:4,patch0=0:pink_petals,patch1=2000:pink_petals_stem,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%pink_petals,state=facing:south/flower_amount:1,patch0=0:pink_petals,patch1=2000:pink_petals_stem,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%pink_petals,state=facing:south/flower_amount:2,patch0=0:pink_petals,patch1=2000:pink_petals_stem,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%pink_petals,state=facing:south/flower_amount:3,patch0=0:pink_petals,patch1=2000:pink_petals_stem,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%pink_petals,state=facing:south/flower_amount:4,patch0=0:pink_petals,patch1=2000:pink_petals_stem,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%pink_petals,state=facing:west/flower_amount:1,patch0=0:pink_petals,patch1=2000:pink_petals_stem,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%pink_petals,state=facing:west/flower_amount:2,patch0=0:pink_petals,patch1=2000:pink_petals_stem,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%pink_petals,state=facing:west/flower_amount:3,patch0=0:pink_petals,patch1=2000:pink_petals_stem,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%pink_petals,state=facing:west/flower_amount:4,patch0=0:pink_petals,patch1=2000:pink_petals_stem,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%pink_petals,state=facing:east/flower_amount:1,patch0=0:pink_petals,patch1=2000:pink_petals_stem,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%pink_petals,state=facing:east/flower_amount:2,patch0=0:pink_petals,patch1=2000:pink_petals_stem,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%pink_petals,state=facing:east/flower_amount:3,patch0=0:pink_petals,patch1=2000:pink_petals_stem,transparency=TRANSPARENT,stdrot=true
[1.19.4-]block:id=%pink_petals,state=facing:east/flower_amount:4,patch0=0:pink_petals,patch1=2000:pink_petals_stem,transparency=TRANSPARENT,stdrot=true

Binary file not shown.

After

Width:  |  Height:  |  Size: 299 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 198 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 327 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 304 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 295 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 289 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 213 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 303 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 274 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 323 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 262 B

After

Width:  |  Height:  |  Size: 270 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 105 B

After

Width:  |  Height:  |  Size: 134 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 328 B

After

Width:  |  Height:  |  Size: 329 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 254 B

After

Width:  |  Height:  |  Size: 256 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 247 B

After

Width:  |  Height:  |  Size: 244 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 356 B

After

Width:  |  Height:  |  Size: 358 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 375 B

After

Width:  |  Height:  |  Size: 378 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 267 B

After

Width:  |  Height:  |  Size: 281 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 393 B

After

Width:  |  Height:  |  Size: 397 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 281 B

After

Width:  |  Height:  |  Size: 278 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 306 B

After

Width:  |  Height:  |  Size: 302 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 328 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 320 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 339 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 232 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 293 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 270 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 279 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 301 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 230 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 233 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 192 B

After

Width:  |  Height:  |  Size: 178 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 202 B

After

Width:  |  Height:  |  Size: 183 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 233 B

After

Width:  |  Height:  |  Size: 249 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 274 B

After

Width:  |  Height:  |  Size: 282 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 267 B

After

Width:  |  Height:  |  Size: 301 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 294 B

After

Width:  |  Height:  |  Size: 286 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 406 B

After

Width:  |  Height:  |  Size: 289 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 282 B

After

Width:  |  Height:  |  Size: 278 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 178 B

After

Width:  |  Height:  |  Size: 159 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 117 B

After

Width:  |  Height:  |  Size: 116 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 217 B

After

Width:  |  Height:  |  Size: 210 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 269 B

After

Width:  |  Height:  |  Size: 273 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 88 B

After

Width:  |  Height:  |  Size: 79 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 364 B

After

Width:  |  Height:  |  Size: 367 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 237 B

After

Width:  |  Height:  |  Size: 234 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 245 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 93 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 322 B

After

Width:  |  Height:  |  Size: 322 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 280 B

After

Width:  |  Height:  |  Size: 260 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 351 B

After

Width:  |  Height:  |  Size: 342 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 369 B

After

Width:  |  Height:  |  Size: 204 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 301 B

After

Width:  |  Height:  |  Size: 171 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 254 B

After

Width:  |  Height:  |  Size: 154 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 397 B

After

Width:  |  Height:  |  Size: 227 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 336 B

After

Width:  |  Height:  |  Size: 195 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 317 B

After

Width:  |  Height:  |  Size: 179 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 106 B

After

Width:  |  Height:  |  Size: 134 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 252 B

After

Width:  |  Height:  |  Size: 268 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 243 B

After

Width:  |  Height:  |  Size: 254 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 313 B

After

Width:  |  Height:  |  Size: 311 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 275 B

After

Width:  |  Height:  |  Size: 274 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 268 B

After

Width:  |  Height:  |  Size: 263 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 289 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 258 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 279 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 291 B

After

Width:  |  Height:  |  Size: 282 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 276 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 281 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 289 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 290 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 422 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 196 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 312 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 422 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 273 B

After

Width:  |  Height:  |  Size: 309 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 946 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 529 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 593 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 615 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 605 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 542 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 582 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 607 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 593 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 546 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 588 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 571 B

Some files were not shown because too many files have changed in this diff Show More